Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] Error during emerge system
View unanswered posts
View posts from last 24 hours

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Tue May 09, 2006 10:10 pm    Post subject: [SOLVED] Error during emerge system Reply with quote

Hi everybody.
I was compiling Gentoo. the bootstrap.sh went well, but when I was merging the system I get this message, after compiling about 11 packages:
Code:
checking for module Locale:: gettext... no
configure: error: perl module Locale:: gettext required

!!! ERROR: sys-apps/help2man-1.33.1 failde.
!!! Function econf, Line 495, Exitcode 0


May someone know why I get this message? I first used #emerge -fe system, to merge all the source and then #emerge system. So this isn't a download problem. Maybe there is something wrong in my make.conf:
Code:
CFLAGS=" -march=athlon-xp -O2 -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
MAKEOPTS="-j3"
USE="gcc 3dnow dvd dvdr cdr alsa jpeg avi opengl openal -ibm -mcve -multilib -mule mp3 libg++ gtk gtk2 gtkhtml divx4linux xine oggvorbis asf"
CONFIG_PROTECT="-*"

Please help me!

P.S.
I also have the config.log of this error, but it's about 3 pages! but these should be the most significant lines:
Code:
configure:2211: i686-pc-linux-gnu-gcc -o conftest  -march=athlon-xp -O2 -pipe -fomit-frame-pointer   conftest.c -ldl   >&5
configure:2214: $? = 0
configure:2217: test -s conftest
configure:2220: $? = 0
configure:2234: result: -ldl
configure:2242: checking for module Locale::gettext
Can't locate Locale/gettext.pm in @INC (@INC contains: /etc/perl /usr/lib/perl5/site_perl/5.8.7/i386-linux /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.7/i386-linux /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.7/i386-linux /usr/lib/perl5/5.8.7 /usr/local/lib/site_perl .).
BEGIN failed--compilation aborted.
configure:2254: result: no
configure:2258: error: perl module Locale::gettext required


Last edited by Vortigern on Tue May 16, 2006 10:29 am; edited 3 times in total
Back to top
View user's profile Send private message
Section_8
l33t
l33t


Joined: 22 May 2004
Posts: 627

PostPosted: Tue May 09, 2006 10:17 pm    Post subject: Reply with quote

I think circular dependency problems with perl is one of the reasons stage 3 is now the "preferred" install method instead of stage 1 (bootstrap). Maybe that's what this problem is.
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Tue May 09, 2006 10:26 pm    Post subject: Reply with quote

emerge system *once* without mangleing with cflags and whatnot first!
after you went through bootstrap and emerge -e system, feel free to play with cflags and all of this.
come back if you still have problems, and post your "emerge info" in full, not just parts of it.
i guess you are at "emerge -e system", right? so what does "-j3" has to do in there?
i am seriously getting fedup with this.
"fomit-frame-pointer" shouldnt be in there on your first install (stage1) either.

you would not have all of this problems leaving CFLAGS and all of this alone. simply bootstrap and emerge -e system, if all of that went through fine, start finetuning.
jesus fscking christ! :twisted:
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54234
Location: 56N 3W

PostPosted: Tue May 09, 2006 11:05 pm    Post subject: Reply with quote

Vortigern,

Your post
Code:
#emerge system
looks like a copy and paste.
If so, you missed the -e You need to do
Code:
emerge -e system


Your CFLAGS are ok and MAKEOPTS is harmless too.

You appear to have a perl module missing
Code:
error: perl module Locale:: gettext required

It may be that your use flags are attemptining to build things that should not be built yet.

Comment out your USE= statement and emerge -e system again.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Wed May 10, 2006 6:30 am    Post subject: Reply with quote

SolylentGreen,
using --fetchonly couldn't cause any proble, this variable just donwload all the source, it doesn't do any thing else.
About "-fomit-frame-pointer" this option should be included in -O2, but it's also recommended on this page, that you passed to me some days ago: http://gentoo-wiki.com/Safe_Cflags


