Re: [gentoo-user] emerge problem with e100

2005-01-23 Thread Brett I. Holcomb
On my system with  an e100 I built it as a module during the kernel build 
and then load it at startup.  Did you try that?


On Sun, 23 Jan 2005, Richard Foltyn wrote:

> On Sun, 2005-01-23 at 00:21 +0100, pat wrote:
>> Hi All,
>>
>> I've setup new system and compile the kernel (2.6.10-r1) and I want to 
>> install
>> network card. I did "emerge e100" after kernel compilation, but I have
>> received error (in attachement). Did I something wrong ???
>
> Maybe you don't really need the e100 package to get your NIC running.
> The necessary module should be part of every kernel and works without
> problems. I don't even have the e100 package installed.
>
> My NIC:
> Ethernet controller: Intel Corp. 82801CAM (ICH3) PRO/100 VE (LOM)
> Ethernet Controller (rev 42)
>
> Kernel Config:
> CONFIG_E100=m
> CONFIG_E100_NAPI=y
>
> Hope this helps,
> richard
>

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge problem with e100

2005-01-23 Thread Richard Foltyn
On Sun, 2005-01-23 at 00:21 +0100, pat wrote:
> Hi All,
> 
> I've setup new system and compile the kernel (2.6.10-r1) and I want to install
> network card. I did "emerge e100" after kernel compilation, but I have
> received error (in attachement). Did I something wrong ???

Maybe you don't really need the e100 package to get your NIC running.
The necessary module should be part of every kernel and works without
problems. I don't even have the e100 package installed.

My NIC:
Ethernet controller: Intel Corp. 82801CAM (ICH3) PRO/100 VE (LOM)
Ethernet Controller (rev 42)

Kernel Config:
CONFIG_E100=m
CONFIG_E100_NAPI=y

Hope this helps,
richard


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] emerge problem with e100

2005-01-22 Thread A. Khattri
On Sun, 23 Jan 2005, pat wrote:

> I've setup new system and compile the kernel (2.6.10-r1) and I want to install
> network card. I did "emerge e100" after kernel compilation, but I have
> received error (in attachement). Did I something wrong ???

See warning at the top:

>Makefile:174: ***
>Makefile:175: *** Warning: kernel source version (2.6.10)
>Makefile:176: *** does not match running kernel  (2.6.9-gentoo-r1)
>Makefile:177: *** Continuing with build,
>Makefile:178: *** resulting driver may not be what you want
>Makefile:179: ***
>Makefile:197: ***
>Makefile:202: *** Warning: kernel source configuration (UP)
>Makefile:203: *** does not match running kernel (SMP)
>Makefile:205: *** Continuing with build,
>Makefile:206: *** resulting driver may not be what you want
>Makefile:207: ***

You are upgrading kernels so you need to do some more work.

Does /usr/src/linux point to /usr/src/linux-2.6.10 ???

Assuming you made the link, then try going into /usr/src/linux-2.6.10 and
run "make menuconfig" so it builds a config file (just run then exit
again). Then copy the config for your existing kernel to the new kernel:

cp /usr/src/linux-2.6.9-gentoo-r1/.config /usr/src/linux-2.6.10

Then run "make oldconfig" to update your existing config to the new
kernel.

Then you can do:

make && make modules & make modules_install

And finally emerge the e100 package too.


-- 

--
gentoo-user@gentoo.org mailing list



[gentoo-user] emerge problem with e100

2005-01-22 Thread pat
Hi All,

I've setup new system and compile the kernel (2.6.10-r1) and I want to install
network card. I did "emerge e100" after kernel compilation, but I have
received error (in attachement). Did I something wrong ???

Thanks

 Pat


emerge.e100
Description: Binary data
--
gentoo-user@gentoo.org mailing list

Re: [gentoo-user] emerge problem

2005-01-16 Thread Bastian Balthazar Bux
David Corbin ha scritto:
On Sunday 16 January 2005 03:35 pm, Alec wrote:
 

2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I get
the same error.
 

   If you actually read the above, you will see:
!!! One of the following masked packages is required to complete your
request: - media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)
   It's masked by the ~x86 keyword, you will need to keyword it in
/etc/portage/package.keywords.
   

Actually, I did read it (several times before I figured it out).  Correct me 
if I'm wrong, ~x86 is "experimental" or "developer", right?  How about an 
emerge option that says "ignore all experimental" packages?

David
 

It already do, supposed your architecture is "arch", a package can drop 
in three categories:
1) it's  "keyworded" "arch"
2) it's masked "~arch"
3) ?arch is completely absent.
this is because you can choose to have experimental or stable packages 
installed.

emerge is smart enough to know the dependancies a packages *need* to be 
compiled, and smart enough to choose the package you prefer:
so if the package is not keyworded for "arch" you cannot install it (not 
completely true but you need to know how to do).

if you don't want experimental software portage  will choose  *only* 
stable  ones.
 if more version of a packages exists (i.e. there are different ebuilds 
for it)
   it will search for one that is marked stable for "arch".
   if it can't find one you have finished your emerge experience.

--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] emerge problem

2005-01-16 Thread Alec
David Corbin wrote:
On Sunday 16 January 2005 03:35 pm, Alec wrote:
 

2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I get
the same error.
 

   If you actually read the above, you will see:
!!! One of the following masked packages is required to complete your
request: - media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)
   It's masked by the ~x86 keyword, you will need to keyword it in
/etc/portage/package.keywords.
   

Actually, I did read it (several times before I figured it out).  Correct me 
if I'm wrong, ~x86 is "experimental" or "developer", right?  How about an 
emerge option that says "ignore all experimental" packages?

 

   There is no stable version of that package, and in both cases you 
