Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 44409 - libgnomemm, libgnomecanvasmm, libgnomeuimm ebuilds fail
Summary: libgnomemm, libgnomecanvasmm, libgnomeuimm ebuilds fail
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: AMD64 Linux
: High normal (vote)
Assignee: AMD64 Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 42770
  Show dependency tree
 
Reported: 2004-03-11 19:16 UTC by Rick Vinyard
Modified: 2004-07-12 19:02 UTC (History)
4 users (show)

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


Attachments
gtkmm 2.2.9 ebuild for amd64 (gtkmm-2.2.9.ebuild,819 bytes, text/plain)
2004-03-15 10:03 UTC, Rick Vinyard
Details
libgnomemm for amd64 (libgnomemm-2.0.1-r1.ebuild,775 bytes, text/plain)
2004-03-15 10:04 UTC, Rick Vinyard
Details
gconfmm for amd64 (gconfmm-2.0.1-r1.ebuild,766 bytes, text/plain)
2004-03-15 10:05 UTC, Rick Vinyard
Details
libglademm for amd64 with derived widget support (libglademm-2.1.2.ebuild,840 bytes, text/plain)
2004-03-15 10:05 UTC, Rick Vinyard
Details
libgnomecanvasmm for amd64 (libgnomecanvasmm-2.0.1-r1.ebuild,806 bytes, text/plain)
2004-03-15 10:06 UTC, Rick Vinyard
Details
libgnomeuimm for amd64 (libgnomeuimm-2.0.0-r1.ebuild,980 bytes, text/plain)
2004-03-15 10:06 UTC, Rick Vinyard
Details
libsigc++ for amd64 (libsigc++-2.0.1.ebuild,1.10 KB, text/plain)
2004-05-17 01:45 UTC, Herbie Hopkins (RETIRED)
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Rick Vinyard 2004-03-11 19:16:18 UTC
I realize that all three libraries are masked for amd64, and ordinarily wouldn't file a bug report for failure to build. However, this bug report contains a solution to building, and I hope that by filing a bug report it will serve to document a method for installing the libraries until the ebuilds are fixed.

This is the error message for libgnomeuimm, but all three libraries have similar messages.



Reproducible: Always
Steps to Reproduce:
1. emerge libgnomemm, libgnomecanvasmm or libgnomeuimm
2.
3.

