summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-24 00:26:24 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-24 00:26:24 +0000
commitbf98a8fbc87cb8f322f24b838ae915eed4cc3f79 (patch)
treef2c6d0038dcc8f812948225084e55837846319a8 /man
parent0601f3c1ad6ec61d5d067dbbd9e9341587c08e8b (diff)
downloadportage-bf98a8fbc87cb8f322f24b838ae915eed4cc3f79.tar.gz
portage-bf98a8fbc87cb8f322f24b838ae915eed4cc3f79.tar.bz2
portage-bf98a8fbc87cb8f322f24b838ae915eed4cc3f79.zip
use() is silent, update notes
svn path=/main/branches/2.0/; revision=2018
Diffstat (limited to 'man')
-rw-r--r--man/ebuild.514
1 files changed, 7 insertions, 7 deletions
diff --git a/man/ebuild.5 b/man/ebuild.5
index 6f982fee8..a68307acf 100644
--- a/man/ebuild.5
+++ b/man/ebuild.5
@@ -408,19 +408,19 @@ Causes the current emerge process to be aborted. The final display will
include \fIreason\fR.
.TP
\fBuse\fR \fI<USE item>\fR
-If \fIUSE item\fR is in the \fBUSE\fR variable, \fIUSE item\fR will be
-echoed and the function will return 0. If \fIUSE item\fR is not in the
-\fBUSE\fR variable, the function will return 1. \fBuseq\fR is a non-echoing
-version of \fBuse\fR.
+If \fIUSE item\fR is in the \fBUSE\fR variable, the function will silently
+return 0 (aka shell true). If \fIUSE item\fR is not in the \fBUSE\fR
+variable, the function will silently return 1 (aka shell false). \fBusev\fR
+is a verbose version of \fBuse\fR.
.RS
.TP
.I Example:
.nf
-if useq gnome ; then
+if use gnome ; then
guiconf="--enable-gui=gnome --with-x"
-elif useq gtk ; then
+elif use gtk ; then
guiconf="--enable-gui=gtk --with-x"
-elif useq X ; then
+elif use X ; then
guiconf="--enable-gui=athena --with-x"
else
# No gui version will be built