are explictly asking portage to 'emerge arabeyes-fonts' ( although in 
the first case in a roundabout way ).  If you explicitly ask it to 
install something it shouldn't ignore the package because it's masked 
and no stable version is available.  It should tell you it's masked and 
that it can't isntall it, which it does. 

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


--
Alec Warner
Spartasoft Secretary ( spartasoft.msu.edu )
Junior Computer Science
Michigan State University
[EMAIL PROTECTED]
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] emerge problem

2005-01-16 Thread David Corbin
On Sunday 16 January 2005 03:35 pm, Alec wrote:
>
> >2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I get
> > the same error.
>
> If you actually read the above, you will see:
>
> !!! One of the following masked packages is required to complete your
> request: - media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)
>
> It's masked by the ~x86 keyword, you will need to keyword it in
> /etc/portage/package.keywords.
>

Actually, I did read it (several times before I figured it out).  Correct me 
if I'm wrong, ~x86 is "experimental" or "developer", right?  How about an 
emerge option that says "ignore all experimental" packages?

David

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge problem

2005-01-16 Thread Alec
David Corbin wrote:
[EMAIL PROTECTED] /usr/portage/media-fonts]# emerge -p *
These are the packages that I would merge, in order:
Calculating dependencies \
!!! All ebuilds that could satisfy "arabeyes-fonts" have been masked.
!!! One of the following masked packages is required to complete your request:
- media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)
For more information, see MASKED PACKAGES section in the emerge man page or
section 2.2 "Software Availability" in the Gentoo Handbook.
---end paste---
1) Fine.  one package is masked.  So what? Why can't it tell me everything 
else it would do?
 

   I believe this might be included in the next big upgrade of portage.
2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I get the 
same error.
 

   If you actually read the above, you will see:
!!! One of the following masked packages is required to complete your request:
- media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)
   It's masked by the ~x86 keyword, you will need to keyword it in 
/etc/portage/package.keywords.

3) Is there a better way to see which fonts I've installed?
 

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


--
Alec Warner
Spartasoft Secretary ( spartasoft.msu.edu )
Junior Computer Science
Michigan State University
[EMAIL PROTECTED]
--
gentoo-user@gentoo.org mailing list


Re: [gentoo-user] emerge problem

2005-01-16 Thread Ciaran McCreesh
On Sun, 16 Jan 2005 14:12:43 -0500 David Corbin
<[EMAIL PROTECTED]> wrote:
| 1) Fine.  one package is masked.  So what? Why can't it tell me
| everything else it would do?

Because portage needs to be able to build up a full dependency tree for
*everything* you specify on the commandline. "emerge foo bar" is not the
same as "emerge foo && emerge bar".

| 2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I
| get the same error.

emerge --pretend --verbose

| 3) Is there a better way to see which fonts I've installed?

equery list -i 'media-fonts/'

-- 
Ciaran McCreesh : Gentoo Developer (Vim, Fluxbox, shell tools)
Mail: ciaranm at gentoo.org
Web : http://dev.gentoo.org/~ciaranm



pgpvmEP3qQR2I.pgp
Description: PGP signature


[gentoo-user] emerge problem

2005-01-16 Thread David Corbin
[EMAIL PROTECTED] /usr/portage/media-fonts]# emerge -p *

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

Calculating dependencies \
!!! All ebuilds that could satisfy "arabeyes-fonts" have been masked.
!!! One of the following masked packages is required to complete your request:
- media-fonts/arabeyes-fonts-1.1 (masked by: ~x86 keyword)

For more information, see MASKED PACKAGES section in the emerge man page or
section 2.2 "Software Availability" in the Gentoo Handbook.
---end paste---

1) Fine.  one package is masked.  So what? Why can't it tell me everything 
else it would do?

2) I've tried to "emerge arabeyes-fonts" to see what's masking it.  I get the 
same error.

3) Is there a better way to see which fonts I've installed?

David

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] emerge problem

