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) ***
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
}
------------------------