Actual Results:  
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/../../../../lib64/crti.o(.init+0x0): In function `_init': 
/var/tmp/portage/glibc-2.3.2-r9/work/glibc-2.3.2/buildhere/csu/crti.S:11: multiple definition of `_init' 
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/../../../../lib64/crti.o(.init+0x0):/var/tmp/portage/glibc-2.3.2-r9/work/glibc-2.3.2/buildhere/csu/crti.S:11: 
first defined here 
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/../../../../lib64/crti.o(.fini+0x0): In function `_fini': 
: multiple definition of `_fini' 
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/../../../../lib64/crti.o(.fini+0x0): first defined here 
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/crtbeginS.o(.data.rel+0x0): multiple definition of 
`__dso_handle' 
/usr/lib/gcc-lib/x86_64-pc-linux-gnu/3.3.3/crtbeginS.o(.data.rel+0x0): first defined here 
collect2: ld returned 1 exit status 
make[4]: *** [libgnomeuimm-2.0.la] Error 1 
make[4]: Leaving directory 
`/var/tmp/portage/libgnomeuimm-2.0.0/work/libgnomeuimm-2.0.0/libgnomeui/libgnomeuimm' 
make[3]: *** [all-recursive] Error 1 
make[3]: Leaving directory 
`/var/tmp/portage/libgnomeuimm-2.0.0/work/libgnomeuimm-2.0.0/libgnomeui/libgnomeuimm' 
make[2]: *** [all-recursive] Error 1 
make[2]: Leaving directory 
`/var/tmp/portage/libgnomeuimm-2.0.0/work/libgnomeuimm-2.0.0/libgnomeui' 
make[1]: *** [all] Error 2 
make[1]: Leaving directory 
`/var/tmp/portage/libgnomeuimm-2.0.0/work/libgnomeuimm-2.0.0/libgnomeui' 
make: *** [all-recursive] Error 1 
 
!!! ERROR: dev-cpp/libgnomeuimm-2.0.0 failed. 
!!! Function gnome2_src_compile, Line 39, Exitcode 2 
!!! compile failure 
 
 

Expected Results:  
ebuilds complete & libraries are installed 

Solution for installing the libraries. These instructions are generic for each of the three libraries: 
 
*** Manually building the libraries *** 
 
1. Try to ebuild the library. It will fail. 
2. Get the autogen.sh file from the respective library's gnomemm cvs repository. 
3. Change to the library's work directory /var/tmp/portage/{library package}/work/{lib package} 
4. Place the autogen.sh file in the aforementioned directory 
5. Run autogen.sh 
6. Execute 'libtoolize -c -f' 
7. make 
8. Execute 'ebuild library.ebuild preinst install postinst qmerge' 
 
*** Necessary ebuild modifications *** 
 
The necessary ebuild solution follows a similar approach to the gtkmm ebuild. The ebuilds of all three 
libraries need the following line added at the beginning of src_compile: 
 
        [ "${ARCH}" = "amd64" ] && libtoolize -c -f 
 
However, unline gtkmm this line alone isn't sufficient to properly build the library. It will also need the 
autogen.sh file placed in the directory and the following line: 
 
        [ "${ARCH}" = "amd64" ] && autogen.sh && libtoolize -c -f
Comment 1 Rick Vinyard 2004-03-15 10:03:50 UTC
Created attachment 27405 [details]
gtkmm 2.2.9 ebuild for amd64
Comment 2 Rick Vinyard 2004-03-15 10:04:21 UTC
Created attachment 27406 [details]
libgnomemm for amd64
Comment 3 Rick Vinyard 2004-03-15 10:05:01 UTC
Created attachment 27407 [details]
gconfmm for amd64
Comment 4 Rick Vinyard 2004-03-15 10:05:35 UTC
Created attachment 27408 [details]
libglademm for amd64 with derived widget support
Comment 5 Rick Vinyard 2004-03-15 10:06:03 UTC
Created attachment 27409 [details]
libgnomecanvasmm for amd64
Comment 6 Rick Vinyard 2004-03-15 10:06:30 UTC
Created attachment 27410 [details]
libgnomeuimm for amd64
Comment 7 Rick Vinyard 2004-03-15 10:07:42 UTC
My previous comments regarding installation of the *mm libraries resulted in libtool problems when the libs were used. However, I have since traced the problem back to the gtkmm ebuild and the libtoolization therein. I am attaching a series of ebuilds that have been tested to build the latest *mm stable libraries, and have also been tested and do not have any libtool issues when the shared libraries are compiled against.

To note are the following:
     libtoolization has been removed entirely, even from the gtkmm package (that was the root of the problem)
     The tests used the following versions of the autotools:
          automake 1.8.2
          autoconf 2.59-r3
          libtool 1.5.2-r5
Comment 8 Danny van Dyk (RETIRED) gentoo-dev 2004-03-30 17:27:44 UTC
All the above ebuild work just fine for me.

phi / # emerge -pv libsigc++ gtkmm libgnomemm gconfmm libglademm libgnomecanvasmm libgnomeuimm

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] dev-libs/libsigc++-1.2.5  -debug  0 kB
[ebuild   R   ] dev-cpp/gtkmm-2.2.10   0 kB
[ebuild   R   ] dev-cpp/libgnomemm-2.0.1   0 kB
[ebuild   R   ] dev-cpp/gconfmm-2.0.1   0 kB
[ebuild   R   ] dev-cpp/libglademm-2.0.1   0 kB
[ebuild   R   ] dev-cpp/libgnomecanvasmm-2.0.1   0 kB
[ebuild   R   ] dev-cpp/libgnomeuimm-2.0.0   0 kB

Total size of downloads: 0 kB
Comment 9 foser (RETIRED) gentoo-dev 2004-03-31 03:35:59 UTC
note that this is probably because augustus 'fixed' the ebuild for amd64, i already discussed with him what went wrong there.

This should not happen anymore with the current 2.2.10 release.
Comment 10 foser (RETIRED) gentoo-dev 2004-04-09 08:16:51 UTC
*** Bug 47170 has been marked as a duplicate of this bug. ***
Comment 11 Danny van Dyk (RETIRED) gentoo-dev 2004-04-16 07:40:57 UTC
Fixed!
Comment 12 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-13 17:17:26 UTC
I'm seeing this same error in the following packages:
libstdc++-2.0.1
glibmm-2.4.1
gtkmm-2.4.1
libglademm-2.4.0
gnome-vfsmm-2.6.1
gconfmm-2.6.1

luckily the same fix seems to work so can we please add that to these ebuilds too (and a ~amd64 keyword while your at it).
Comment 13 Yi Quang (RETIRED) gentoo-dev 2004-05-14 17:24:29 UTC
Can someone on the amd64 team please test.  I would be okay with amd64 adding the conditional fixes.  
Comment 14 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-16 07:59:25 UTC
the same goes for the newer versions of libgnomecanvasmm and libgnomeuimm, namely:
libgnomecanvasmm-2.6.0
libgnomeuimm-2.6.0
Comment 15 Travis Tilley (RETIRED) gentoo-dev 2004-05-16 21:44:46 UTC
i cant get libsigc++-2.0.1 to compile here with gcc 3.3.3, 3.4.0, or even 3.5.

care to attach your ebuild?
Comment 16 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-17 01:45:52 UTC
Created attachment 31567 [details]
libsigc++ for amd64
Comment 17 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-17 01:47:33 UTC
I'm using glibc-2.3.2-r9 and gcc-3.3.3 by the way.
Comment 18 Danny van Dyk (RETIRED) gentoo-dev 2004-05-21 11:10:39 UTC
Ok, here we go:

dev-libs/libsigc++-2.0.1: needed libtoolize/autoconf; marked ~amd64.
dev-cpp/glibmm-2.4.1: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/gtkmm-2.4.1: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/libgnomemm-2.6.0: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/libglademm-2.4.0: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/gconfmm-2.6.1: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/libgnomeuimm-2.6.0: needed aclocal/automake/autoconf; marked ~amd64.
dev-cpp/libgnomecanvasmm-2.6.0: needed aclocal/automake/autoconf; marked ~amd64.

I hope noone deletes the needed lines again...
Comment 19 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-25 03:22:35 UTC
Danny van Dyk:  you missed gnome-vfsmm-2.6.1 ...
Comment 20 Herbie Hopkins (RETIRED) gentoo-dev 2004-05-25 07:33:48 UTC
and also dispite your comment, dev-cpp/libgnomeuimm-2.6.0 still has no amd64 keyword.
Comment 21 Danny van Dyk (RETIRED) gentoo-dev 2004-05-25 10:57:12 UTC
done... thx Herbie...
Comment 22 merwan kashouty 2004-07-12 19:02:34 UTC
i am unable to get libgnomeuimm-2.0.0-r1 to compile. its being called now as a dep of cdrdao-1.1.8-r1 as were libgnomecanvasmm and libgnomemm , those i was able to get emerged.


JaiBaba files # emerge ../libgnomeuimm-2.0.0-r1.ebuild
Calculating dependencies ...done!
>>> emerge (1 of 1) dev-cpp/libgnomeuimm-2.0.0-r1 to /
>>> md5 src_uri ;-) libgnomeuimm-2.0.0.tar.gz
>>> Unpacking source...
>>> Unpacking libgnomeuimm-2.0.0.tar.gz to /var/tmp/portage/libgnomeuimm-2.0.0-r1/work
>>> Source unpacked.
configure: WARNING: If you wanted to set the --build type, don't use --host.
    If a cross compiler is detected then cross compile mode will be used.
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for x86_64-pc-linux-gnu-strip... no
checking for strip... strip
checking whether to enable maintainer-specific portions of Makefiles... no
checking for x86_64-pc-linux-gnu-gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking whether make sets $(MAKE)... (cached) yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for BSD-compatible nm... nm
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for x86_64-pc-linux-gnu-g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for x86_64-pc-linux-gnu-g77... no
checking for x86_64-pc-linux-gnu-f77... no
checking for x86_64-pc-linux-gnu-xlf... no
checking for x86_64-pc-linux-gnu-frt... no
checking for x86_64-pc-linux-gnu-pgf77... no
checking for x86_64-pc-linux-gnu-fort77... no
checking for x86_64-pc-linux-gnu-fl32... no
checking for x86_64-pc-linux-gnu-af77... no
checking for x86_64-pc-linux-gnu-f90... no
checking for x86_64-pc-linux-gnu-xlf90... no
checking for x86_64-pc-linux-gnu-pgf90... no
checking for x86_64-pc-linux-gnu-epcf90... no
checking for x86_64-pc-linux-gnu-f95... no
checking for x86_64-pc-linux-gnu-fort... no
checking for x86_64-pc-linux-gnu-xlf95... no
checking for x86_64-pc-linux-gnu-ifc... no
checking for x86_64-pc-linux-gnu-efc... no
checking for x86_64-pc-linux-gnu-pgf95... no
checking for x86_64-pc-linux-gnu-lf95... no
checking for x86_64-pc-linux-gnu-gfortran... no
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse nm output from gcc object... ok
checking for objdir... .libs
checking for x86_64-pc-linux-gnu-ar... no
checking for ar... ar
checking for x86_64-pc-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for x86_64-pc-linux-gnu-strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
appending configuration tag "F77" to libtool
./configure: line 19311: test: too many arguments
checking for gm4... no
checking for m4... m4
checking whether m4 is GNU m4... yes
checking whether make is GNU Make... yes
checking for pkg-config... /usr/bin/pkg-config
checking for libgnomeui-2.0 >= 1.111.1 libgnomemm-2.0 >= 1.3.10 libgnomecanvasmm-2.0 >= 2.0.0 gconfmm-2.0 >= 2.0.1 libglademm-2.0 >= 2.0.0... yes
checking LIBGNOMEUIMM_CFLAGS... -DORBIT2=1 -pthread -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/freetype2/config -I/usr/include/libxml2 -I/usr/include/libgnomemm-2.0 -I/usr/lib/libgnomemm-2.0/include -I/usr/include/gtkmm-2.0 -I/usr/lib/gtkmm-2.0/include -I/usr/lib/sigc++-1.2/include -I/usr/include/sigc++-1.2 -I/usr/include/libgnomecanvasmm-2.0 -I/usr/lib/libgnomecanvasmm-2.0/include -I/usr/include/gconfmm-2.0 -I/usr/lib/gconfmm-2.0/include -I/usr/include/libglademm-2.0 -I/usr/lib/libglademm-2.0/include -I/usr/include/libglade-2.0
checking LIBGNOMEUIMM_LIBS... -Wl,--export-dynamic -pthread -L/usr/X11R6/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnomemm-2.0 -lgnome-2 -lpopt -lbonobo-2 -lgnomevfs-2 -lbonobo-activation -lgnomecanvasmm-2.0 -lgnomecanvas-2 -lart_lgpl_2 -lpangoft2-1.0 -lgconfmm-2.0 -lgconf-2 -lORBit-2 -lgthread-2.0 -lglademm-2.0 -lgtkmm-2.0 -lglade-2.0 -lgdkmm-2.0 -latkmm-1.0 -lpangomm-1.0 -lglibmm-2.0 -lsigc-1.2 -lgtk-x11-2.0 -lxml2 -lpthread -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0
checking for x86_64-pc-linux-gnu-g++... (cached) g++
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking dependency style of g++... (cached) gcc3
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libgnomeuimm.spec
config.status: creating libgnomeui/Makefile
config.status: creating libgnomeui/libgnomeuimm-2.0.pc
config.status: creating libgnomeui/libgnomeuimm-2.0-uninstalled.pc
config.status: creating libgnomeui/src/Makefile
config.status: creating libgnomeui/libgnomeuimm/Makefile
config.status: creating libgnomeui/libgnomeuimm/private/Makefile
config.status: creating tools/Makefile
config.status: creating tools/extra_defs_gen/Makefile
config.status: creating tools/m4/Makefile
config.status: creating examples/Makefile
config.status: creating examples/druid/Makefile
config.status: creating examples/gnome-hello/Makefile
config.status: creating examples/iconlist/Makefile
config.status: creating examples/menu/Makefile
config.status: creating examples/uiinfo/Makefile
config.status: creating demos/Makefile
config.status: creating scripts/Makefile
config.status: creating docs/Makefile
config.status: creating docs/reference/Makefile
config.status: creating docs/reference/Doxyfile
config.status: creating libgnomeui/libgnomeuimmconfig.h
config.status: executing depfiles commands
Making all in tools
make[1]: Entering directory `/var/tmp/portage/libgnomeuimm-2.0.0-r1/work/libgnomeuimm-2.0.0/tools'
Making all in extra_defs_gen
make[2]: Entering directory `/var/tmp/portage/libgnomeuimm-2.0.0-r1/work/libgnomeuimm-2.0.0/tools/extra_defs_gen'
if g++ -DHAVE_CONFIG_H -I. -I. -I../../libgnomeui -DORBIT2=1 -pthread -DXTHREADS -D_REENTRANT -DXUSE_MTSAFE_API -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/orbit-2.0 -I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/freetype2/config -I/usr/include/libxml2 -I/usr/include/libgnomemm-2.0 -I/usr/lib/libgnomemm-2.0/include -I/usr/include/gtkmm-2.0 -I/usr/lib/gtkmm-2.0/include -I/usr/lib/sigc++-1.2/include -I/usr/include/sigc++-1.2 -I/usr/include/libgnomecanvasmm-2.0 -I/usr/lib/libgnomecanvasmm-2.0/include -I/usr/include/gconfmm-2.0 -I/usr/lib/gconfmm-2.0/include -I/usr/include/libglademm-2.0 -I/usr/lib/libglademm-2.0/include -I/usr/include/libglade-2.0      -O2 -march=k8 -pipe -ftracers -fweb -MT generate_defs_libgnomeui.o -MD -MP -MF ".deps/generate_defs_libgnomeui.Tpo" \
  -c -o generate_defs_libgnomeui.o `test -f 'generate_defs_libgnomeui.cc' || echo './'`generate_defs_libgnomeui.cc; \
then mv -f ".deps/generate_defs_libgnomeui.Tpo" ".deps/generate_defs_libgnomeui.Po"; \
else rm -f ".deps/generate_defs_libgnomeui.Tpo"; exit 1; \
fi
/bin/sh ../../libtool --mode=link g++  -O2 -march=k8 -pipe -ftracers -fweb   -o generate_extra_defs  generate_defs_libgnomeui.o  -Wl,--export-dynamic -pthread -L/usr/X11R6/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnomemm-2.0 -lgnome-2 -lpopt -lbonobo-2 -lgnomevfs-2 -lbonobo-activation -lgnomecanvasmm-2.0 -lgnomecanvas-2 -lart_lgpl_2 -lpangoft2-1.0 -lgconfmm-2.0 -lgconf-2 -lORBit-2 -lgthread-2.0 -lglademm-2.0 -lgtkmm-2.0 -lglade-2.0 -lgdkmm-2.0 -latkmm-1.0 -lpangomm-1.0 -lglibmm-2.0 -lsigc-1.2 -lgtk-x11-2.0 -lxml2 -lpthread -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   -lgtkmm_generate_extra_defs-2.0
mkdir .libs
g++ -O2 -march=k8 -pipe -ftracers -fweb -o generate_extra_defs generate_defs_libgnomeui.o -Wl,--export-dynamic -pthread  -L/usr/X11R6/lib /usr/lib/libgnomeui-2.so -L/usr/lib /usr/lib/libgnome-keyring.so /usr/lib/libjpeg.so /usr/lib/libbonoboui-2.so -lSM -lICE -lX11 /usr/lib/libgnomemm-2.0 -L/usr/x86_64-pc-linux-gnu/bin -L/usr/x86_64-pc-linux-gnu/lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.1/../../../../x86_64-pc-linux-gnu/lib /usr/lib/libgnome-2.so /usr/lib/libesd.so /usr/lib/libasound.so /usr/lib/libaudiofile.so /usr/lib/libgnomevfs-2.so /usr/lib/libbonobo-2.so -lssl -lcrypto -lrt /usr/lib/libbonobo-activation.so /usr/lib/libORBitCosNaming-2.so /usr/lib/libgnomecanvasmm-2.0 /usr/lib/libgnomecanvas-2.so /usr/lib/libart_lgpl_2.so /usr/lib/libpangoft2-1.0.so /usr/lib/libgconfmm-2.0.so /usr/lib/libgconf-2.so /usr/lib/libORBit-2.so /usr/lib/libpopt.so /usr/lib/libgthread-2.0.so /usr/lib/libglademm-2.0.so /usr/lib/libgtkmm-2.0.so /usr/lib/libglade-2.0.so /usr/lib/libgdkmm-2.0.so /usr/lib/libatkmm-1.0.so /usr/lib/libpangomm-1.0.so /usr/lib/libglibmm-2.0.so /usr/lib/libxml2.so -lpthread -lz -lm /usr/lib/libgtkmm_generate_extra_defs-2.0.so /usr/lib/libsigc-1.2.so /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so /usr/lib/libgdk_pixbuf-2.0.so /usr/lib/libpangoxft-1.0.so /usr/lib/libpangox-1.0.so /usr/lib/libpango-1.0.so /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so /usr/lib/gcc/x86_64-pc-linux-gnu/3.4.1/libstdc++.so -Wl,--rpath -Wl,/usr/lib -Wl,--rpath -Wl,/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.1 -Wl,--rpath -Wl,/usr/lib -Wl,--rpath -Wl,/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.1
/usr/lib/gcc/x86_64-pc-linux-gnu/3.4.1/../../../../x86_64-pc-linux-gnu/bin/ld: /usr/lib/libgnomemm-2.0: No such file: File format not recognized
collect2: ld returned 1 exit status
make[2]: *** [generate_extra_defs] Error 1
make[2]: Leaving directory `/var/tmp/portage/libgnomeuimm-2.0.0-r1/work/libgnomeuimm-2.0.0/tools/extra_defs_gen'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/libgnomeuimm-2.0.0-r1/work/libgnomeuimm-2.0.0/tools'
make: *** [all-recursive] Error 1

