Code: Select all
malazan /root# emerge -up xv
These are the packages that I would merge, in order:
Calculating dependencies ...done!
[ebuild FU ] media-gfx/xv-3.10a-r4 [3.10a-r3]
Code: Select all
malazan /root# emerge -up xv
These are the packages that I would merge, in order:
Calculating dependencies ...done!
[ebuild FU ] media-gfx/xv-3.10a-r4 [3.10a-r3]
But what does the F in the emerge output for xv mean? I can do an emerge -f for any package.slyde wrote:emerge -f would 'fetch' the distfile for what package. its useful when you just need to retrive the tarball.
Code: Select all
DEPEND="virtual/x11
jpeg? ( >=media-libs/jpeg-6b )
tiff? ( >=media-libs/tiff-3.5 )
png? ( >=media-libs/libpng-1.2 )
>=sys-libs/zlib-1.1.4"
RESTRICT="fetch"
Code: Select all
RESTRICT = [nostrip,nomirror,fetch,nouserpriv]
This should be a space delimited list of portage
features to restrict.
nostrip
final binaries/libraries will not be
stripped of debug symbols.
nouserpriv
Disables userpriv for specific packages.
nomirror
files in SRC_URI will not be downloaded
from the GENTOO_MIRRORS.
fetch like nomirror but the files will not be
fetched via SRC_URI either.
pkg_nofetch
If you turn on fetch in RESTRICT, then this func-
tion will be run when the files in SRC_URI cannot
be found. Useful for displaying information to
the user on *how* to obtain said files. All you
have to do is output a message and let the func-
tion return. Do not end the function with a call
to die.