Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 93187 - net-misc/gwget-0.94 does not compile (libtool.m4 and ltmain.sh have a version mismatch)
Summary: net-misc/gwget-0.94 does not compile (libtool.m4 and ltmain.sh have a version...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-19 04:27 UTC by Lion Vollnhals
Modified: 2005-05-20 12:05 UTC (History)
0 users

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


Attachments
fixed ebuild (patch is in comment) (gwget-0.94-r1.ebuild,1.17 KB, text/plain)
2005-05-19 04:32 UTC, Lion Vollnhals
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Lion Vollnhals 2005-05-19 04:27:49 UTC
net-misc/gwget-0.94 does not compile because a Gentoo sanity check failed:

*** libtool.m4 and ltmain.sh have a version mismatch! ***
*** (libtool.m4 = 1.5.18, ltmain.sh = 1.5.6) ***

Reproducible: Always
Steps to Reproduce:
1. emerge "=net-misc/gwget-0.94"
Actual Results:  
[... configure ...]

*** Gentoo sanity check failed! ***
*** libtool.m4 and ltmain.sh have a version mismatch! ***
*** (libtool.m4 = 1.5.18, ltmain.sh = 1.5.6) ***

Please run:

  libtoolize --copy --force

Expected Results:  
net-misc/gwget-0.94 should have been correctly compiled and installed instead.

emerge info:

Portage 2.0.51.22-r1 (default-linux/x86/2005.0, gcc-3.4.3-20050110,
glibc-2.3.5-r0, 2.6.11-nitro2 i686)
=================================================================
System uname: 2.6.11-nitro2 i686 AMD Athlon(tm) XP 2700+
Gentoo Base System version 1.6.12
dev-lang/python:     2.3.5
sys-apps/sandbox:    1.2.8
sys-devel/autoconf:  2.13, 2.59-r6
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.5
sys-devel/binutils:  2.15.92.0.2-r9
sys-devel/libtool:   1.5.18
virtual/os-headers:  2.6.11
ACCEPT_KEYWORDS="x86 ~x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-march=athlon-xp -mtune=athlon-xp -O2 -pipe -fomit-frame-pointer -msse
-mmmx -m3dnow -momit-leaf-frame-pointer -funroll-loops -ftracer -ffast-math
-fprefetch-loop-arrays -mfpmath=387 -maccumulate-outgoing-args
-minline-all-stringops -fforce-addr"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3/share/config
/usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/env.d"
CXXFLAGS="-march=athlon-xp -mtune=athlon-xp -O2 -pipe -fomit-frame-pointer -msse
-mmmx -m3dnow -momit-leaf-frame-pointer -funroll-loops -ftracer -ffast-math
-fprefetch-loop-arrays -mfpmath=387 -maccumulate-outgoing-args
-minline-all-stringops -fforce-addr"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks sandbox sfperms strict"
GENTOO_MIRRORS="http://linux.rz.ruhr-uni-bochum.de/download/gentoo-mirror/
ftp://linux.rz.ruhr-uni-bochum.de/gentoo-mirror/"
LDFLAGS="-Wl,-O1 -Wl,--enable-new-dtags -Wl,--sort-common -Wl,--as-needed -s"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.europe.gentoo.org/gentoo-portage"
USE="x86 3dnow 3dnowex 3dnowext X aac alsa apm audiofile avi bash-completion
berkdb bmp cdr crypt cscope cups curl custom-cflags dbus divx4linux dvd dvdread
emacs emboss encode faad fam ffmpeg firebird flac foomaticdb fortran freetype
gcj gd gdbm gif glitz gnome gnutls gstreamer gtk gtk2 gtkhtml hal howl ieee1394
imagemagick imlib jack java jikes jpeg jpeg2k kdeenablefinal libg++ libwww
lm_sensors logitech-mouse mad matroska mikmod mmx mmxext mng mozilla moznomail
mozsvg mp3 mpeg ncurses nls no-old-linux no_wxgtk1 nomalloccheck nomotif
nothemes nptl nptlonly ogg oggvorbis opengl pam pdflib perl pic png postgres
python quicktime readline real rtc ruby samba sblive sdl slang speex spell sse
ssl subversion svg tcpd tetex tga theora tiff truetype truetype-fonts
type1-fonts unicode userlocales vcd vorbis win32codecs wx_nogtk1 xml xml2 xrandr
xv xvid zeroconf zlib userland_GNU kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, LANG, LC_ALL, LINGUAS
Comment 1 Lion Vollnhals 2005-05-19 04:32:50 UTC
Created attachment 59293 [details]
fixed ebuild (patch is in comment)

New ebuild just changes elibtoolize to libtoolize --copy --force as seen in
this diff:

--- gwget-0.94.ebuild	2005-04-23 13:49:11.000000000 +0200
+++ gwget-0.94-r1.ebuild	2005-05-19 16:10:23.000000000 +0200
@@ -36,7 +36,7 @@
 src_unpack() {
	unpack ${A}
	cd ${S}
-	elibtoolize
+	libtoolize --copy --force
	# Fix the Epiphany extension installation directory:
	epatch ${FILESDIR}/gwget-0.94-epiphany-path-fix.patch
 }
Comment 2 John N. Laliberte (RETIRED) gentoo-dev 2005-05-20 12:05:27 UTC
confirmed and fixed, thanks for the report!