yum -y install seahorse on FC5t1 gives Error: Missing Dependency: libpixman.so.1 is needed by package seahorse Error: Missing Dependency: libcairo.so.1 is needed by package seahorse It needs a rebuild? Thanks
Apparently still needs one post FC5T2 :-(
just tried an rpmbuild --recompile seahorse-0.7.9-1.fc5.src.rpm to see if a simple rebuild is all that this requires I believe I have all deps installed, but it fails with checking for gpgme-config... /usr/bin/gpgme-config checking for GPGME - version >= 1.0.0... configure: error: GPGME 1.0.0 or later needed error: Bad exit status from /var/tmp/rpm-tmp.77787 (%build) however /usr/bin/gpgme-config --version does report 1.1.0 is installed
It's a bug in the configure script. The configure script incorrectly tests to see if the minor version of gpgme is equal to that of 1.0.0, the minimum required version, rather than just greater than or equal to: on line 97: if test "$minor" -eq "$req_minor"; then should be: if test "$minor" -ge "$req_minor"; then No other changes are necessary-- if you look at the CVS sources for seahorse, the bug was fixed immediately after the 0.8 release, even on the same day. (Presumably after people downloaded it and found that it wouldn't work with gpgme 1.1.0) It's pretty trivial to whip up a patch.
Oh, also note that the GEdit plugin for seahorse-0.8 won't work with gedit-2.14. It's fixed in CVS, in the hopefully-soon 0.8.1. So we can either compile for now with --disable-gedit or wait and hope that 0.8.1 will be released.
Thanks - I already have a package with the patch from seahorse cvs for the configure problem and gedit disabled. I was waiting for as long as I could in hope that 0.8.1 would be available.
It should be built today and in fedora extras development repo at the next push.