NeddySeagon,
I used
Code:
emerge system

without the -e, because it need too much time to compile 92 packages, instead of 62 or near, but if it is required I can try.
I will leave the USE blank and will come back when finished!
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Wed May 10, 2006 1:40 pm    Post subject: Reply with quote

I've tryed to re-emerge the system without any USE flags, but it didn't work out.
So I tried to re-bootstrap the system, but something went wrong; then I decided to start againg since the beginning.
So, I downloaded the portage, the stage, extracted them, and then went to make.conf.
I noticed that "gcc" and "divx4linux" wasn't in my use.desc, so I throw them away and now I'm waiting for the result.
Here is my new make.conf:
Code:
CFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
MAKEOPTS="-j3"
USE="3dnow gnome dvd dvdr cdr alsa jpeg avi opengl openal mp3 libg++ gtk gtk2 xine oggvorbis asf"


A little question while waiting for the result, nothing will change if I use:
Code:
${CFLAGS}
or
Code:
-O2 -march=athlon-xp -pipe -fomit-frame-pointer

in the CXXFLAGS, right? ${CFLAGS} should only use the same variables, isn't it?
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54234
Location: 56N 3W

PostPosted: Wed May 10, 2006 4:42 pm    Post subject: Reply with quote

Vortigern,

Thats correct. CFLAGS sets an environment varable then ${CFLAGS} refers to it.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Wed May 10, 2006 6:13 pm    Post subject: Reply with quote

well, run "emerge gettext"
does this work?
if so, afterwards "emerge -e system"
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Thu May 11, 2006 6:35 am    Post subject: Reply with quote

Good idea SoylentGreen, but I've just started "emerge -e system".
I hope this to work!
Thanks for your help, I'll let you know about this problem.
About my USE, i red divx4linux somewhere, is this right? And about gcc?
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Thu May 11, 2006 4:08 pm    Post subject: Reply with quote

"emerge -e system" has a bug, so I stopped after 3 times. I will apply the patch to solve the problem for restarting, but for now here is the problem found when doing "emerge system":
Code:
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  $ ./configure --prefix=/usr --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --enable-nls --build=i686-pc-linux-gnu

## --------- ##
## Platform. ##
## --------- ##

hostname = livecd
uname -m = i686
uname -r = 2.6.15-gentoo-r5
uname -s = Linux
uname -v = #1 SMP Thu Feb 16 15:28:08 UTC 2006

