Re: [gentoo-user] emerge error for dev-lisp/clisp-2.49-r9

2018-01-15 Thread Quico Jurado
OK, based on #Bug 638514, installing clisp-2.49.60 fixed the problem.

Thanks!

On Mon, Jan 15, 2018 at 12:51 AM, Corbin Bird 
wrote:

>
>
> On 01/14/2018 02:39 PM, Quico Jurado wrote:
> > Hello,
> >
> > After doing doing the upgrade to my 17.0 profile
> > (`default/linux/amd64/17.0/desktop'), and recompiling all my packages
> > I ran into a problem while installing clisp. Basically is bailing out
> > on the configure stage, this is the relevant output of the configure
> > script (suppressed some output to reduce the noise):
> >
> > gcc version 6.4.0 (Gentoo 6.4.0-r1 p1.3)
> > configure:3901: $? = 0
> > configure:3890: gcc -V >&5
> > gcc: error: unrecognized command line option '-V'
> > gcc: fatal error: no input files
> > compilation terminated.
> > configure:3901: $? = 1
> > configure:3890: gcc -qversion >&5
> > gcc: error: unrecognized command line option '-qversion'; did you mean
> > '--v
> > ersion'?
> > gcc: fatal error: no input files
> > compilation terminated.
> > configure:3901: $? = 1
> > configure:3921: checking whether the C compiler works
> > configure:3943: gcc -march=native -O2 -pipe -fno-pie
> > -Wa,--noexecstack  -I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed
> > conftest.c  >&5
> > configure:3947: $? = 0
> > configure:3996: result: yes
> > ...
> > configure:4062: checking whether we are cross compiling
> > configure:4070: gcc -o conftest -march=native -O2 -pipe -fno-pie
> > -Wa,--noexecstack  -I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed
> > conftest.c  >&5
> > /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-
> pc-linux-gnu/bin/ld:
> > /var/tmp/portage/dev-lisp/clisp-2.49-r9/temp/ccPeB6Vb.o: relocation
> > R_X86_64_32 against `.rodata.str1.1' can not be used when making a
> > shared object; recompile with -fPIC
> > /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-
> pc-linux-gnu/bin/ld:
> > final link failed: Nonrepresentable section on output
> > collect2: error: ld returned 1 exit status
> > configure:4074: $? = 1
> > configure:4081: ./conftest
> > configure: line 4083: ./conftest: No such file or directory
> > configure:4085: $? = 127
> > ...
> > configure:4096: error: cannot run C compiled programs.
> > If you meant to cross compile, use `--host'.
> >
> > Any help to work this out is much appreciated.
> >
> > Thanks,
>
> From the ebuild :
> > # Bug 618170. If anyone has a better idea...
> > append-flags -fno-pie
>
> This ebuild is using "EAPI=5".
> Looks like it hasn't been updated in a while.
>
> Profile 17 FORCES the use of PIE/PIC.
> ( -fPIC, -fPIE are appended to the gcc commands )
>
> I suspect that the Profile 17 forced flags would have to be disabled
> somehow.
> Have no idea if that is possible.
>
> Corbin
>
>
>
>
>


Re: [gentoo-user] emerge error for dev-lisp/clisp-2.49-r9

2018-01-14 Thread Corbin Bird


On 01/14/2018 02:39 PM, Quico Jurado wrote:
> Hello,
>
> After doing doing the upgrade to my 17.0 profile
> (`default/linux/amd64/17.0/desktop'), and recompiling all my packages
> I ran into a problem while installing clisp. Basically is bailing out
> on the configure stage, this is the relevant output of the configure
> script (suppressed some output to reduce the noise):
>
> gcc version 6.4.0 (Gentoo 6.4.0-r1 p1.3)
> configure:3901: $? = 0
> configure:3890: gcc -V >&5
> gcc: error: unrecognized command line option '-V'
> gcc: fatal error: no input files
> compilation terminated.
> configure:3901: $? = 1
> configure:3890: gcc -qversion >&5
> gcc: error: unrecognized command line option '-qversion'; did you mean
> '--v
> ersion'?
> gcc: fatal error: no input files
> compilation terminated.
> configure:3901: $? = 1
> configure:3921: checking whether the C compiler works
> configure:3943: gcc -march=native -O2 -pipe -fno-pie
> -Wa,--noexecstack  -I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed
> conftest.c  >&5
> configure:3947: $? = 0
> configure:3996: result: yes
> ...
> configure:4062: checking whether we are cross compiling
> configure:4070: gcc -o conftest -march=native -O2 -pipe -fno-pie
> -Wa,--noexecstack  -I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed
> conftest.c  >&5
> /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-pc-linux-gnu/bin/ld:
> /var/tmp/portage/dev-lisp/clisp-2.49-r9/temp/ccPeB6Vb.o: relocation
> R_X86_64_32 against `.rodata.str1.1' can not be used when making a
> shared object; recompile with -fPIC
> /usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-pc-linux-gnu/bin/ld:
> final link failed: Nonrepresentable section on output
> collect2: error: ld returned 1 exit status
> configure:4074: $? = 1
> configure:4081: ./conftest
> configure: line 4083: ./conftest: No such file or directory
> configure:4085: $? = 127
> ...
> configure:4096: error: cannot run C compiled programs.
> If you meant to cross compile, use `--host'.
>
> Any help to work this out is much appreciated.
>
> Thanks,

>From the ebuild :
>     # Bug 618170. If anyone has a better idea...
>     append-flags -fno-pie

This ebuild is using "EAPI=5".
Looks like it hasn't been updated in a while.

Profile 17 FORCES the use of PIE/PIC.
( -fPIC, -fPIE are appended to the gcc commands )

I suspect that the Profile 17 forced flags would have to be disabled
somehow.
Have no idea if that is possible.

Corbin






[gentoo-user] emerge error for dev-lisp/clisp-2.49-r9

2018-01-14 Thread Quico Jurado
Hello,

After doing doing the upgrade to my 17.0 profile
(`default/linux/amd64/17.0/desktop'), and recompiling all my packages I ran
into a problem while installing clisp. Basically is bailing out on the
configure stage, this is the relevant output of the configure script
(suppressed some output to reduce the noise):

gcc version 6.4.0 (Gentoo 6.4.0-r1 p1.3)
configure:3901: $? = 0
configure:3890: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3901: $? = 1
configure:3890: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--v
ersion'?
gcc: fatal error: no input files
compilation terminated.
configure:3901: $? = 1
configure:3921: checking whether the C compiler works
configure:3943: gcc -march=native -O2 -pipe -fno-pie -Wa,--noexecstack
-I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed conftest.c  >&5
configure:3947: $? = 0
configure:3996: result: yes
...
configure:4062: checking whether we are cross compiling
configure:4070: gcc -o conftest -march=native -O2 -pipe -fno-pie
-Wa,--noexecstack  -I/usr/include/db4.8 -Wl,-O1 -Wl,--as-needed conftest.c
>&5
/usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-pc-linux-gnu/bin/ld:
/var/tmp/portage/dev-lisp/clisp-2.49-r9/temp/ccPeB6Vb.o: relocation
R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared
object; recompile with -fPIC
/usr/lib/gcc/x86_64-pc-linux-gnu/6.4.0/../../../../x86_64-pc-linux-gnu/bin/ld:
final link failed: Nonrepresentable section on output
collect2: error: ld returned 1 exit status
configure:4074: $? = 1
configure:4081: ./conftest
configure: line 4083: ./conftest: No such file or directory
configure:4085: $? = 127
...
configure:4096: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.

Any help to work this out is much appreciated.

Thanks,


[gentoo-user] emerge error with glib-perl-1.223. PkgConfig and Depends not installed

2011-04-19 Thread Alan Mackenzie
Hi, gentoo.

I'm trying # emerge --update --deep xfce4-meta.

It fails at glib-perl-1.223, since it can't find ExtUtils::Depends and
ExtUtils::PkgConfig.  Here is the relevant section from the build log:

 * Package:dev-perl/glib-perl-1.223
 * USE:amd64 elibc_glibc kernel_linux multilib userland_GNU
 * FEATURES:   sandbox
 Unpacking source...
 Unpacking Glib-1.223.tar.gz to 
 /var/tmp/portage/dev-perl/glib-perl-1.223/work
 Source unpacked in /var/tmp/portage/dev-perl/glib-perl-1.223/work
 Preparing source in 
 /var/tmp/portage/dev-perl/glib-perl-1.223/work/Glib-1.223 ...
 Source prepared.
 Configuring source in 
 /var/tmp/portage/dev-perl/glib-perl-1.223/work/Glib-1.223 ...
 * Using ExtUtils::MakeMaker
 * perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor INSTALLMAN3DIR=none 
DESTDIR=/var/tmp/portage/dev-perl/glib-perl-1.223/image/
Can't locate ExtUtils/Depends.pm in @INC (@INC contains: /etc/perl 
/usr/lib64/perl5/site_perl/5.12.2/x86_64-linux 
/usr/lib64/perl5/site_perl/5.12.2 
/usr/lib64/perl5/vendor_perl/5.12.2/x86_64-linux 
/usr/lib64/perl5/vendor_perl/5.12.2 /usr/lib64/perl5/5.12.2/x86_64-linux 
/usr/lib64/perl5/5.12.2 /usr/lib64/perl5/site_perl /usr/lib64/perl5/vendor_perl 
/usr/local/lib/site_perl .) at (eval 6) line 1.
BEGIN failed--compilation aborted at (eval 6) line 1.

Checking if your kit is complete...
Looks good
MakeMaker FATAL: prerequisites not found.
ExtUtils::Depends not installed
ExtUtils::PkgConfig not installed


However, I do have extutils-depends and extutils-pkgconfig installed at
the latest version.

Would somebody help me fix this, please.  I don't have a working X
windows at the moment.  :-(

-- Alan Mackenize (Nuremberg, Germany).



Re: [gentoo-user] emerge error with glib-perl-1.223. PkgConfig and Depends not installed

2011-04-19 Thread Stroller

On 19/4/2011, at 8:23am, Alan Mackenzie wrote:
 ...
 I'm trying # emerge --update --deep xfce4-meta.

If you're installing this for the first time then there's no need for the 
--update. I don't know that --deep is good practice, either. What are you 
trying to achieve?

 It fails at glib-perl-1.223, since it can't find ExtUtils::Depends and
 ExtUtils::PkgConfig.  Here is the relevant section from the build log:
 
 ...
 Checking if your kit is complete...
 Looks good
 MakeMaker FATAL: prerequisites not found.
ExtUtils::Depends not installed
ExtUtils::PkgConfig not installed


Google search for this error message:
  http://tinyurl.com/6b5hbp7

3rd hit:
  http://bugs.gentoo.org/show_bug.cgi?id=344557

Stroller.




Re: [gentoo-user] emerge error with glib-perl-1.223. PkgConfig and Depends not installed

2011-04-19 Thread Alan Mackenzie
Hi, Stroller.

On Tue, Apr 19, 2011 at 11:11:52AM +0100, Stroller wrote:

 On 19/4/2011, at 8:23am, Alan Mackenzie wrote:
  ...
  I'm trying # emerge --update --deep xfce4-meta.

 If you're installing this for the first time then there's no need for
 the --update. I don't know that --deep is good practice, either.
 What are you trying to achieve?
 
To update my first installation of xfce from ~February 2010.  Maybe it
would have been better to omit the --deep to begin with.

  It fails at glib-perl-1.223, since it can't find ExtUtils::Depends
  and ExtUtils::PkgConfig.  Here is the relevant section from the
  build log:

  ...
  Checking if your kit is complete...
  Looks good
  MakeMaker FATAL: prerequisites not found.
 ExtUtils::Depends not installed
 ExtUtils::PkgConfig not installed
 
 
 Google search for this error message:
   http://tinyurl.com/6b5hbp7

 3rd hit:
   http://bugs.gentoo.org/show_bug.cgi?id=344557

Thanks. perl-cleaner did the job on this bug.  :-)

 Stroller.

-- 
Alan Mackenzie (Nuremberg, Germany).



[gentoo-user] emerge Error

2009-03-12 Thread dhk
All,

After sync'ing yesterday and getting a whole bunch of packages evince
had problems and gnome never got installed.  Today after sync'ing I get
the following which doesn't make sense to me.  Can someone help.

# emerge -uDNp world
!!! CONFIG_PROTECT is empty
These are the packages that would be merged, in order:

Calculating dependencies... done!

emerge: there are no ebuilds built with USE flags to satisfy
=app-text/poppler-bindings-0.8[gtk,cairo].
!!! One of the following packages is required to complete your request:
- app-text/poppler-bindings-0.10.4 (Change USE: +cairo)
(dependency required by app-text/evince-2.24.2 [ebuild])
(dependency required by gnome-base/gnome-2.24.1 [ebuild])
(dependency required by world [argument])

Thanks,

Dave



Re: [gentoo-user] emerge Error

2009-03-12 Thread Justin
dhk schrieb:

 - app-text/poppler-bindings-0.10.4 (Change USE: +cairo)


This line tells you what to do:

reemerge poppler-bindings with USE=cairo



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] emerge Error

2009-03-12 Thread dhk
Justin wrote:
 dhk schrieb:
 
 - app-text/poppler-bindings-0.10.4 (Change USE: +cairo)
 
 
 This line tells you what to do:
 
 reemerge poppler-bindings with USE=cairo
 
That worked, Thanks.



[gentoo-user] emerge error

2008-01-22 Thread James
Hello,

I did a routine 'emerge sync' with no problems.
Then I did an ' emerge -uDNvp world' and it gives this
message:

Calculating system dependencies /Traceback (most recent call last):
  File /usr/bin/emerge, line 6518, in ?
retval = emerge_main()
  File /usr/bin/emerge, line 6512, in emerge_main
myopts, myaction, myfiles, spinner)
  File /usr/bin/emerge, line 5813, in action_build
mydepgraph = depgraph(settings, trees, myopts, myparams, spinner)
  File /usr/bin/emerge, line 1174, in __init__
vardb.aux_get(pkg, self._mydbapi_keys
  File /usr/bin/emerge, line 948, in _aux_get_wrapper
self._portdb.aux_get(pkg, self._portdb_keys)))
  File /usr/lib/portage/pym/portage.py, line 6552, in aux_get
try:del self.auxdb[mylocation][mycpv]
  File /usr/lib/portage/pym/cache/template.py, line 82, in __delitem__
self._delitem(cpv)
  File /usr/lib/portage/pym/cache/flat_hash.py, line 98, in _delitem
raise cache_errors.CacheCorruption(cpv, e)
cache.cache_errors.CacheCorruption: sys-apps/baselayout-1.12.10-r5 is corrupt:
[Errno 13] Permission denied:
'/var/cache/edb/dep/usr/portage/sys-apps/baselayout-1.12.10-r5'


revdep-rebuild is clean..

I cannot emerge (rebuild) anything. Never seen this problem before

Ideas on fixing this?


James

-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] emerge error

2008-01-22 Thread James Ausmus
On Jan 22, 2008 7:08 PM, James [EMAIL PROTECTED] wrote:
 Hello,

 I did a routine 'emerge sync' with no problems.
 Then I did an ' emerge -uDNvp world' and it gives this
 message:

snip

 cache.cache_errors.CacheCorruption: sys-apps/baselayout-1.12.10-r5 is corrupt:
 [Errno 13] Permission denied:
 '/var/cache/edb/dep/usr/portage/sys-apps/baselayout-1.12.10-r5'


 revdep-rebuild is clean..

 I cannot emerge (rebuild) anything. Never seen this problem before

 Ideas on fixing this?

Hmm - not sure exactly, but two thoughts come to mind off the bat:

1. Check your disk space, make sure it's not full
2. As root, do a chown -R portage:portage /var/cache/edb

and see what happens.

-James




 James

 --
 gentoo-user@lists.gentoo.org mailing list


-- 
gentoo-user@lists.gentoo.org mailing list



Re: [gentoo-user] emerge error

2008-01-22 Thread KH

James Ausmus wrote:

On Jan 22, 2008 7:08 PM, James [EMAIL PROTECTED] wrote:
  

Hello,

I did a routine 'emerge sync' with no problems.
Then I did an ' emerge -uDNvp world' and it gives this
message:



snip

  

cache.cache_errors.CacheCorruption: sys-apps/baselayout-1.12.10-r5 is corrupt:
[Errno 13] Permission denied:
'/var/cache/edb/dep/usr/portage/sys-apps/baselayout-1.12.10-r5'


revdep-rebuild is clean..

I cannot emerge (rebuild) anything. Never seen this problem before

Ideas on fixing this?



Hmm - not sure exactly, but two thoughts come to mind off the bat:

1. Check your disk space, make sure it's not full
2. As root, do a chown -R portage:portage /var/cache/edb

and see what happens.

-James


  

James

--
gentoo-user@lists.gentoo.org mailing list




add the -c to chown
  -c, --changes
 like verbose but report only when a change is made

--
gentoo-user@lists.gentoo.org mailing list



[gentoo-user] emerge error

2006-11-08 Thread Stefán István
Hi!
I try to emerge pgp, and get the following error when the compilation is 
finished:

 Source compiled.
--- ACCESS VIOLATION SUMMARY 
---
LOG FILE = /var/log/sandbox/sandbox-app-crypt_-_gnupg-1.9.20-r3-26975.log

access_wr: /


What does this mean?

Thanks,
István

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-11-08 Thread Hemmann, Volker Armin
On Wednesday 08 November 2006 15:03, Stefán István wrote:
 Hi!
 I try to emerge pgp, and get the following error when the compilation is

 finished:
  Source compiled.

 --- ACCESS VIOLATION SUMMARY
 ---
 LOG FILE = /var/log/sandbox/sandbox-app-crypt_-_gnupg-1.9.20-r3-26975.log

 access_wr: /
 ---
-

 What does this mean?

 Thanks,
 István

as it says, somewhere the ebuild/app tried to write outside of the sandbox and 
got stopped. Read the log. Usually that means that something is broken. Try a 
different pgp version - and don't disable sandbox. Disabling sanbox is evil.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-11-08 Thread Stefán István
szerda 08 november 2006 15.18 dátummal Hemmann, Volker Armin ezt írta:
 On Wednesday 08 November 2006 15:03, Stefán István wrote:
  Hi!
  I try to emerge pgp, and get the following error when the compilation is
 
  finished:
   Source compiled.
 
  --- ACCESS VIOLATION SUMMARY
  ---
  LOG FILE = 
/var/log/sandbox/sandbox-app-crypt_-_gnupg-1.9.20-r3-26975.log
 
  access_wr: /
  
---
 -
 
  What does this mean?
 
  Thanks,
  István
 
 as it says, somewhere the ebuild/app tried to write outside of the sandbox 
and 
 got stopped. Read the log. Usually that means that something is broken. Try 
a 
 different pgp version - and don't disable sandbox. Disabling sanbox is evil.

To tell the thruth, I don't know what sandbox is. I hasn't disabled it, or at 
least I don't know about it.

The log says only: access_wr: /

István

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-11-08 Thread Bo Ørsted Andresen
On Wednesday 08 November 2006 15:18, Hemmann, Volker Armin wrote:
 On Wednesday 08 November 2006 15:03, Stefán István wrote:
  Hi!
  I try to emerge pgp, and get the following error when the compilation is
 
  finished:
   Source compiled.
 
  --- ACCESS VIOLATION SUMMARY
  ---
  LOG FILE =
  /var/log/sandbox/sandbox-app-crypt_-_gnupg-1.9.20-r3-26975.log
 
  access_wr: /
  -
 -- -
 
  What does this mean?
 
  Thanks,
  István

 as it says, somewhere the ebuild/app tried to write outside of the sandbox
 and got stopped. Read the log. Usually that means that something is broken.
 Try a different pgp version - and don't disable sandbox. Disabling sanbox
 is evil.

Actually the most likely cause is bug #101433 [1]. Which means he needs to 
upgrade his sandbox:

# FEATURES=-sandbox emerge --oneshot sandbox

After that he should have no issues with emerging gnupg without disabling 
sandbox.

[1] http://bugs.gentoo.org/show_bug.cgi?id=101433

-- 
Bo Andresen


pgpYrGCQiqw45.pgp
Description: PGP signature


Re: [gentoo-user] emerge error

2006-11-08 Thread Stefán István
szerda 08 november 2006 15.39 dátummal Bo Ørsted Andresen ezt írta:
 On Wednesday 08 November 2006 15:18, Hemmann, Volker Armin wrote:
  On Wednesday 08 November 2006 15:03, Stefán István wrote:
   Hi!
   I try to emerge pgp, and get the following error when the compilation is
  
   finished:
Source compiled.
  
   --- ACCESS VIOLATION SUMMARY
   ---
   LOG FILE =
   /var/log/sandbox/sandbox-app-crypt_-_gnupg-1.9.20-r3-26975.log
  
   access_wr: /
   
-
  -- -
  
   What does this mean?
  
   Thanks,
   István
 
  as it says, somewhere the ebuild/app tried to write outside of the sandbox
  and got stopped. Read the log. Usually that means that something is 
broken.
  Try a different pgp version - and don't disable sandbox. Disabling sanbox
  is evil.
 
 Actually the most likely cause is bug #101433 [1]. Which means he needs to 
 upgrade his sandbox:
 
 # FEATURES=-sandbox emerge --oneshot sandbox
 
 After that he should have no issues with emerging gnupg without disabling 
 sandbox.
 
 [1] http://bugs.gentoo.org/show_bug.cgi?id=101433

Thank you, it is solved the problem.

Best regards,
István

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with sys-apps/apmd

2006-05-20 Thread Jonathan Chocron
Le Samedi 20 Mai 2006 07:03, Jim a écrit :
 On Fri, 2006-05-19 at 19:31 -0400, Allan Gottlieb wrote:
  I think you need to re-emerge libtool
  and then run
 
  fix_libtool_files.sh 3.4.4
 
  allan

 Ahh, thanks for the tip.  I never knew about fix_libtool_files.sh.

 Jim
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 There's no place like 127.0.0.1
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 JimD
 Central FL, USA, Earth, Sol

Oh, that's what it was all about ! I fixed the problem with an ugly symlink (I 
am ashamed).

Well, thanks for the tip !

Jonathan


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error with sys-apps/apmd

2006-05-19 Thread JimD
I am getting this error when trying to update apmd.

[EMAIL PROTECTED] $ sudo emerge -vb sys-apps/apmd
Calculating dependencies... done!
 Emerging (1 of 1) sys-apps/apmd-3.2.2_p5 to /
 checking ebuild checksums ;-)
 checking auxfile checksums ;-)
 checking miscfile checksums ;-)
 checking apmd_3.2.2.orig.tar.gz ;-)
 checking apmd_3.2.2-5.diff.gz ;-)
 Unpacking source...
 Unpacking apmd_3.2.2.orig.tar.gz to /var/tmp/portage/apmd-3.2.2_p5/work
 Unpacking apmd_3.2.2-5.diff.gz to /var/tmp/portage/apmd-3.2.2_p5/work
 * Applying apmd_3.2.2-5.diff ...


...

i686-pc-linux-gnu-g++:
/usr/lib/gcc/i686-pc-linux-gnu/3.4.4/../../../crti.o: No such file or
directory

...

The weird thing is that I have gcc 3.4.5 installed, not 3.4.4.  Is there
some system file that is telling libtool to use 3.4.4?

Jim
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
There's no place like 127.0.0.1
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
JimD
Central FL, USA, Earth, Sol
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with sys-apps/apmd

2006-05-19 Thread JimD
JimD wrote:

snip

 The weird thing is that I have gcc 3.4.5 installed, not 3.4.4.  Is there
 some system file that is telling libtool to use 3.4.4?
 
 Jim

FYI, I fixed this by re-emerging libtool.  How in the world did libtool
get out of whack?

Jim
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
There's no place like 127.0.0.1
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
JimD
Central FL, USA, Earth, Sol
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with sys-apps/apmd

2006-05-19 Thread Alan
re-emerge libtool and this should go away.  

If not a google search or in forums.gentoo.org has some more info.  

On Fri, May 19, 2006 at 06:48:52PM -0400, JimD wrote:
 I am getting this error when trying to update apmd.
 
 [EMAIL PROTECTED] $ sudo emerge -vb sys-apps/apmd
 Calculating dependencies... done!
  Emerging (1 of 1) sys-apps/apmd-3.2.2_p5 to /
  checking ebuild checksums ;-)
  checking auxfile checksums ;-)
  checking miscfile checksums ;-)
  checking apmd_3.2.2.orig.tar.gz ;-)
  checking apmd_3.2.2-5.diff.gz ;-)
  Unpacking source...
  Unpacking apmd_3.2.2.orig.tar.gz to /var/tmp/portage/apmd-3.2.2_p5/work
  Unpacking apmd_3.2.2-5.diff.gz to /var/tmp/portage/apmd-3.2.2_p5/work
  * Applying apmd_3.2.2-5.diff ...
 
 
 ...
 
 i686-pc-linux-gnu-g++:
 /usr/lib/gcc/i686-pc-linux-gnu/3.4.4/../../../crti.o: No such file or
 directory
 
 ...
 
 The weird thing is that I have gcc 3.4.5 installed, not 3.4.4.  Is there
 some system file that is telling libtool to use 3.4.4?
 
 Jim
 -- 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 There's no place like 127.0.0.1
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 JimD
 Central FL, USA, Earth, Sol
 -- 
 gentoo-user@gentoo.org mailing list

-- 
Alan [EMAIL PROTECTED] - http://arcterex.net

Backups are for people who don't pray. -- big Mike
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with sys-apps/apmd

2006-05-19 Thread Allan Gottlieb
At Fri, 19 May 2006 18:48:52 -0400 JimD [EMAIL PROTECTED] wrote:

 I am getting this error when trying to update apmd.

 [EMAIL PROTECTED] $ sudo emerge -vb sys-apps/apmd
 Calculating dependencies... done!
 Emerging (1 of 1) sys-apps/apmd-3.2.2_p5 to /
 checking ebuild checksums ;-)
 checking auxfile checksums ;-)
 checking miscfile checksums ;-)
 checking apmd_3.2.2.orig.tar.gz ;-)
 checking apmd_3.2.2-5.diff.gz ;-)
 Unpacking source...
 Unpacking apmd_3.2.2.orig.tar.gz to /var/tmp/portage/apmd-3.2.2_p5/work
 Unpacking apmd_3.2.2-5.diff.gz to /var/tmp/portage/apmd-3.2.2_p5/work
  * Applying apmd_3.2.2-5.diff ...


 ...

 i686-pc-linux-gnu-g++:
 /usr/lib/gcc/i686-pc-linux-gnu/3.4.4/../../../crti.o: No such file or
 directory

 ...

 The weird thing is that I have gcc 3.4.5 installed, not 3.4.4.  Is there
 some system file that is telling libtool to use 3.4.4?

I think you need to re-emerge libtool
and then run

fix_libtool_files.sh 3.4.4

allan
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with sys-apps/apmd

2006-05-19 Thread Jim
On Fri, 2006-05-19 at 19:31 -0400, Allan Gottlieb wrote:

 I think you need to re-emerge libtool
 and then run
 
 fix_libtool_files.sh 3.4.4
 
 allan

Ahh, thanks for the tip.  I never knew about fix_libtool_files.sh.

Jim
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 
There's no place like 127.0.0.1
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
JimD
Central FL, USA, Earth, Sol

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error

2006-02-24 Thread John Fawcett
I'm new to gentoo and I wonder if someone can point me in the right
direction to resovle the following kind of problem.

I have run emerge mysql and get the following output:
Calculating dependencies /!!! Cannot resolve a virtual package name to
an ebuild.
!!! This is a bug, please report it. (virtual/perl-Storable-2.13)

What should I do, is it really a bug, and who should it be reported to?
thanks
Johh
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-02-24 Thread Michael Smith

Hmm, I can't find any open bugs on this in bugs.gentoo.org, so I guess it's new.

You should register a new account at bugs.gentoo.org and report it. Before you 
do, make sure you run emerge --sync and see if the problem goes away.


John Fawcett wrote:

I'm new to gentoo and I wonder if someone can point me in the right
direction to resovle the following kind of problem.

I have run emerge mysql and get the following output:
Calculating dependencies /!!! Cannot resolve a virtual package name to
an ebuild.
!!! This is a bug, please report it. (virtual/perl-Storable-2.13)

What should I do, is it really a bug, and who should it be reported to?
thanks
Johh

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-02-24 Thread Jason Stubbs
On Friday 24 February 2006 23:56, John Fawcett wrote:
 Calculating dependencies /!!! Cannot resolve a virtual package name to
 an ebuild.
 !!! This is a bug, please report it. (virtual/perl-Storable-2.13)

Update portage.

--
Jason Stubbs
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-02-24 Thread Holly Bostick
Michael Smith schreef:
 John Fawcett wrote:

 I'm new to gentoo and I wonder if someone can point me in the right
 direction to resovle the following kind of problem.
 
 I have run emerge mysql and get the following output: Calculating 
 dependencies /!!! Cannot resolve a virtual package name to an 
 ebuild. !!! This is a bug, please report it. 
 (virtual/perl-Storable-2.13)
 
 What should I do, is it really a bug, and who should it be reported
  to? thanks

 Hmm, I can't find any open bugs on this in bugs.gentoo.org, so I 
 guess it's new.
 
 You should register a new account at bugs.gentoo.org and report it. 
 Before you do, make sure you run emerge --sync and see if the problem
  goes away.

It very well might:

eix perl-Storable
* virtual/perl-Storable
 Available versions:  2.07 2.13 2.15
 Installed:   none
 Homepage:http://www.gentoo.org/proj/en/perl/
 Description: Virtual for Storable


The point being, that there *is* no other ebuild *but*
virtual/perl-Storable, so the fact that it cannot be found/resolved
seems very likely to be a sync issue of some sort rather than a bug,
/per se/, especially since this is the middle available version.

What version of mysql are you attempting to install, John, and what ARCH
are you running (emerge info)?

Holly
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error

2006-02-24 Thread John Fawcett
Jason Stubbs wrote:
 On Friday 24 February 2006 23:56, John Fawcett wrote:
 Calculating dependencies /!!! Cannot resolve a virtual package name to
 an ebuild.
 !!! This is a bug, please report it. (virtual/perl-Storable-2.13)
 
 Update portage.
 
 --
 Jason Stubbs
I had already done an emerge --sync
Now as suggested I updated portage and then emerge mysql is compiling,
so the error has gone.
thanks,
John
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error with glibc and nptl

2005-07-14 Thread kristina clair
Hi,

I'm trying to update glibc with nptl and nptlonly USE flags, but I'm
getting an error.

The emerge command I'm running is:
emerge --newuse -buD glibc

The error is:
 Install glibc-2.3.4.20041102-r1 into
/var/tmp/portage/glibc-2.3.4.20041102-r1/image/ category sys-libs
/usr/portage/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild: line 845:
cd: 
/var/tmp/portage/glibc-2.3.4.20041102-r1/work/build-default-i386-pc-linux-gnu-nptl:
No such file or directory
 * Installing GLIBC with NPTL...
Makeconfig:84: x86/config.make: No such file or directory
Makerules:782: no file name for `include'
configure.in  configure.new
/bin/sh: configure.in: command not found
make: *** [configure] Error 127

Everything I've read about ntpl and glibc would seem to indicate that
I should just be able to emerge a new glibc without any problems.  Any
ideas?

Thanks,
Kristina

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with glibc and nptl

2005-07-14 Thread Zac Medico
kristina clair wrote:
 Hi,
 
 I'm trying to update glibc with nptl and nptlonly USE flags, but I'm
 getting an error.
 
 The emerge command I'm running is:
 emerge --newuse -buD glibc
 
 The error is:
 
Install glibc-2.3.4.20041102-r1 into
 
 /var/tmp/portage/glibc-2.3.4.20041102-r1/image/ category sys-libs
 /usr/portage/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild: line 845:
 cd: 
 /var/tmp/portage/glibc-2.3.4.20041102-r1/work/build-default-i386-pc-linux-gnu-nptl:
 No such file or directory
  * Installing GLIBC with NPTL...
 Makeconfig:84: x86/config.make: No such file or directory
 Makerules:782: no file name what ifor `include'
 configure.in  configure.new
 /bin/sh: configure.in: command not found
 make: *** [configure] Error 127
 
 Everything I've read about ntpl and glibc would seem to indicate that
 I should just be able to emerge a new glibc without any problems.  Any
 ideas?
 
 Thanks,
 Kristina
 

That default-i386-pc-linux-gnu-nptl looks suspicious because with nptl CHOST is 
restricted to i486|i586|i686-pc-linux-gnu.  What is your CHOST?

Zac
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with glibc and nptl

2005-07-14 Thread kristina clair
  I'm trying to update glibc with nptl and nptlonly USE flags, but I'm
  getting an error.
 
  The emerge command I'm running is:
  emerge --newuse -buD glibc
 
  The error is:
 
 Install glibc-2.3.4.20041102-r1 into
 
  /var/tmp/portage/glibc-2.3.4.20041102-r1/image/ category sys-libs
  /usr/portage/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild: line 845:
  cd: 
  /var/tmp/portage/glibc-2.3.4.20041102-r1/work/build-default-i386-pc-linux-gnu-nptl:
  No such file or directory
   * Installing GLIBC with NPTL...
  Makeconfig:84: x86/config.make: No such file or directory
  Makerules:782: no file name what ifor `include'
  configure.in  configure.new
  /bin/sh: configure.in: command not found
  make: *** [configure] Error 127
 
  Everything I've read about ntpl and glibc would seem to indicate that
  I should just be able to emerge a new glibc without any problems.  Any
  ideas?
 
  Thanks,
  Kristina
 
 
 That default-i386-pc-linux-gnu-nptl looks suspicious because with nptl CHOST 
 is restricted to i486|i586|i686-pc-linux-gnu.  What is your CHOST?

Hm!
CFLAGS=-O2 -mcpu=i686 -fomit-frame-pointer
CHOST=i386-pc-linux-gnu

I did not set this box up, so I'm not sure - is there any reason why
someone would set the CHOST to that?

I checked the /var/tmp/portage/glibc-2.3.4.20041102-r1/work directory,
and indeed there is no subdirectory
build-default-i386-pc-linux-gnu-nptl.  In fact, in the work directory,
there is only glibc-2.3.3.

Thanks,
Kristina

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error with glibc and nptl

2005-07-14 Thread Zac Medico
kristina clair wrote:
 
 Hm!
 CFLAGS=-O2 -mcpu=i686 -fomit-frame-pointer
 CHOST=i386-pc-linux-gnu
 
 I did not set this box up, so I'm not sure - is there any reason why
 someone would set the CHOST to that?
 
 I checked the /var/tmp/portage/glibc-2.3.4.20041102-r1/work directory,
 and indeed there is no subdirectory
 build-default-i386-pc-linux-gnu-nptl.  In fact, in the work directory,
 there is only glibc-2.3.3.
 
 Thanks,
 Kristina
 

Well, i386-pc-linux-gnu is the generic CHOST for the x86 arch so it could be 
for a number of reasons.  Maybe it was just a mistake.  You might be able to 
change the CHOST and emerge -e world but the normally recommended solution is 
to reinstall with a stage3 for your chosen subarch.

Zac
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error...

2005-07-14 Thread Karsten Gebbert

Hello list,

The described error, or failure, always occures when building the 59th 
app after emerge --newuse --emptytree system:


sys-apps/baselayout-1.11.12-r4

and again:

!!!Files listed in the manifest do not exist!
files/digest-baselayout-1.12.0-pre1
baselayout-1.12.0_pre1.ebuild

Why can it not get the sources and build it? Could this be a problem 
within make.conf's known mirrors or so?


KArsten
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error...

2005-07-14 Thread Zac Medico
Karsten Gebbert wrote:
 Hello list,
 
 The described error, or failure, always occures when building the 59th
 app after emerge --newuse --emptytree system:
 
sys-apps/baselayout-1.11.12-r4
 
 and again:
 
!!!Files listed in the manifest do not exist!
files/digest-baselayout-1.12.0-pre1
baselayout-1.12.0_pre1.ebuild
 
 Why can it not get the sources and build it? Could this be a problem
 within make.conf's known mirrors or so?
 
 KArsten

Unfortunately our portage tree rsync system does not handle concurrency well 
which occasionally results in an inconsistent portage snapshot.  If you emerge 
sync again that should fix it.  Alteratively, you can use ebuild path to 
ebuild digest to correct the inconsistency yourself.  See the ebuild(1) 
manpage for details.

Also, maybe you can skip the first 58 packages with emerge --resume.

Zac
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error...

2005-07-14 Thread Karsten Gebbert

Zac Medico wrote:


Karsten Gebbert wrote:
 


Hello list,

The described error, or failure, always occures when building the 59th
app after emerge --newuse --emptytree system:

   


sys-apps/baselayout-1.11.12-r4
 


and again:

   


!!!Files listed in the manifest do not exist!
files/digest-baselayout-1.12.0-pre1
baselayout-1.12.0_pre1.ebuild
 


Why can it not get the sources and build it? Could this be a problem
within make.conf's known mirrors or so?

KArsten
   



Unfortunately our portage tree rsync system does not handle concurrency well which occasionally 
results in an inconsistent portage snapshot.  If you emerge sync again that should fix it.  
Alteratively, you can use ebuild path to ebuild digest to correct the 
inconsistency yourself.  See the ebuild(1) manpage for details.

Also, maybe you can skip the first 58 packages with emerge --resume.

Zac
 

actually, that works fine! after emerge --sync and another emerge 
system, it seemed to have resumed at the respective point.


cheers,

KArsten
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-10 Thread Neil Bothwick
On Thu, 09 Jun 2005 23:43:16 +0100, Ognjen Bezanov wrote:

 Sorry I didnt get that reply. Either way to answer that question, no - i
 do not have the noexec option in my fstab (where the drive is
 automounted). This is the line in my fstab:
 
 /dev/hda6   /mnt/storage   reiserfs   notail,exec,user

The user option sets noexec by default, and it appears the options are
processed in order, so user turns off the exec you have just set. Switch
the order of the user and exec options and it should work.

Use mount2 on its own to see whether exec or noexec is actually set.


-- 
Neil Bothwick

I couldn't possibly be wrong. I use an error correcting modem!


pgpXH9HAJ93s0.pgp
Description: PGP signature


Re: [gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Aaron Walker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Ognjen Bezanov wrote:
 Hello,
 
 I set the portage_tmpdir in my make.conf file, and have tried emerging
 some packages. But there is a problem, because i keep getting errors no
 matter what I emerge, the error looks like this:
 
 ..etc/ebuild.sh  ./configure: /bin/sh: bad interpreter: Permission
 denied
 
 and yes, I am running as root. Anyone got any tips?
 
 P.S please CC me, i dont trust my email address
 

This is usually caused by having PORTAGE_TMPDIR on a partition that has been
mounted with the noexec flag.  For obvious reasons (I hope), you cannot have
PORTAGE_TMPDIR on a partition with the noexec flag set.  Either remove the
noexec flag or set PORTAGE_TMPDIR to a different location.

HTH
- --
YOW!!!  I am having fun!!!

Aaron Walker [EMAIL PROTECTED]
[ BSD | cron | forensics | shell-tools | commonbox | netmon | vim | web-apps ]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFCp/CcC3poscuANHARAqTKAKCG2GovAtF8lxjwaQpizzpanTzNHACdEFIc
VSKlNvUhmXXIcOyyGr8BNFg=
=Yqdb
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Ognjen Bezanov
Hello,

I set the portage_tmpdir in my make.conf file, and have tried emerging
some packages. But there is a problem, because i keep getting errors no
matter what I emerge, the error looks like this:

..etc/ebuild.sh  ./configure: /bin/sh: bad interpreter: Permission
denied

and yes, I am running as root. Anyone got any tips?

P.S please CC me, i dont trust my email address


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Ognjen Bezanov
Zac Medico wrote:

--- Ognjen Bezanov [EMAIL PROTECTED] wrote:

  

Hello,

I set the portage_tmpdir in my make.conf file, and
have tried emerging
some packages. But there is a problem, because i
keep getting errors no
matter what I emerge, the error looks like this:

..etc/ebuild.sh  ./configure: /bin/sh: bad
interpreter: Permission
denied

and yes, I am running as root. Anyone got any tips?

P.S please CC me, i dont trust my email address




Hi Ognjen,

Somebody already said that the problem must be that
you have the noexec option on that partition because
of the way it is mounted.  See the manpage for mount.

Zac


   
__ 
Discover Yahoo! 
Use Yahoo! to plan a weekend, have fun online and more. Check it out! 
http://discover.yahoo.com/

  

Sorry I didnt get that reply. Either way to answer that question, no - i
do not have the noexec option in my fstab (where the drive is
automounted). This is the line in my fstab:

/dev/hda6   /mnt/storage   reiserfs   notail,exec,user


What could the problem be? It is strange because if I type:

mount /dev/hda6 /mnt/storage -o exec

it works.

What do I need to add to my fstab to get it working normally?

thanks.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Holly Bostick
Ognjen Bezanov schreef:
 Zac Medico wrote:
 
 
--- Ognjen Bezanov [EMAIL PROTECTED] wrote:

 


Hello,

I set the portage_tmpdir in my make.conf file, and
have tried emerging
some packages. But there is a problem, because i
keep getting errors no
matter what I emerge, the error looks like this:

..etc/ebuild.sh  ./configure: /bin/sh: bad
interpreter: Permission
denied

and yes, I am running as root. Anyone got any tips?

P.S please CC me, i dont trust my email address

   


Hi Ognjen,

Somebody already said that the problem must be that
you have the noexec option on that partition because
of the way it is mounted.  See the manpage for mount.

 

 
 Sorry I didnt get that reply. Either way to answer that question, no - i
 do not have the noexec option in my fstab (where the drive is
 automounted). This is the line in my fstab:
 
 /dev/hda6   /mnt/storage   reiserfs   notail,exec,user
 
 
 What could the problem be? It is strange because if I type:
 
 mount /dev/hda6 /mnt/storage -o exec
 
 it works.
 
 What do I need to add to my fstab to get it working normally?
 
 thanks.
 

Maybe nothing-- what are the permissions of the /mnt/storage *folder*?
It doesn't matter much whether the files inside the folder are
executeable if the folder itself does not allow files to be executed
from within it.

Hope this helps.
Holly
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Zac Medico


--- Ognjen Bezanov [EMAIL PROTECTED] wrote:

 Sorry I didnt get that reply. Either way to answer
 that question, no - i
 do not have the noexec option in my fstab (where the
 drive is
 automounted). This is the line in my fstab:
 
 /dev/hda6   /mnt/storage   reiserfs  
 notail,exec,user
 
 
 What could the problem be? It is strange because if
 I type:
 
 mount /dev/hda6 /mnt/storage -o exec
 
 it works.
 
 What do I need to add to my fstab to get it working
 normally?
 

In the mount manpage it says the user option implies
noexec.  You need to explicitly override it with the
exec option.

Also note that if you miss a message you can still
read them in the archives:

http://dir.gmane.org/gmane.linux.gentoo.user
http://www.mail-archive.com/gentoo-user%40lists.gentoo.org/
http://marc.10east.com/?l=gentoo-userr=1w=2

Zac





__ 
Discover Yahoo! 
Stay in touch with email, IM, photo sharing and more. Check it out! 
http://discover.yahoo.com/stayintouch.html
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-09 Thread Richard Fish
Holly Bostick wrote:

Sorry I didnt get that reply. Either way to answer that question, no - i
do not have the noexec option in my fstab (where the drive is
automounted). This is the line in my fstab:

/dev/hda6   /mnt/storage   reiserfs   notail,exec,user


What could the problem be? It is strange because if I type:

mount /dev/hda6 /mnt/storage -o exec

it works.

What do I need to add to my fstab to get it working normally?

thanks.




Maybe nothing-- what are the permissions of the /mnt/storage *folder*?
It doesn't matter much whether the files inside the folder are
executeable if the folder itself does not allow files to be executed
from within it.

Hope this helps.
Holly
  


To expand on that just a little, portage runs as user portage, so that
is the user that needs permissions to create and execute files.  Also
see my previous reply in the archives.

And please, fix your mail account.

-Richard

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge error Bad interpretor

2005-06-08 Thread Ognjen Bezanov
Hello,

I set the portage_tmpdir in my make.conf file, and have tried emerging
some packages. But there is a problem, because i keep getting errors no
matter what I emerge, the error looks like this:

..etc/ebuild.sh  ./configure: /bin/sh: bad interpreter: Permission
denied

and yes, I am running as root. Anyone got any tips?

P.S please CC me, i dont trust my email address

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge error Bad interpretor

2005-06-08 Thread Richard Fish
Ognjen Bezanov wrote:

Hello,

I set the portage_tmpdir in my make.conf file, and have tried emerging
some packages. But there is a problem, because i keep getting errors no
matter what I emerge, the error looks like this:

..etc/ebuild.sh  ./configure: /bin/sh: bad interpreter: Permission
denied

and yes, I am running as root. Anyone got any tips?
  


What are the permissions and ownership of the directory you are using
for portage tmpdir.  The defaults for /var/tmp are:

carcharias cdboot # ls -ld /var/tmp
drwxrwxrwt  8 root root 4096 Jun  8 18:09 /var/tmp

Note that portage runs as user 'portage' while compiling stuff, so I am
guessing the chosen directory will need to be writable by portage.

P.S please CC me, i dont trust my email address

  


Ok, stupid question.  If you don't trust your email address, how is
cc'ing your _email address_ supposed to help?

-Richard

-- 
gentoo-user@gentoo.org mailing list