Bug 174230 - Missing Dependency: libXXX.so.1 is needed by package seahorse
Summary: Missing Dependency: libXXX.so.1 is needed by package seahorse
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: seahorse
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Seth Vidal
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks: FE5Target
TreeView+ depends on / blocked
 
Reported: 2005-11-26 09:37 UTC by Marius Andreiana
Modified: 2007-11-30 22:11 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2006-02-23 19:19:03 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Marius Andreiana 2005-11-26 09:37:30 UTC
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

Comment 1 Andy Burns 2006-01-30 21:12:08 UTC
Apparently still needs one post FC5T2 :-(


Comment 2 Andy Burns 2006-01-31 19:56:58 UTC
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



Comment 3 John Thacker 2006-02-22 21:40:02 UTC
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.

Comment 4 John Thacker 2006-02-22 21:52:34 UTC
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.

Comment 5 Seth Vidal 2006-02-23 01:43:08 UTC
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.

Comment 6 Seth Vidal 2006-02-23 19:19:03 UTC
It should be built today and in fedora extras development repo at the next push.




Note You need to log in before you can comment on or make changes to this bug.