Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 74980 - media-libs/bio2jack-0.4 libtool sanity check failed
Summary: media-libs/bio2jack-0.4 libtool sanity check failed
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Highest normal (vote)
Assignee: Gentoo Sound Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-19 15:33 UTC by Radoslaw Szkodzinski
Modified: 2005-01-29 17:35 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Radoslaw Szkodzinski 2004-12-19 15:33:20 UTC
The abovementioned package fails the recently added sanity check:

checking for correct ltmain.sh version... no

*** Gentoo sanity check failed! ***
*** libtool.m4 and ltmain.sh have a version mismatch! ***
*** (libtool.m4 = 1.5.10, ltmain.sh = 1.4.3) ***
Comment 1 Thomas 2005-01-28 10:49:36 UTC
I can confirm this problem, the solution for me was to add a line with "libtoolize --copy --force" to the 0.3-r1 ebuild, the same way as it is already done in the 0.4 ebuild. With this the build process complains about a patch to ltmain.sh which fails, but continues nevertheless and builds/installs successfully up to the end :)

The patch is really simple:
------------------------
--- bio2jack-0.3-r1.ebuild.orig 2004-12-18 21:16:38.000000000 -0300
+++ bio2jack-0.3-r1.ebuild      2005-01-28 15:26:01.706526792 -0300
@@ -28,6 +28,7 @@
        aclocal || die
        automake || die
        autoconf || die
+       libtoolize --copy --force || die
        elibtoolize || die
 }


------------------------
Comment 2 Eric Shattow 2005-01-29 17:35:41 UTC
now in cvs. thanks for reporting.