Bug 74980 - media-libs/bio2jack-0.4 libtool sanity check failed
Bug#: 74980 Product:  Gentoo Linux Version: 2004.3 Platform: All
OS/Version: All Status: RESOLVED Severity: normal Priority: P1
Resolution: FIXED Assigned To: sound@gentoo.org Reported By: astralstorm@gen2.org
Component: Applications
URL: 
Summary: media-libs/bio2jack-0.4 libtool sanity check failed
Keywords:  
Status Whiteboard: 
Opened: 2004-12-19 15:33 0000
Description:   Opened: 2004-12-19 15:33 0000
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 From Thomas 2005-01-28 10:49:36 0000 -------
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 From Eric Shattow 2005-01-29 17:35:41 0000 -------
now in cvs. thanks for reporting.