Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 152244

Summary: net-im/gaim-2.0.0_beta4 fails to configure
Product: Gentoo Linux Reporter: Ronny Coolen <ronny>
Component: Current packagesAssignee: Gentoo Net-im project <net-im>
Status: RESOLVED FIXED    
Severity: normal CC: caneko
Priority: High    
Version: 2006.1   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Ronny Coolen 2006-10-21 07:54:25 UTC
steps to reproduce:
* emerge gaim

./configure --prefix=/usr --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib -j1 --enable-nls --enable-perl --disable-gtkspell --disable-startup-notification --disable-tcl --disable-tk --enable-mono --disable-debug --disable-dbus --disable-meanwhile --disable-nas --disable-gevolution --disable-audio --disable-doxygen --with-dynamic-prpls=irc,jabber,msn,oscar,yahoo,zephyr,simple --enable-gnutls=no --enable-nss=yes --disable-gtk-doc --build=i686-pc-linux-gnu
configure: error: unrecognized option: -j1
Try `./configure --help' for more information.

!!! ERROR: net-im/gaim-2.0.0_beta4 failed.
Call stack:
  ebuild.sh, line 1546:   Called dyn_compile
  ebuild.sh, line 937:   Called src_compile
  gaim-2.0.0_beta4.ebuild, line 219:   Called gnome2_src_compile '-j1'
  gnome2.eclass, line 63:   Called gnome2_src_configure '-j1'
  gnome2.eclass, line 59:   Called econf '-j1' '--enable-nls' '--enable-perl' '--disable-gtkspell' '--disable-startup-notification' '--disable-tcl' '--disable-tk' '--enable-mono' '--disable-debug' '--disable-dbus' '--disable-meanwhile' '--disable-nas' '--disable-gevolution' '--disable-audio' '--disable-doxygen' '--with-dynamic-prpls=irc,jabber,msn,oscar,yahoo,zephyr,simple' '--enable-gnutls=no' '--enable-nss=yes' '--disable-gtk-doc'
  ebuild.sh, line 540:   Called die

!!! econf failed
!!! If you need support, post the topmost build error, and the call stack if relevant.


emerge --info:

Portage 2.1.1 (default-linux/x86/2006.1, gcc-4.1.1, glibc-2.4-r3, 2.6.17-gentoo-r8 i686)
=================================================================
System uname: 2.6.17-gentoo-r8 i686 Genuine Intel(R) CPU           T2300  @ 1.66GHz
Gentoo Base System version 1.12.5
Last Sync: Sat, 21 Oct 2006 10:50:01 +0000
app-admin/eselect-compiler: [Not Present]
dev-java/java-config: 1.3.7, 2.0.30
dev-lang/python:     2.4.3-r4
dev-python/pycrypto: 2.0.1-r5
dev-util/ccache:     [Not Present]
dev-util/confcache:  [Not Present]
sys-apps/sandbox:    1.2.17
sys-devel/autoconf:  2.13, 2.60
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2
sys-devel/binutils:  2.16.1-r3
sys-devel/gcc-config: 1.3.13-r4
sys-devel/libtool:   1.5.22
virtual/os-headers:  2.6.17-r1
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=i686 -pipe -mno-tls-direct-seg-refs"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/X11/xkb /usr/share/texmf/dvipdfm/config/ /usr/share/texmf/dvips/config/ /usr/share/texmf/tex/generic/config/ /usr/share/texmf/tex/platex/config/ /usr/share/texmf/xdvi/"
CONFIG_PROTECT_MASK="/etc/env.d /etc/env.d/java/ /etc/gconf /etc/java-config/vms/ /etc/terminfo"
CXXFLAGS="-O2 -march=i686 -pipe -mno-tls-direct-seg-refs"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks metadata-transfer parallel-fetch sandbox sfperms strict"
GENTOO_MIRRORS="ftp://ftp.belnet.be/linux/gentoo ftp://ftp.belnet.be/linux/gentoo"
LINGUAS="en nl"
MAKEOPTS="-j3"
PKGDIR="/usr/portage/packages"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress --force --whole-file --delete --delete-after --stats --timeout=180 --exclude='/distfiles' --exclude='/local' --exclude='/packages'"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/xgl-overlay"
SYNC="rsync://rsync.belnet.be/gentoo-portage"
USE="x86 X aac alsa berkdb bitmap-fonts cdr cli compiz cracklib crypt cups dlloader dri dvd elibc_glibc encode firefox fortran gdbm gif gnome gpm gtk i8x0 input_devices_evdev input_devices_keyboard input_devices_mouse input_devices_synaptics ipv6 isdnlog jpeg kernel_linux libg++ linguas_en linguas_nl mmx mmxext mono ncurses nls nptl nptlonly nsplugin opengl pam pcre perl png ppds pppd python readline real reflection session spl sse sse2 ssl svga tcpd truetype-fonts type1-fonts udev unicode userland_GNU video_cards_i810 vorbis widescreen win32codecs xorg xv xvid zlib"
Unset:  CTARGET, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LANG, LC_ALL, LDFLAGS, PORTAGE_RSYNC_EXTRA_OPTS
Comment 1 Canek Peláez Valdés 2006-10-21 11:43:58 UTC
I can confirm this. The problem is in line 219 of the ebuild:

   gnome2_src_compile -j1 || die "Make failed"

gnome2_src_compile it's not only the call to make; it's also the call to the configure script, which tries to use the "-j1" option. I fixed it with:

   MAKEOPTS="-j1" gnome2_src_compile || die "Make failed"

With this, the ebuild compiles and install without problems, using "make -j1" (it just compiled, so I cannot tell anything about stability yet).
Comment 2 Canek Peláez Valdés 2006-10-21 11:45:49 UTC
This bug is a duplicate of bug 152018.
Comment 3 Waldo 2006-10-21 20:25:25 UTC
This bug isnt' fixed for me:

./configure --prefix=/usr --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib -j1 --enable-nls --enable-perl --enable-gtkspell --disable-startup-notification --disable-tcl --disable-tk --enable-mono --disable-debug --enable-dbus --disable-meanwhile --disable-nas --enable-gevolution --disable-audio --disable-doxygen --with-dynamic-prpls=irc,jabber,msn,oscar,yahoo,zephyr,simple --enable-nss=no --enable-gnutls=yes --with-gnutls-includes=/usr/include/gnutls --with-gnutls-libs=/usr/lib64 --disable-gtk-doc --libdir=/usr/lib64 --build=x86_64-pc-linux-gnu
configure: error: unrecognized option: -j1
Try `./configure --help' for more information.

