Gentoo Archives: gentoo-ppc-user

From: Kevin Geiss <kevin@×××××××××.com>
To: "S. Cowles" <scowles@×××××××××.net>
Cc: gentoo-ppc-user@g.o
Subject: Re: [gentoo-ppc-user] how does one install all available categories/packages?
Date: Sat, 05 Apr 2003 16:04:14
Message-Id: 20030405160412.GA13993@raven.localdomain
In Reply to: [gentoo-ppc-user] how does one install all available categories/packages? by "S. Cowles"
1 On Mon, Mar 31, 2003 at 09:19:10PM -0800, S. Cowles wrote:
2 >
3 > i would like to emerge all available categories and packages. is there a
4 > simple, non-interactive way to do this?
5
6 that's crazy! this command:
7
8 find /usr/portage -type d | grep -v files | wc
9
10 output 4303 lines! that means there are over 4000 available packages!
11
12 you do realize that emerging a package means downloading its source,
13 extracting, patching, compiling, and installing it?
14
15 If what you really want is to see a list of all available packages,
16 you could try this:
17
18 emerge -s . > /tmp/list
19
20 then you would have a list of them all with a brief description and the
21 url of their homepage in the file /tmp/list :)
22
23 the '-s' flag to emerge means to search package names using a regular
24 expression, and the '.' matches any character.
25
26 --
27 gentoo-ppc-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-ppc-user] how does one install all available categories/packages? "S. Cowles" <scowles@×××××××××.net>