Here's a one-liner that will save some time. Uses sed, uniq, sort and of course regular expressions.
yum remove `yum search enlightenment | awk '{print $1}' | sed -e 's/.\(x86_64\|i686\|noarch\)//' -e '/^[:=]/d' -e 's/\(Loaded\|font-manager\)//' | uniq | sort`
What does it do?
It uses yum to remove all packages that are related to the Enlightenment Window Manager.