!!! ERROR: net-im/gaim-2.0.0_beta4 failed.
Call stack:
  ebuild.sh, line 1568:   Called dyn_compile
  ebuild.sh, line 937:   Called src_compile
  gaim-2.0.0_beta4.ebuild, line 219:   Called gnome2_src_compile '-j1'
  gnome2.eclass, line 63:   Called gnome2_src_configure '-j1'
  gnome2.eclass, line 59:   Called econf '-j1' '--enable-nls' '--enable-perl' '--enable-gtkspell' '--disable-startup-notification' '--disable-tcl' '--disable-tk' '--enable-mono' '--disable-debug' '--enable-dbus' '--disable-meanwhile' '--disable-nas' '--enable-gevolution' '--disable-audio' '--disable-doxygen' '--with-dynamic-prpls=irc,jabber,msn,oscar,yahoo,zephyr,simple' '--enable-nss=no' '--enable-gnutls=yes' '--with-gnutls-includes=/usr/include/gnutls' '--with-gnutls-libs=/usr/lib64' '--disable-gtk-doc'
  ebuild.sh, line 540:   Called die

!!! econf failed
!!! If you need support, post the topmost build error, and the call stack if relevant.

Comment 4 Jason Weisberger 2006-10-21 21:39:40 UTC
Same problem here, manually editing ebuild works fine.  Should probably get an -r1 out there to fix this.
Comment 5 Kathryn Kulick (RETIRED) gentoo-dev 2006-10-22 21:26:04 UTC
Sorry for the problem, I've fixed this line in -r1.