!!! ERROR: dev-cpp/libgnomeuimm-2.0.0-r1 failed.
!!! Function src_compile, Line 39, Exitcode 2
!!! (no error message)


Portage 2.0.50-r9 (gcc34-amd64-2004.1, gcc-3.4.1, glibc-2.3.4.20040619-r0, 2.6.7-mm7)
=================================================================
System uname: 2.6.7-mm7 x86_64 5
Gentoo Base System version 1.5.1
Autoconf: sys-devel/autoconf-2.59-r4
Automake: sys-devel/automake-1.8.5-r1
ACCEPT_KEYWORDS="amd64 ~amd64"
AUTOCLEAN="yes"
CFLAGS="-O2 -march=k8 -pipe -ftracers -fweb"
CHOST="x86_64-pc-linux-gnu"
COMPILER="gcc3"
CONFIG_PROTECT="/etc /usr/X11R6/lib/X11/xkb /usr/kde/2/share/config /usr/kde/3.2/share/config /usr/kde/3/share/config /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=k8 -pipe -ftracers -fweb"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoaddcvs ccache"
GENTOO_MIRRORS="http://gentoo.chem.wisc.edu/gentoo/"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="X alsa amd64 apm arts avi berkdb cdr crypt dvd dvdr encode esd foomaticdb gdbm gif gnome gpm gtk gtk2 imlib jpeg kde libg++ libwww mikmod motif mpeg multilib mysql ncurses nls ntpl oggvorbis opengl oss pam pdflib perl png python qt quicktime readline sdl slang spell ssl tcpd truetype xml2 xmms xv zlib"