Switched to freshrpms as livna didn't have a package I wanted. The link on freshrpms page is for Fedora 7 for installing the package, but you can get it for version 8 by modifying the url. I did it like this:
CODE
rpm -Uvh http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/8/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
The original url I copied from the webpage was:
CODE
http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/7/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
However, I had to remove the livna packages I had installed first to stop dependency problems when I removed the livna repo before adding freshrpms:
CODE
rpm -e `rpm -qa | grep lvn`
parses the results from the rpm -qa with all lvn rpms which belong to livna and then removes them.