/usr/bin/uname -p = AMD Athlon(TM) XP 2500+
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /sbin
PATH: /usr/sbin
PATH: /usr/lib/portage/bin
PATH: /bin
PATH: /usr/bin
PATH: /opt/bin
PATH: /usr/i686-pc-linux-gnu/gcc-bin/3.4.5


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1219: checking for perl
configure:1224: ...version 5.005 required
configure:1233: trying perl
found version 5.00801
configure:1242: result: perl
configure:1275: checking for i686-pc-linux-gnu-gcc
configure:1291: found /usr/bin/i686-pc-linux-gnu-gcc
configure:1301: result: i686-pc-linux-gnu-gcc
configure:1583: checking for C compiler version
configure:1586: i686-pc-linux-gnu-gcc --version </dev/null >&5
i686-pc-linux-gnu-gcc (GCC) 3.4.5 (Gentoo 3.4.5-r1, ssp-3.4.5-1.0, pie-8.7.9)
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:1589: $? = 0
configure:1591: i686-pc-linux-gnu-gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.5/specs
Configured with: /var/tmp/portage/gcc-3.4.5-r1/work/gcc-3.4.5/configure --prefix=/usr --bindir=/usr/i686-pc-linux-gnu/gcc-bin/3.4.5 --includedir=/usr/lib/gcc/i686-pc-linux-gnu/3.4.5/include --datadir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.5 --mandir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.5/man --infodir=/usr/share/gcc-data/i686-pc-linux-gnu/3.4.5/info --with-gxx-include-dir=/usr/lib/gcc/i686-pc-linux-gnu/3.4.5/include/g++-v3 --host=i686-pc-linux-gnu --build=i686-pc-linux-gnu --disable-altivec --enable-nls --without-included-gettext --with-system-zlib --disable-checking --disable-werror --disable-libunwind-exceptions --disable-multilib --disable-libgcj --enable-languages=c,c++ --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
Thread model: posix
gcc version 3.4.5 (Gentoo 3.4.5-r1, ssp-3.4.5-1.0, pie-8.7.9)
configure:1594: $? = 0
configure:1596: i686-pc-linux-gnu-gcc -V </dev/null >&5
i686-pc-linux-gnu-gcc: `-V' option must have argument
configure:1599: $? = 1
configure:1623: checking for C compiler default output
configure:1626: i686-pc-linux-gnu-gcc -O2 -march=athlon-xp -pipe -fomit-frame-pointer   conftest.c  >&5
configure:1629: $? = 0
configure:1675: result: a.out
configure:1680: checking whether the C compiler works
configure:1686: ./a.out
configure:1689: $? = 0
configure:1706: result: yes
configure:1713: checking whether we are cross compiling
configure:1715: result: no
configure:1718: checking for suffix of executables
configure:1720: i686-pc-linux-gnu-gcc -o conftest -O2 -march=athlon-xp -pipe -fomit-frame-pointer   conftest.c  >&5
configure:1723: $? = 0
configure:1748: result:
configure:1754: checking for suffix of object files
configure:1776: i686-pc-linux-gnu-gcc -c -O2 -march=athlon-xp -pipe -fomit-frame-pointer  conftest.c >&5
configure:1779: $? = 0
configure:1801: result: o
configure:1805: checking whether we are using the GNU C compiler
configure:1830: i686-pc-linux-gnu-gcc -c -O2 -march=athlon-xp -pipe -fomit-frame-pointer  conftest.c >&5
configure:1833: $? = 0
configure:1836: test -s conftest.o
configure:1839: $? = 0
configure:1852: result: yes
configure:1858: checking whether i686-pc-linux-gnu-gcc accepts -g
configure:1880: i686-pc-linux-gnu-gcc -c -g  conftest.c >&5
configure:1883: $? = 0
configure:1886: test -s conftest.o
configure:1889: $? = 0
configure:1900: result: yes
configure:1917: checking for i686-pc-linux-gnu-gcc option to accept ANSI C
configure:1978: i686-pc-linux-gnu-gcc  -c -O2 -march=athlon-xp -pipe -fomit-frame-pointer  conftest.c >&5
configure:1981: $? = 0
configure:1984: test -s conftest.o
configure:1987: $? = 0
configure:2005: result: none needed
configure:2023: i686-pc-linux-gnu-gcc -c -O2 -march=athlon-xp -pipe -fomit-frame-pointer  conftest.c >&5
conftest.c:2: error: syntax error before "me"
configure:2026: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:2135: checking for library containing dlsym
configure:2166: i686-pc-linux-gnu-gcc -o conftest -O2 -march=athlon-xp -pipe -fomit-frame-pointer   conftest.c  >&5
/var/tmp/portage/help2man-1.33.1/temp/ccJFCFVV.o: In function `main':
conftest.c:(.text+0xd): undefined reference to `dlsym'
collect2: ld returned 1 exit status
configure:2169: $? = 1
configure: failed program was:
| #line 2142 "configure"
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
|
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char dlsym ();
| int
| main ()
| {
| dlsym ();
|   ;
|   return 0;
| }
configure:2211: i686-pc-linux-gnu-gcc -o conftest -O2 -march=athlon-xp -pipe -fomit-frame-pointer   conftest.c -ldl   >&5
configure:2214: $? = 0
configure:2217: test -s conftest
configure:2220: $? = 0
configure:2234: result: -ldl
configure:2242: checking for module Locale::gettext
Can't locate Locale/gettext.pm in @INC (@INC contains: /etc/perl /usr/lib/perl5/site_perl/5.8.7/i386-linux /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.7/i386-linux /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.7/i386-linux /usr/lib/perl5/5.8.7 /usr/local/lib/site_perl .).
BEGIN failed--compilation aborted.
configure:2254: result: no
configure:2258: error: perl module Locale::gettext required

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_c_compiler_gnu=yes
ac_cv_enable_nls=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O2 -march=athlon-xp -pipe -fomit-frame-pointer'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=i686-pc-linux-gnu
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=i686-pc-linux-gnu
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_module_Locale__gettext=no
ac_cv_objext=o
ac_cv_prog_CC=i686-pc-linux-gnu-gcc
ac_cv_prog_PERL=perl
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_search_dlsym=-ldl

## ----------------- ##
## Output variables. ##
## ----------------- ##

CC='i686-pc-linux-gnu-gcc'
CFLAGS='-O2 -march=athlon-xp -pipe -fomit-frame-pointer'
CPPFLAGS=''
DEFS=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EXEEXT=''
INSTALL_DATA=''
INSTALL_INFO=''
INSTALL_PROGRAM=''
INSTALL_SCRIPT=''
LDFLAGS=''
LIBOBJS=''
LIBS='-ldl '
LTLIBOBJS=''
MAKEINFO=''
MSGFMT=''
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PERL='perl'
SHELL='/bin/sh'
ac_ct_CC=''
bindir='${exec_prefix}/bin'
build_alias='i686-pc-linux-gnu'
datadir='/usr/share'
exec_prefix='NONE'
extra_make_all=''
extra_make_install=''
host_alias='i686-pc-linux-gnu'
includedir='${prefix}/include'
infodir='/usr/share/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='/var/lib'
mandir='/usr/share/man'
oldincludedir='/usr/include'
prefix='/usr'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""

configure: exit 1



May this be a bug?
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Fri May 12, 2006 9:11 am    Post subject: Reply with quote

dont know. emerge gettext, does this work?
Back to top
View user's profile Send private message
troymc
Guru
Guru


Joined: 22 Mar 2006
Posts: 553

PostPosted: Fri May 12, 2006 9:41 am    Post subject: Reply with quote

Look like you need to install dev-perl/Locale-gettext

Code:

configure: error: perl module Locale:: gettext required



troymc
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Fri May 12, 2006 5:00 pm    Post subject: Reply with quote

I succesfully compiled Gentoo, but it was only good luck!
I was doing #emerge -e system when I discovered that it has a bug, so I stopped it after 3 or 5 cicles.
Then I tryed again with emerge system and it worked.
But I'm no satisfyed, so now I'm recompiling the system to let you know if #emerge gettext will work, or if not.
Wait here for results ;)
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Fri May 12, 2006 5:09 pm    Post subject: Reply with quote

as troymc pointed out correctly, it is an issue with "dev-perl/Locale-gettext ". sorry for confusing things :oops:
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Sat May 13, 2006 7:09 am    Post subject: Reply with quote

Yeah guys, it works! :D
You got it right I had to:
Code:
emerge dev-perl/Locale-gettext

Thank you all for the help, I won't be able to solve this issue without your help ;)
Thanks again!
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Sat May 13, 2006 4:33 pm    Post subject: Reply with quote

Sorry, I don't know how to explain but it seems it was only a god morning.
I started to re-compile Gentoo and this time #emerge gettext and #emerge dev-perl/Locale-gettex didn't worked.
I also found that dev-perl/Locale-gettext is one of the first package that are emerged by #emerge system
What should I do? I'm getting crazy :(
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Sat May 13, 2006 4:39 pm    Post subject: Reply with quote

you are getting *me* crazy, really :twisted:
why did you recompile, and what did you recompile? what did not work and where is the erroroutput?

define "did not work". post emerge --info, and post the error.
your gentoo had been installed already? emerge -e system worked fine and it booted, or now what?

there is no such thing like " re-compile Gentoo " apart from emerge -eDv world

no wonder stage1 is not supported anymore :lol:

i would recommend you install a stage3, get everything working, make a fullbackup (partimage) and *then* start playing with USEflags, CFLAGS and whatnot, to gain a few milliseconds in speed.
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Sat May 13, 2006 5:09 pm    Post subject: Reply with quote

I don't know why but my system was broken, so I remounted the fyle system on the discs and restared from the begining. I intend this for re-compile, sorry for the mistake.
Didn't work means that I get always the same error, the one I've postaed on top of this discussion.
I don't want to install from stage 3 and stage 1 is only unsupported in the handbook!
#emerge -e system has a bug, it restart form the begining when it is at about half of the packages.
My emerge --info:
Code:
Gentoo Base System version 1.6.14
Portage 2.0.54-r2 (default-linux/x86/2006.0, gcc-3.4.5, glibc-2.3.6-r3, 2.6.15-gentoo-r5 i686)
=================================================================
System uname: 2.6.15-gentoo-r5 i686 AMD Athlon(TM) XP 2500+
dev-lang/python:     2.4.2
dev-python/pycrypto: [Not Present]
dev-util/ccache:     [Not Present]
dev-util/confcache:  [Not Present]
sys-apps/sandbox:    1.2.12
sys-devel/autoconf:  [Not Present]
sys-devel/automake:  [Not Present]
sys-devel/binutils:  2.16.1
sys-devel/libtool:   [Not Present]
virtual/os-headers:  2.6.11-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT=""
CONFIG_PROTECT_MASK="/etc/eselect/compiler /etc/gconf /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=athlon-xp -pipe -fomit-frame-pointer"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig distlocks sandbox sfperms strict"
GENTOO_MIRRORS="http://pandemonium.tiscali.de/pub/gentoo/ ftp://pandemonium.tiscali.de/pub/gentoo/ ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.gentoo.org/gentoo-distfiles/ http://ftp.rz.tu-bs.de/pub/mirror/ftp.gentoo.org/gentoo/ http://gentoo.intergenia.de ftp://files.gentoo.gr http://files.gentoo.org ftp://ftp.ntua.gr/pub/linux/gentoo/ http://ftp.ntua.gr/pub/linux/gentoo/ ftp://ftp.uoi.gr/mirror/OS/gentoo/ http://ftp.uoi.gr/mirror/OS/gentoo/ http://ftp.physics.auth.gr/pub/mirrors/gentoo/ ftp://ftp.physics.auth.gr/pub/mirrors/gentoo/ "
MAKEOPTS="-j3"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 3dnow X alsa apache2 apm arts asf avi berkdb bitmap-fonts bzip2 cdr cli crypt cups dri dvd dvdr eds emboss encode esd foomaticdb fortran gdbm gif gnome gpm gstreamer gtk gtk2 imlib ipv6 isdnlog jpeg kde libg++ libwww mad mikmod motif mp3 mpeg ncurses nls nptl ogg oggvorbis openal opengl oss pam pcre pdflib perl png pppd python qt quicktime readline reflection sdl session spell spl ssl tcpd truetype truetype-fonts type1-fonts udev vorbis xine xml xmms xorg xv zlib userland_GNU kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, INSTALL_MASK, LANG, LC_ALL, LDFLAGS, LINGUAS, PORTAGE_RSYNC_EXTRA_OPTS, PORTAGE_RSYNC_OPTS, PORTDIR_OVERLAY


Last edited by Vortigern on Sat May 13, 2006 5:25 pm; edited 1 time in total
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Sat May 13, 2006 5:22 pm    Post subject: Reply with quote

then finally leave your USEflags alone, comment them *out*. you already have been told so by neddy.
it will not work better if you start from scratch 20 or 30 times.
use the default make.conf and thats it.
if you got your system to boot, back it up and start playing with flags.
doing stage1 you have to re-emerge system (emerge -e system) anyway. so make sure it is working before you start finetuning.
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Sat May 13, 2006 5:45 pm    Post subject: Reply with quote

I've tryed to comment out the USE, but that didn't change anything, the result is always the same.
#emerge -e system is not needed according to my Gentoo manual, #emerge system is sufficient.
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Sat May 13, 2006 5:56 pm    Post subject: Reply with quote

Vortigern wrote:

#emerge -e system is not needed according to my Gentoo manual, #emerge system is sufficient.

well, it shows that *your* manual is not working, eh? <SCNR>
if you do a stage1 and bootstrap, do as i explained and it will work! man, i just did that 3 some days ago, and i did it more then once (on other systems)
OTOH you do not post the errors, so this discussion gets pretty redundant. 2006.0 does work stage1. on x86 and on amd64, for sure!

btw.. what manual are you referring to? link please!

btw2: "CONFIG_PROTECT="-*" 8O
this was in *your* manual as well? and what sould USE="gcc" do? avoid everything gets compiled by watcom? :lol:
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Sat May 13, 2006 6:51 pm    Post subject: Reply with quote

Here is my manual: http://www.gentoo.it/handbook/handbook-x86.html
About the CONFIG_PROTECT="-*" I setted this by myself, it's not in the manul, I did it because some protect packages cannot be updated without this option.
About "gcc", I can tell that I'm not using it, and only a few of the variable shown in the emerge --info wa selected by myself.
My current use configation is: USE="3dnow gnome dvd dvdr cdr alsa jpeg avi opengl openal mp3 libg++ gtk gtk2 xine oggvorbis asf"
Back to top
View user's profile Send private message
SoylentGreen
l33t
l33t


Joined: 19 Aug 2005
Posts: 904
Location: The Hostel

PostPosted: Sat May 13, 2006 7:09 pm    Post subject: Reply with quote

Vortigern wrote:
Here is my manual: http://www.gentoo.it/handbook/handbook-x86.html

Ultimo aggiornamento10 Maggio 2004

do you still have *any* further questions? i am able to understand your english quite well, so what about using an uptodate handbook?
and now finally do what others suggested to you.

Vortigern wrote:

About the CONFIG_PROTECT="-*" I setted this by myself, it's not in the manul, I did it because some protect packages cannot be updated without this option.

and you will NOT do this on stage1 either :twisted:
we *are* talking 2004.x or 2006.0?
EOD
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Mon May 15, 2006 7:42 am    Post subject: Reply with quote

We are talking about Gentoo 2006. This manual is old I know, but it explain how to compile Gentoo from stage1. The difference between this one and the latest Gentoo handbook are not so big, infact they will explain you the same thing and my only problem is about #emerge system, for the rest I haven't any problem, with this manual I can complete sucesfully the installation of Gentoo!
About CONFIG_PROTECT="-*" I can try to not use thisvariable, but I have to say that I used it only after bootstraping in #emerge system
Back to top
View user's profile Send private message
Vortigern
Guru
Guru


Joined: 25 Nov 2005
Posts: 341
Location: Italy

PostPosted: Mon May 15, 2006 3:58 pm    Post subject: Reply with quote

I found out that
Code:
emerge -e dev-perl/Locale-gettext

works. But when doing
Code:
emerge -pe dev-perl/Locale-gettext

I saw that this doesn't merge only the gettext but also other applications, dev-perl/Locale-gettext-1.05 is only the last.
I will look for another workaround to overcome this problem, becuase
Code:
emerge -e dev-perl/Locale-gettext
is too long.
See you when I will find another way.

P.S.
The USE variables doesn't affet this process, because doing this without and with the USE I setted gave the same results.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum