Hello!
On Tue, 5 Jun 2012 13:37:11 +0200
Silvio Siefke <[email protected]> wrote:
> Hello,
>
> is there a option that i can build a list of Requirements to download
> of a ebuild?
>
I usually use
emerge --pretend --fetchonly media-gfx/inkscape > files_to_fetch.txt
or in a short form
emerge -fp media-gfx/inkscape > files_to_fetch.txt
And after that I download the files with wget as follows:
cat files_to_fetch.txt | cut -d " "-f 1| wget -c -i -
Note: if there are some errors during download, you may try to use
different fields in 'cut' -- like "-f 2" or "-f 3" and so on.
Hope, this helps. :)
Regards,
Vladimir
-----
<[email protected]>