Bug 174230

Summary: Missing Dependency: libXXX.so.1 is needed by package seahorse
Product: [Fedora] Fedora Reporter: Marius Andreiana <marius.andreiana>
Component: seahorseAssignee: Seth Vidal <skvidal>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: extras-qa, fedora
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-02-23 19:19:03 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 162161    

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.