| Summary: | net-im/gaim-2.0.0_beta4 fails to configure | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Ronny Coolen <ronny> |
| Component: | Current packages | Assignee: | 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
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). This bug is a duplicate of bug 152018. 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. Same problem here, manually editing ebuild works fine. Should probably get an -r1 out there to fix this. Sorry for the problem, I've fixed this line in -r1. |