2004-01-29 Thread gabriel
On January 29, 2004 05:19 pm, renna wrote:
> bash-2.05b# ACCEPT_KEYWORDS="~x86" emerge -p world
>
> These are the packages that I would merge, in order:
>
> Calculating world dependencies \
> emerge: there are no masked or unmasked ebuilds to satisfy
> ">=sys-devel/libperl-5.8.3".
>
> !!! Problem with ebuild dev-lang/perl-5.8.3
> !!! Possibly a DEPEND/*DEPEND problem.
>
> !!! Depgraph creation failed.

issues like this often go away if you wait 'till tomorrow and do your emerge 
sync then.  give it a day, and if the problem's still there, then you know 
you have issues ;-)

-- 
hate is too important of an emotion to waste on someone you don't like.
  - malcolm x


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2004-01-29 Thread renna
On Thursday 29 January 2004 18:32, Itamar Ravid wrote:
> It's because you're mixing ~x86 packages with an
> x86 enviroment. Try ACCEPT_KEYWORDS="~x86" emerge -p world.
>
> On 20:26 Wed 28 Jan , renna wrote:
> > i get this error with emerge, any ideas?
> >
> > bash-2.05b# emerge -p world
> >
> > These are the packages that I would merge, in order:
> >
> > Calculating world dependencies /
> > emerge: there are no masked or unmasked ebuilds to satisfy
> > ">=sys-devel/libperl-5.8.3".
> >
> > !!! Problem with ebuild dev-lang/perl-5.8.3
> > !!! Possibly a DEPEND/*DEPEND problem.
> >
> > !!! Depgraph creation failed.
> >
> >
> >
> > rb
> >
> >
> >
> > --
> > [EMAIL PROTECTED] mailing list

 I have ACCEPT_KEYWORDS="~x86" in my make.conf too, so it hasn't changed the 
error.

bash-2.05b# ACCEPT_KEYWORDS="~x86" emerge -p world

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

Calculating world dependencies \
emerge: there are no masked or unmasked ebuilds to satisfy 
">=sys-devel/libperl-5.8.3".

!!! Problem with ebuild dev-lang/perl-5.8.3
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.


-- 
Dubitare
Disobbedire
Disertare


Renato Budinich
[EMAIL PROTECTED]
[EMAIL PROTECTED]



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2004-01-29 Thread Itamar Ravid
It's because you're mixing ~x86 packages with an
x86 enviroment. Try ACCEPT_KEYWORDS="~x86" emerge -p world.

On 20:26 Wed 28 Jan , renna wrote:
> i get this error with emerge, any ideas?
> 
> bash-2.05b# emerge -p world
> 
> These are the packages that I would merge, in order:
> 
> Calculating world dependencies /
> emerge: there are no masked or unmasked ebuilds to satisfy 
> ">=sys-devel/libperl-5.8.3".
> 
> !!! Problem with ebuild dev-lang/perl-5.8.3
> !!! Possibly a DEPEND/*DEPEND problem.
> 
> !!! Depgraph creation failed.
> 
> 
> 
> rb
> 
> 
> 
> --
> [EMAIL PROTECTED] mailing list

-- 
Regards, Itamar Ravid
[EMAIL PROTECTED]


pgp0.pgp
Description: PGP signature


[gentoo-user] emerge problem

2004-01-29 Thread renna
i get this error with emerge, any ideas?

bash-2.05b# emerge -p world

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

Calculating world dependencies /
emerge: there are no masked or unmasked ebuilds to satisfy 
">=sys-devel/libperl-5.8.3".

!!! Problem with ebuild dev-lang/perl-5.8.3
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.



rb



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem

2004-01-14 Thread Thomas Degris
Thanks... it works. Gentoo is great.

Thomas

Ciaran McCreesh wrote:

On Thu, 15 Jan 2004 01:17:26 +0100 Thomas Degris <[EMAIL PROTECTED]>
wrote:
| Do I have to specify to use this config file somewhere ?
No, you need to use a newer version of portage :) It's not in the stable
release yet unfortunately.
sys-apps/portage-2.0.50_pre16 will definitely work.

 



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Ciaran McCreesh
On Thu, 15 Jan 2004 01:17:26 +0100 Thomas Degris <[EMAIL PROTECTED]>
wrote:
| Do I have to specify to use this config file somewhere ?

No, you need to use a newer version of portage :) It's not in the stable
release yet unfortunately.

sys-apps/portage-2.0.50_pre16 will definitely work.

-- 
Ciaran McCreesh
Mail:ciaranm at gentoo.org
Web: http://dev.gentoo.org/~ciaranm



pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Thomas Degris
Adding :
sys-kernel/gaming-sources~x86
virtual/linux-sources  ~x86
media-sound/alsa-driver~x86
to /etc/portage/package.keywords does not change anything for emerge
-UupD world
I still got:
These are the packages that I would merge, in order:
Calculating world dependencies |
!!! all ebuilds that could satisfy "virtual/linux-sources" have been masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" [ebuild])
!!! Problem with ebuild kde-base/kdeedu-3.1.4
!!! Possibly a DEPEND/*DEPEND problem.
!!! Depgraph creation failed.

Do I have to specify to use this config file somewhere ?

Thanks for your help,

Thomas

Ciaran McCreesh wrote:

On Thu, 15 Jan 2004 00:28:35 +0100 Thomas Degris <[EMAIL PROTECTED]>
wrote:
| But then, how can I update all the package of my gentoo without
| upgrading to the latest unstable release if I have to use
| ACCEPT_KEYWORDS to be able to run 'emerge -UuD world' ?
Sounds like you need /etc/portage/package.keywords, which is a new
feature in the .50. version of portage. I have the following in mine:
sys-apps/portage ~sparc
app-portage/gentoolkit   ~sparc
app-portage/gentoolkit-dev   ~sparc
x11-wm/fluxbox   ~sparc
sys-kernel/sparc-dev-sources ~sparc
x11-base/xfree   ~sparc
 



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Thomas Degris
I think yes... I have :
# emerge -p gentoo-sources
These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild  N] sys-kernel/gentoo-sources-2.4.22-r5 

I think the problem was about the kdeedu package...

Thomas

Diego Zamboni wrote:


But then, how can I update all the package of my gentoo without
upgrading to the latest unstable release if I have to use
ACCEPT_KEYWORDS to be able to run 'emerge -UuD world' ?


Hm.. from your original post:

!!! all ebuilds that could satisfy "virtual/linux-sources" have been 
masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" 
[ebuild])

I don't have my gentoo box handy at the moment, but I would assume 
that you need to install one of the -sources packages (gentoo-sources, 
gentoo-dev-sources, etc.) to satisfy the virtual/linux-sources 
dependency. Do you have any of them?

--Diego

--
[EMAIL PROTECTED] mailing list



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Ciaran McCreesh
On Thu, 15 Jan 2004 00:28:35 +0100 Thomas Degris <[EMAIL PROTECTED]>
wrote:
| But then, how can I update all the package of my gentoo without
| upgrading to the latest unstable release if I have to use
| ACCEPT_KEYWORDS to be able to run 'emerge -UuD world' ?

Sounds like you need /etc/portage/package.keywords, which is a new
feature in the .50. version of portage. I have the following in mine:

sys-apps/portage ~sparc
app-portage/gentoolkit   ~sparc
app-portage/gentoolkit-dev   ~sparc
x11-wm/fluxbox   ~sparc
sys-kernel/sparc-dev-sources ~sparc
x11-base/xfree   ~sparc

-- 
Ciaran McCreesh
Mail:ciaranm at gentoo.org
Web: http://dev.gentoo.org/~ciaranm



pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Diego Zamboni

But then, how can I update all the package of my gentoo without
upgrading to the latest unstable release if I have to use
ACCEPT_KEYWORDS to be able to run 'emerge -UuD world' ?
Hm.. from your original post:

!!! all ebuilds that could satisfy "virtual/linux-sources" have been 
masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" 
[ebuild])
I don't have my gentoo box handy at the moment, but I would assume that 
you need to install one of the -sources packages (gentoo-sources, 
gentoo-dev-sources, etc.) to satisfy the virtual/linux-sources 
dependency. Do you have any of them?

--Diego

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Thomas Degris
But then, how can I update all the package of my gentoo without
upgrading to the latest unstable release if I have to use
ACCEPT_KEYWORDS to be able to run 'emerge -UuD world' ?
Thomas

Diego Zamboni wrote:

I think I only have few package that needs the x86 keyword and it 
would be pitty to upgrade everything in a unstable state because of 
these few packages...


Exactly - you only use ACCEPT_KEYWORDS="~x86" for installing/upgrading 
the packages that you want to have in their unstable versions. In bash 
(root's default shell) the easiest way of doing it is to specify the 
variable in the same command line as the command:

# ACCEPT_KEYWORDS="~x86" emerge -v package

In this way, the variable doesn't become permanently set. Of course, 
if you use it with "emerge world", then you _will_ update everything 
to the latest unstable release.

--Diego

--
[EMAIL PROTECTED] mailing list



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Diego Zamboni
I think I only have few package that needs the x86 keyword and it 
would be pitty to upgrade everything in a unstable state because of 
these few packages...
Exactly - you only use ACCEPT_KEYWORDS="~x86" for installing/upgrading 
the packages that you want to have in their unstable versions. In bash 
(root's default shell) the easiest way of doing it is to specify the 
variable in the same command line as the command:

# ACCEPT_KEYWORDS="~x86" emerge -v package

In this way, the variable doesn't become permanently set. Of course, if 
you use it with "emerge world", then you _will_ update everything to 
the latest unstable release.

--Diego

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-14 Thread Thomas Degris
Hello,

thanks for your quick answer, the Depgraph seems to be created with no 
troubles... but then if I use the same emerge command to upgrade my 
Gentoo, does that mean that all my package will become at the very last 
buggy version ?

I think I only have few package that needs the x86 keyword and it would 
be pitty to upgrade everything in a unstable state because of these few 
packages...

Thomas

Deling Ren wrote:

It seems that you are trying to emerge a "~x86" ebuild? Try exporting env
variable ACCEPT_KEYWORDS as "~x86".
Regards.
Deling
On Wed, 14 Jan 2004, Thomas Degris wrote:

 

Hello,

what should I do with this kind of error ?

# emerge -uUDpv world

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

Calculating world dependencies |
!!! all ebuilds that could satisfy "virtual/linux-sources" have been masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" [ebuild])
!!! Problem with ebuild kde-base/kdeedu-3.1.4
!!! Possibly a DEPEND/*DEPEND problem.
!!! Depgraph creation failed.

Thanks,

Thomas



--
[EMAIL PROTECTED] mailing list
   

--
[EMAIL PROTECTED] mailing list
 



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2004-01-13 Thread Deling Ren
It seems that you are trying to emerge a "~x86" ebuild? Try exporting env
variable ACCEPT_KEYWORDS as "~x86".

Regards.
Deling

On Wed, 14 Jan 2004, Thomas Degris wrote:

> Hello,
>
> what should I do with this kind of error ?
>
> # emerge -uUDpv world
>
> These are the packages that I would merge, in order:
>
> Calculating world dependencies |
> !!! all ebuilds that could satisfy "virtual/linux-sources" have been masked.
> !!!(dependency required by "media-sound/alsa-driver-0.9.8" [ebuild])
>
> !!! Problem with ebuild kde-base/kdeedu-3.1.4
> !!! Possibly a DEPEND/*DEPEND problem.
>
> !!! Depgraph creation failed.
>
> Thanks,
>
> Thomas
>
>
>
>
> --
> [EMAIL PROTECTED] mailing list
>

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Emerge problem

2004-01-13 Thread Thomas Degris
Hello,

what should I do with this kind of error ?

# emerge -uUDpv world

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

Calculating world dependencies |
!!! all ebuilds that could satisfy "virtual/linux-sources" have been masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" [ebuild])
!!! Problem with ebuild kde-base/kdeedu-3.1.4
!!! Possibly a DEPEND/*DEPEND problem.
!!! Depgraph creation failed.

Thanks,

Thomas



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] emerge problem

2003-12-04 Thread Marius Mauch
On 12/03/03  Michael Wenk wrote:

> I get the following: 
> 
> # emerge -UDup world
> 
> These are the packages that I would merge, in order:
> 
> Calculating world dependencies /
> !!! all ebuilds that could satisfy "virtual/linux-sources" have been
> masked.!!!(dependency required by "media-sound/alsa-driver-0.9.8"
> [ebuild])
> 
> !!! Problem with ebuild app-cdr/arson-0.9.7-r3
> !!! Possibly a DEPEND/*DEPEND problem.
> 
> !!! Depgraph creation failed.
> 
> 
> USE line from /etc/make.conf :
> USE="mysql"
> 
> What do I do to correct this?  

you probably use gaming-sources or ac-sources at the moment, both are
masked (ac-sources because it's unmaintained, don't know about
gaming-sources). Your best chance is to switch to another kernel.

Marius

-- 
Public Key at http://www.genone.de/info/gpg-key.pub

In the beginning, there was nothing. And God said, 'Let there be
Light.' And there was still nothing, but you could see a bit better.


pgp0.pgp
Description: PGP signature


[gentoo-user] emerge problem

2003-12-03 Thread Michael Wenk
I get the following: 

# emerge -UDup world

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

Calculating world dependencies /
!!! all ebuilds that could satisfy "virtual/linux-sources" have been masked.
!!!(dependency required by "media-sound/alsa-driver-0.9.8" [ebuild])

!!! Problem with ebuild app-cdr/arson-0.9.7-r3
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.


USE line from /etc/make.conf :
USE="mysql"

What do I do to correct this?  

thanks all,
mike

-- 
[EMAIL PROTECTED]
Mike Wenk


--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge problem with elfutils and libelf

2003-11-14 Thread Chris Bare
Calculating world dependencies ...done!
[blocks B ] dev-libs/elfutils (from pkg dev-libs/libelf-0.8.2)
[ebuild  N] dev-libs/libelf-0.8.2  +nls 

I saw some people mentioning problems libelf on the forums, but not this
one specifically. Has elfutils been replaced by libelf? Can I safely
remove dev-libs/elfutils?
Is that the right thing to do?

I still have trouble reading the "blocks" message. I'm interpreting the
above as:

elfutils blocks libelf from being installed

Is that correct? if so, the "from pkg" part is just confusing to me.
-- 
Chris Bare
[EMAIL PROTECTED]

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem

2003-11-04 Thread Mike Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 04 November 2003 04:07, Belinus wrote:
> It's working fine here. Maybe you have an rsync mirror in
> /etc/make.conf? If so, remove it - then try again. :-)

> I commented out the GENTOO_MIRRORS line and up'd the retries to 25 in
> make.conf but I still get the same error.

GENTOO_MIRRORS is where portage will download source tarballs from
SYNC is where portage will sync from (the default is just fine)

- -- 
Mike Williams
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/p4WCInuLMrk7bIwRAhyKAKCObH7iWv4uiwMBEHpDyt+f3IWSPQCfRd2S
LRSKGkqYEtBcgPb2cVsuz/M=
=Xyqs
-END PGP SIGNATURE-

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Emerge problem

2003-11-03 Thread Belinus
I did do the mirrorselect both auto and interactive and I selected sites I
knew to be working. Still did not work.

So I got PO'd and formated the partition again and redid the untar'ing of
stage 1, skipped the mirrorselect part and it works. It's currently syncing
right now.

Thanks for the suggestions.

Jon

-Original Message-
From: Jonathan Nichols [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:43 AM
To: [EMAIL PROTECTED]
Subject: Re: [gentoo-user] Emerge problem


Does mirrorselect give you back anything?

That's odd. I haven't had trouble with emerge...


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem

2003-11-03 Thread Jonathan Nichols
Belinus wrote:

I commented out the GENTOO_MIRRORS line and up'd the retries to 25 in
make.conf but I still get the same error.
Jon

Does mirrorselect give you back anything?

That's odd. I haven't had trouble with emerge...

--
[EMAIL PROTECTED] mailing list


RE: [gentoo-user] Emerge problem

2003-11-03 Thread Belinus
I commented out the GENTOO_MIRRORS line and up'd the retries to 25 in
make.conf but I still get the same error.

Jon

-Original Message-
From: Jonathan Nichols [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, November 04, 2003 12:02 AM
To: [EMAIL PROTECTED]
Subject: Re: [gentoo-user] Emerge problem

It's working fine here. Maybe you have an rsync mirror in 
/etc/make.conf? If so, remove it - then try again. :-)

-Jonathan


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem

2003-11-03 Thread Jonathan Nichols
Belinus wrote:
Is anyone having resolve errors for emerge tonight? I'm trying to "emerge
sync" and I am getting 'Temproary failure in name resolution' errors but
when I ping the IP from my Windows workstation it resolves just fine.
/etc/resolve.conf is correct as well

Any suggestions?

It's working fine here. Maybe you have an rsync mirror in 
/etc/make.conf? If so, remove it - then try again. :-)

-Jonathan

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Emerge problem

2003-11-03 Thread Belinus
Is anyone having resolve errors for emerge tonight? I'm trying to "emerge
sync" and I am getting 'Temproary failure in name resolution' errors but
when I ping the IP from my Windows workstation it resolves just fine.

/etc/resolve.conf is correct as well

Any suggestions?

Jon


--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge problem in 1.4 upgrade

2003-08-23 Thread Ian Truelsen
In the process of upgrading to 1.4, the emerge of lcms died. When I try
to resume, I get the following:

minion etc # emerge --resume
Traceback (most recent call last):
  File "/usr/bin/emerge", line 13, in ?
import portage
ValueError: bad marshal data

This also happens when I try to restart entirely with emerge world
-eDvp.

Any ideas on how badly this machine is fscked? Can I recover this?

-- 
Ian Truelsen
Email: [EMAIL PROTECTED]
AIM: ihtruelsen
Homepage: http://www.ihtruelsen.dyndns.org

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2003-07-15 Thread Spider
begin  quote
On Mon, 14 Jul 2003 12:10:19 +0300 (EEST)
Andrei Ivanov <[EMAIL PROTECTED]> wrote:

> What can I do ?
> 


update (the sourcecode of )  kvim, i think its that which ties vim to
the old version.



//Spider


-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] emerge problem

2003-07-14 Thread Dhruba Bandopadhyay
Andrei Ivanov wrote:
emerge -uDp world

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

Calculating world dependencies ...done!
[ebuildU ] app-editors/vim-core-6.2-r1 [6.1-r5]
emerge -uD world

world updated...

emerge -uDp world

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

Calculating world dependencies ...done!
[ebuildUD] app-editors/vim-core-6.1-r5 [6.2-r1]
What can I do ?
Three options.

(1) File a bug on bugs.gentoo.org.
(2) Upgrade vim to newer version and inject a stub for older one.
(2) Do nothing and wait for problem to be resolved in time.
--
[EMAIL PROTECTED] mailing list


[gentoo-user] emerge problem

2003-07-14 Thread Andrei Ivanov

emerge -uDp world

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

Calculating world dependencies ...done!
[ebuildU ] app-editors/vim-core-6.2-r1 [6.1-r5]

emerge -uD world

world updated...

emerge -uDp world

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

Calculating world dependencies ...done!
[ebuildUD] app-editors/vim-core-6.1-r5 [6.2-r1]


What can I do ?


--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Emerge problem with xfree

2003-06-19 Thread Condon Thomas A KPWA

Florian,

>>> What kind of CPU do you have?
>> 
>> Celeron (Mendocino) 333MHz
>> 
>>> And what are your CFLAGS in make.conf?
>> 
>> Oops.  Nothing was set.  Bet that isn't going to be a good sign, is
>> it? I suspect it should be: CFLAGS="-march=pentium3 -03 -pipe"
>> 
> 
> A Celeron Mendicio is a pentium2-class cpu so you have to use
> something like that:
> 
> CFLAGS="-march=pentium2 -O3 -pipe"
> 
> HTH
>   Florian Huber

I suspect it will.  Thanks.


In Harmony's Way, and In A Chord,

Tom  :-})

Thomas A. Condon
Barbershop Bass Singer
Registered Linux User #154358
A Jester Unemployed

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem with xfree

2003-06-19 Thread Florian Huber
Hello Tom,

 
> > What kind of CPU do you have?
> 
> Celeron (Mendocino) 333MHz
> 
> > And what are your CFLAGS in make.conf?
> 
> Oops.  Nothing was set.  Bet that isn't going to be a good sign, is
> it? I suspect it should be:
> CFLAGS="-march=pentium3 -03 -pipe"
>

A Celeron Mendicio is a pentium2-class cpu so you have to use
something like that:

CFLAGS="-march=pentium2 -O3 -pipe"

HTH
Florian Huber

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Emerge problem with xfree

2003-06-19 Thread Condon Thomas A KPWA
Florian Huber wrote:
>> ...
>> make[4]: *** [geometry.dir] Illegal instruction
>> ...
> 
> Which compiler version are you using?

gcc version 3.2.2

> What kind of CPU do you have?

Celeron (Mendocino) 333MHz

> And what are your CFLAGS in make.conf?

Oops.  Nothing was set.  Bet that isn't going to be a good sign, is it?
I suspect it should be:
CFLAGS="-march=pentium3 -03 -pipe"


In Harmony's Way, and In A Chord,

Tom  :-})

Thomas A. Condon
Barbershop Bass Singer
Registered Linux User #154358
A Jester Unemployed

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem with xfree

2003-06-19 Thread Florian Huber
> ...
> make[4]: *** [geometry.dir] Illegal instruction
> ...

Which compiler version are you using? 
What kind of CPU do you have?
And what are your CFLAGS in make.conf?

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Emerge problem with xfree

2003-06-19 Thread Condon Thomas A KPWA

Folks,

I have installed Gentoo on a Sony Vaio laptop, and want to continue to add
functionality, specifically, KDE.  However, entering:
> emerge xfree
results in the following error (after much work represented by the "..."):

...
make[4]: Entering directory
`/var/tmp/portage/xfree-4.3.0-r2/work/xc/programs/xkbcomp/geometry'
rm -f geometry.dir
LD_LIBRARY_PATH=../../../exports/lib ../../../exports/bin/xkbcomp -lfhlpR -o
geometry.dir '*'
make[4]: *** [geometry.dir] Illegal instruction
make[4]: *** Deleting file `geometry.dir'
make[4]: Leaving directory
`/var/tmp/portage/xfree-4.3.0-r2/work/xc/programs/xkbcomp/geometry'
...

My questions are these:
1. How do I decipher what this error means?
2. Does the geometry directory have something to do with the screen size &
shape?
3. Is there something I can do about this?

Thanks in advance for any help or suggestions.


In Harmony's Way, and In A Chord,

Tom  :-})

Thomas A. Condon
Barbershop Bass Singer
Registered Linux User #154358
A Jester Unemployed

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2003-06-17 Thread nealbirch
On Tue, 17 Jun 2003 14:56:24 +0200
Sebastian Hungerecker <[EMAIL PROTECTED]> wrote:

> On Tue, 17 Jun 2003 14:56:14 +0300 (IDT)
> Leonid Podolny <[EMAIL PROTECTED]> wrote:
> > On one of my servers, when I run an ordinary 'emerge -uD world', I
> > recieve the following error message. When I run it without a -D
> > option, everything is OK.
> Same Problem here

Ditto, damn it. Bug 22969. 

BTW, this is the first bug that has hit me using gentoo. Not bad at all.


-- 
Politics are almost as exciting as war, and quite as dangerous.  In war,
you can only be killed once.
-- Winston Churchill

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2003-06-17 Thread Gavrila
On Tue, 2003-06-17 at 14:56, Sebastian Hungerecker wrote:
> On Tue, 17 Jun 2003 14:56:14 +0300 (IDT)
> Leonid Podolny <[EMAIL PROTECTED]> wrote:
> > On one of my servers, when I run an ordinary 'emerge -uD world', I recieve 
> > the following error message. When I run it without a -D option, everything 
> > is OK.
> Same Problem here
> 
Could it be a portage bug? When did u do last emerge sync? If it's
enough recent (like 5 minutes earlier) u could check bugs.gentoo.org and
file a bug against portage.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2003-06-17 Thread Sebastian Hungerecker
On Tue, 17 Jun 2003 14:56:14 +0300 (IDT)
Leonid Podolny <[EMAIL PROTECTED]> wrote:
> On one of my servers, when I run an ordinary 'emerge -uD world', I recieve 
> the following error message. When I run it without a -D option, everything 
> is OK.
Same Problem here

--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge problem

2003-06-17 Thread Leonid Podolny
Hi,
On one of my servers, when I run an ordinary 'emerge -uD world', I recieve 
the following error message. When I run it without a -D option, everything 
is OK.Traceback (most recent call last):
  File "/usr/bin/emerge", line 1902, in ?
if not mydepgraph.xcreate(myaction):
  File "/usr/bin/emerge", line 887, in xcreate
if not self.create(myk):
  File "/usr/bin/emerge", line 637, in create
if not self.select_dep("/",mydep["/"],myparent=mp):
  File "/usr/bin/emerge", line 735, in select_dep
mycheck=portage.dep_check(depstring,self.mydbapi[myroot])
  File "/usr/lib/python2.2/site-packages/portage.py", line 2543, in dep_check
mylist=flatten(dep_listcleanup(dep_zapdeps(mysplit,mysplit2)))
  File "/usr/lib/python2.2/site-packages/portage.py", line 2299, in dep_zapdeps
myresult=dep_zapdeps(unreduced[x],reduced[x])
  File "/usr/lib/python2.2/site-packages/portage.py", line 2289, in dep_zapdeps
return unreduced[1]
IndexError: list index out of range
--
[EMAIL PROTECTED] mailing list

Re: [gentoo-user] emerge problem

2003-03-16 Thread Dhruba Bandopadhyay
On Sun, 2003-03-16 at 21:57, Nicholas Hockey wrote:
> i have been getting alot of this recently:
> [EMAIL PROTECTED](pts/4) [~] emerge -pu world

If this happens just wait a few hours or a day and emerge sync.  The
problem is at the dev end and not at your end.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge problem

2003-03-16 Thread Nicholas Hockey




thank you very much
that worked

On Sun, 2003-03-16 at 17:29, Michael Atamas wrote:

A simple emerge regen did it for me. If not try killing /usr/portage/* and doing emerge sync (that also did it for me).




-- 
Nicholas Hockey (Tilt) <[EMAIL PROTECTED]>
Unix Administrator
Encrypted E-Mail is preferred..
 
GnuPG KeyID 4EDE2B84
Key fingerprint = B916 6032 BE3D 490D 2A08  F1BC 948A A4C1 4EDE 2B84
HKP: gpg --keyserver pgp.mit.edu --recv-keys 4EDE2B84
LDAP: gpg --keyserver ldap://keyserver.pgp.com --recv-keys 4EDE2B84









Re: [gentoo-user] emerge problem

2003-03-16 Thread Michael Atamas
A simple emerge regen did it for me. If not try killing /usr/portage/* and doing 
emerge sync (that also did it for me).

-- 
Mike Atamas
aelfgar at aelfgar.com

--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge problem

2003-03-16 Thread Nicholas Hockey




i have been getting alot of this recently:
[EMAIL PROTECTED](pts/4) [~] emerge -pu world

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

Calculating world dependencies |
aux_get(): (3) Error in net-analyzer/snort-1.9.1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in app-cdr/arson-0.9.7-r1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 |
aux_get(): (3) Error in dev-db/mysql-3.23.54a ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 -
aux_get(): (3) Error in net-www/mplayerplug-in-0.40 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 \
aux_get(): (3) Error in dev-perl/XML-Parser-2.31-r1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in dev-perl/gtk-perl-0.7008-r9 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 \
aux_get(): (3) Error in dev-perl/HTML-Parser-3.26-r1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in media-libs/sdl-gfx-2.0.3 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in media-libs/alsa-lib-0.9.0_rc7 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in app-games/tuxracer-0.61-r2 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 |
aux_get(): (3) Error in sys-devel/gdb-5.2.1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 -
aux_get(): (3) Error in app-cdr/cdrtools-2.01_alpha03 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


aux_get(): (3) Error in net-www/apache-2.0.43-r1 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 -
aux_get(): (3) Error in sys-apps/lvm-user-1.0.5 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug) 
 /
aux_get(): (3) Error in x11-libs/gtk+-1.2.10-r10 ebuild.
   Check for syntax error or corruption in the ebuild. (--debug)


!!! all ebuilds that could satisfy "=x11-libs/gtk+-2*" have been masked.
!!!    (dependency required by "net-misc/gyach-0.9.2" [ebuild])

!!! Problem with ebuild net-misc/gyach-0.9.2
!!! Possibly a DEPEND/*DEPEND problem.

!!! Depgraph creation failed.
[EMAIL PROTECTED](pts/4) [~] 

what is this and why is it happening ?




-- 
Nicholas Hockey (Tilt) <[EMAIL PROTECTED]>
Unix Administrator
Encrypted E-Mail is preferred..
 
GnuPG KeyID 4EDE2B84
Key fingerprint = B916 6032 BE3D 490D 2A08  F1BC 948A A4C1 4EDE 2B84
HKP: gpg --keyserver pgp.mit.edu --recv-keys 4EDE2B84
LDAP: gpg --keyserver ldap://keyserver.pgp.com --recv-keys 4EDE2B84









signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] Emerge problem

2003-03-04 Thread Sandor MISKEY
* Scott England <[EMAIL PROTECTED]> [20030303 23:53]:

> test ! -f /usr/bin/ranlib || /usr/bin/ranlib libdb_cxx-3.2.a
> 
> * Building db_dump185...
> libtool: unrecognized option `-c'
> Try `libtool --help' for more information.
> 
> !!! ERROR: sys-libs/db-3.2.9-r1 failed.
> !!! Function src_compile, Line -59, Exitcode 1
> !!! (no error message)


As a workaround either put "CC=cc" into your /etc/make.conf or
edit /usr/portage/sys-libs/db/db-3.2.9-r1.ebuild and change all ${CC}s
to "cc". The first one will help to avoid similar errors with other
ebuilds (like bzip2-1.0.2-r2, as I've experienced yesterday).


Sandor
-- 

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Emerge problem

2003-03-03 Thread Scott England
If I run emerge -deep -u world or emerge -u world I always get this 
error. I also get the same error if I run an emerge on any other 
program. env-update and emerge synch were both run 1 minute before the 
emerge. This was originally a 1.4rc1 setup that has been updated. It is 
used as a server so it doesnt get any non-admin use.

The error (this was from an "emerge --deep -u world" run) I went back a 
few lines. :

.lo log_register.lo mp_alloc.lo mp_bh.lo mp_fget.lo mp_fopen.lo 
mp_fput.lo mp_fset.lo mp_method.lo mp_region.lo mp_register.lo 
mp_stat.lo mp_sync.lo mp_trickle.lo mutex.lo os_abs.lo os_alloc.lo 
os_dir.lo os_errno.lo os_fid.lo os_finit.lo os_fsync.lo os_handle.lo 
os_map.lo os_method.lo os_oflags.lo os_open.lo os_region.lo os_rename.lo 
os_root.lo os_rpath.lo os_rw.lo os_seek.lo os_sleep.lo os_spin.lo 
os_stat.lo os_tmpdir.lo os_unlink.lo qam.lo qam_auto.lo qam_conv.lo 
qam_files.lo qam_method.lo qam_open.lo qam_rec.lo qam_stat.lo 
qam_upgrade.lo qam_verify.lo txn.lo txn_auto.lo txn_rec.lo txn_region.lo 
xa.lo xa_db.lo xa_map.lo
test ! -f /usr/bin/ranlib || /usr/bin/ranlib libdb_cxx-3.2.a

* Building db_dump185...
libtool: unrecognized option `-c'
Try `libtool --help' for more information.
!!! ERROR: sys-libs/db-3.2.9-r1 failed.
!!! Function src_compile, Line -59, Exitcode 1
!!! (no error message)
Spundun Bhatt wrote:

On Mon, 2003-03-03 at 12:42, Scott England wrote:
 

After installing the lastest portage and doing an emerge synch I get 
this error no matter what program I try and emerge

* Building db_dump185...
libtool: unrecognized option `-c'
Try `libtool --help' for more information.
!!! ERROR: sys-libs/db-3.2.9-r1 failed.
!!! Function src_compile, Line -59, Exitcode 1
!!! (no error message)
I have a

Running nodep lets me install but it sure makes things somewhat painful 
to install.

I tried to manually install db-3.2.9-r1 since I had db-3.2.9-r2 
installed and it wouldnt go at all. I then installed the latest version 
4.1.25 and it still has an error.

   

I am not sure what error are you referring to here. But I never had such
problem. in my command emerge --deep -u world... it updated portage
first and then updated cdrtools and acoupl of other software without any
src_compile error. When was the last time you ran the command
`etc-update` ?
BTW I am using ~x86  ACCEPT_KEYWORDS (this doesnt mean you also
should... ).
Hope this helps
Spundun
--
[EMAIL PROTECTED] mailing list
 



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Emerge problem

2003-03-03 Thread Spundun Bhatt
On Mon, 2003-03-03 at 12:42, Scott England wrote:
> After installing the lastest portage and doing an emerge synch I get 
> this error no matter what program I try and emerge
> 
> 
> * Building db_dump185...
> libtool: unrecognized option `-c'
> Try `libtool --help' for more information.
> 
> !!! ERROR: sys-libs/db-3.2.9-r1 failed.
> !!! Function src_compile, Line -59, Exitcode 1
> !!! (no error message)
> 
> I have a
> 
> 
> Running nodep lets me install but it sure makes things somewhat painful 
> to install.
> 
> I tried to manually install db-3.2.9-r1 since I had db-3.2.9-r2 
> installed and it wouldnt go at all. I then installed the latest version 
> 4.1.25 and it still has an error.
> 
I am not sure what error are you referring to here. But I never had such
problem. in my command emerge --deep -u world... it updated portage
first and then updated cdrtools and acoupl of other software without any
src_compile error. When was the last time you ran the command
`etc-update` ?
BTW I am using ~x86  ACCEPT_KEYWORDS (this doesnt mean you also
should... ).
Hope this helps
Spundun


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Emerge problem

2003-03-03 Thread Scott England
After installing the lastest portage and doing an emerge synch I get 
this error no matter what program I try and emerge

* Building db_dump185...
libtool: unrecognized option `-c'
Try `libtool --help' for more information.
!!! ERROR: sys-libs/db-3.2.9-r1 failed.
!!! Function src_compile, Line -59, Exitcode 1
!!! (no error message)
I have a

Running nodep lets me install but it sure makes things somewhat painful 
to install.

I tried to manually install db-3.2.9-r1 since I had db-3.2.9-r2 
installed and it wouldnt go at all. I then installed the latest version 
4.1.25 and it still has an error.

sys-libs/db
 Latest version available: 3.2.9-r1
 Latest version installed: 4.1.25
 Size of downloaded files: 2,036 kB
 Homepage:http://www.sleepycat.com/
 Description: Berkeley DB for transaction support in MySQL
Any ideas or is this a new bug?

Scott England

--
[EMAIL PROTECTED] mailing list