LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 07-20-2009, 01:45 AM   #1
Connery
LQ Newbie
 
Registered: Jul 2009
Posts: 3

Rep: Reputation: 0
Emerge fails almost 50% of the time


Hi
I'm newish to Linux in general, and very new to Gentoo. I have followed the guide and have gotten to the part where we install the GUI, I'm gong with gnome. But when I ran

Code:
emerge gnome
I get an econf failed error.
the build.log:

Code:
>>> Unpacking source...
>>> Unpacking gnome-common-2.24.0.tar.bz2 to /var/tmp/portage/gnome-base/gnome-common-2.24.0/work
tar: gnome-common-2.24.0/missing: time stamp 2008-09-22 18:27:39 is 37252506.232340348 s in the future
tar: gnome-common-2.24.0/ChangeLog: time stamp 2008-09-22 18:28:59 is 37252586.228022928 s in the future
tar: gnome-common-2.24.0/install-sh: time stamp 2008-09-22 18:27:39 is 37252506.222108748 s in the future
tar: gnome-common-2.24.0/aclocal.m4: time stamp 2008-09-22 18:27:20 is 37252487.218129492 s in the future
tar: gnome-common-2.24.0/doc: time stamp 2008-09-22 18:29:03 is 37252590.217316556 s in the future
tar: gnome-common-2.24.0/configure: time stamp 2008-09-22 18:27:20 is 37252487.199637665 s in the future
tar: gnome-common-2.24.0/gnome-common.spec: time stamp 2008-09-22 18:27:41 is 37252508.199150634 s in the future
tar: gnome-common-2.24.0/macros2/gnome-autogen.sh: time stamp 2008-09-22 18:26:08 is 37252415.194792686 s in the future
tar: gnome-common-2.24.0/macros2/Makefile.in: time stamp 2008-09-22 18:27:39 is 37252506.190112559 s in the future
tar: gnome-common-2.24.0/macros2: time stamp 2008-09-22 18:29:03 is 37252590.189869284 s in the future
tar: gnome-common-2.24.0/configure.in: time stamp 2008-09-22 18:26:29 is 37252436.188720289 s in the future
tar: gnome-common-2.24.0/doc-build/Makefile.in: time stamp 2008-09-22 18:27:39 is 37252506.182393023 s in the future
tar: gnome-common-2.24.0/doc-build: time stamp 2008-09-22 18:29:03 is 37252590.182142803 s in the future
tar: gnome-common-2.24.0/Makefile.am: time stamp 2008-09-22 18:26:36 is 37252443.181676739 s in the future
tar: gnome-common-2.24.0/Makefile.in: time stamp 2008-09-22 18:27:39 is 37252506.177857057 s in the future
tar: gnome-common-2.24.0: time stamp 2008-09-22 18:29:03 is 37252590.176383882 s in the future
>>> Source unpacked in /var/tmp/portage/gnome-base/gnome-common-2.24.0/work
>>> Compiling source in /var/tmp/portage/gnome-base/gnome-common-2.24.0/work/gnome-common-2.24.0 ...
./configure --prefix=/usr --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... configure: error: newly created file is older than distributed files!
Check your system clock

!!! Please attach the following file when seeking support:
!!! /var/tmp/portage/gnome-base/gnome-common-2.24.0/work/gnome-common-2.24.0/config.log
 * 
 * ERROR: gnome-base/gnome-common-2.24.0 failed.
 * Call stack:
 *               ebuild.sh, line   49:  Called src_compile
 *             environment, line 1305:  Called gnome2_src_compile
 *             environment, line 1074:  Called gnome2_src_configure
 *             environment, line 1088:  Called econf
 *               ebuild.sh, line  534:  Called die
 * The specific snippet of code:
 *   			die "econf failed"
 *  The die message:
 *   econf failed
 * 
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/gnome-base/gnome-common-2.24.0/temp/build.log'.
 * The ebuild environment file is located at '/var/tmp/portage/gnome-base/gnome-common-2.24.0/temp/environment'.
 *
When searching for a possible solution I came across a post where there was a similar problem, but with different package. the first package that fails for me is gnome-common-2.24.0.

http://www.linuxquestions.org/questi...failed-623446/

Any assistance would be greatly appreciated, I can supply any other information that is required just ask.
 
Old 07-20-2009, 05:48 AM   #2
mrrangerman
Member
 
Registered: Oct 2007
Location: MI
Distribution: Debian Slackware
Posts: 528

Rep: Reputation: 59
Did you add gnome to your USE flags?

You will need to setup your x-server if you haven't already, X-SERVER

Here is the Gentoo GNOME installation guide.
 
Old 07-20-2009, 06:43 AM   #3
wr3ck3d
Member
 
Registered: Dec 2002
Location: IL
Distribution: NetBSD, Slackware, Gentoo, Debian, FreeBSD
Posts: 444

Rep: Reputation: 31
Check the clock.
 
Old 07-20-2009, 05:13 PM   #4
Connery
LQ Newbie
 
Registered: Jul 2009
Posts: 3

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrrangerman View Post
Did you add gnome to your USE flags?

You will need to setup your x-server if you haven't already, X-SERVER

Here is the Gentoo GNOME installation guide.
Ok I tried to emerge and or configure x-server as you suggested, thanks for the link, but it also failed to emerge because of an econf died error.

Last edited by Connery; 07-20-2009 at 05:26 PM.
 
Old 07-21-2009, 06:04 PM   #5
wr3ck3d
Member
 
Registered: Dec 2002
Location: IL
Distribution: NetBSD, Slackware, Gentoo, Debian, FreeBSD
Posts: 444

Rep: Reputation: 31
Wow, the error message tells you at least 20 times that your clock is wrong. Don't think I have ever seen an error message so clear in my life.
 
Old 07-23-2009, 10:05 PM   #6
Connery
LQ Newbie
 
Registered: Jul 2009
Posts: 3

Original Poster
Rep: Reputation: 0
Well, this is embarrassing, turns out a 2 year clock skew has very negative effects. my only defence is that in searching for help from someone I know, I was informed that this was most likely not the issue, and the two seemed rather unrelated. all in all problem fixed and its emerging seamlessly with the exception of another error, but I'm sure ill figure that out in time.
Thank you all for your help.
 
  


Reply

Tags
emerge, fail



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
emerge fails while trying to install ghostscript ub3rj3phf Linux - Software 2 03-19-2007 03:10 PM
Fluxbox emerge fails..need some help GUIPenguin Linux - General 1 02-14-2006 08:31 AM
Stepmania 3.9-rc3 emerge fails slithy Linux - Games 1 11-22-2005 05:32 AM
Emerge xine-ui fails richcm Linux - Software 2 10-18-2005 11:13 AM
kdemultimedia-3.1.5 fails to emerge...any ideas? Nu-Bee Linux - Software 2 01-19-2004 04:51 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:18 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration