The error message you are getting is rpm saying it can't validate the RPM package against any known (to your machine) public keys for that package. If you tell us where you found that RPM package we might be able to figure out how to
import the proper public key for whatever repository that RPM came from.
Once that is solved, another question beckons... did you mean to install the
source RPM, perhaps in order to recompile it or do you just want to find a normal, binary package and just have it installed? If you meant to do the latter, you might want to set up Yum to access the Fedora Extras repository and let it install it for you:
1 - create a file in /etc/yum.repos.d/ called "fedora-extras.repo":
Code:
# gedit /etc/yum.repos.d/fedora-extras.repo
2 - cut & paste this text into it:
Code:
[extras]
name=Fedora Extras $releasever - $basearch
baseurl=http://fr2.rpmfind.net/linux/fedora/extras/$releasever/$basearch/
http://mirrors.kernel.org/fedora/extras/$releasever/$basearch/
http://mirror.hiwaay.net/redhat/fedora/linux/extras/$releasever/$basearch/
http://www.mirrorservice.org/sites/download.fedora.redhat.com/pub/fedora/linux/extras/$releasever/$basearch/
enabled=1
gpgcheck=1
3 - save it and exit gedit
4 - import the Fedora Extras key into rpm:
Code:
rpm --import http://download.fedora.redhat.com/pub/fedora/linux/extras/RPM-GPG-KEY-Fedora-Extras
5 - now, let yum install the id3lib package for you:
Code:
yum -y install id3lib
At the time of my writing this, Fedora Extras has id3lib version 3.8.3-9 which might work out just fine for you. (I found that using "yum search i3dlib")
Now, if all you really wanted from the beginning was to recompile the 3.8.3-alt2 source RPM, please forgive my babbling :-)