Hey,
I'm trying to get apache2 running on one of the Chrome Boxes. I figured that the old "gentoo" portage is not supported by default, so I had to add it to the PORTDIR_OVERLAY and update the ebuilds for www-servers/apache, dev-libs/apr, dev-libs/apr-util and a few other files.
In chroot, once `emerge-x86-generic www-servers/apache` is called, it tries to install dev-libs/apr first. I had some troubles fetching the tarball and configuring it, but I think I fixed that by updating the manifest and ebuild. So all these stages run smoothly: src_prepare(), src_configure(), but `emake` in src_compile() produces some errors:
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make[1]: *** [strings/apr_cpystrn.lo] Error 1
make[1]: *** Waiting for unfinished jobs....
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make[1]: *** [passwd/apr_getpass.lo] Error 1
make[1]: *** [strings/apr_snprintf.lo] Error 1
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make[1]: *** [strings/apr_fnmatch.lo] Error 1
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make[1]: *** [strings/apr_strings.lo] Error 1
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
make[1]: *** [strings/apr_strnatcmp.lo] Error 1
make[1]: Leaving directory `/build/x86-generic/tmp/portage/dev-libs/apr-1.4.6/work/apr-1.4.6'
make: *** [all-recursive] Error 1
I tried to update several packages in sys-devel: libtool, m4, make, autoconf, automake and wrappers. However that doesn't fix the problem as suggested on internet.
econf runs `./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=i686-pc-linux-gnu` with few more options, and I believe it does configure right.
What am I doing wrong? does emerge-x86-generic do things differently than just regular emerge?
Thank you,
-Artur