Lines 64-69
Link Here
|
64 |
echo -e " ${GOOD}--fetchonly (-f)${NORMAL} Just download all the source files" |
64 |
echo -e " ${GOOD}--fetchonly (-f)${NORMAL} Just download all the source files" |
65 |
echo -e " ${GOOD}--info (-i)${NORMAL} Show system related information" |
65 |
echo -e " ${GOOD}--info (-i)${NORMAL} Show system related information" |
66 |
echo -e " ${GOOD}--pretend (-p)${NORMAL} Display the packages that will be merged" |
66 |
echo -e " ${GOOD}--pretend (-p)${NORMAL} Display the packages that will be merged" |
|
|
67 |
echo -e " ${GOOD}--quiet (-q)${NORMAL} Reduced or condensed output from portage's displays." |
67 |
echo -e " ${GOOD}--tree (-t)${NORMAL} Display the dependency tree, forces -p" |
68 |
echo -e " ${GOOD}--tree (-t)${NORMAL} Display the dependency tree, forces -p" |
68 |
echo -e " ${GOOD}--resume (-r)${NORMAL} Build/use binary packages" |
69 |
echo -e " ${GOOD}--resume (-r)${NORMAL} Build/use binary packages" |
69 |
} |
70 |
} |
Lines 85-90
Link Here
|
85 |
--debug|-d) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --debug"; DEBUG=1;; |
86 |
--debug|-d) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --debug"; DEBUG=1;; |
86 |
--info|-i) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --info" ; unset STRAP_RUN ;; |
87 |
--info|-i) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --info" ; unset STRAP_RUN ;; |
87 |
--pretend|-p) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -p" ; unset STRAP_RUN ;; |
88 |
--pretend|-p) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -p" ; unset STRAP_RUN ;; |
|
|
89 |
--quiet|-q) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -q" ; unset STRAP_RUN ;; |
88 |
--tree|-t) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -p -t" ; unset STRAP_RUN ;; |
90 |
--tree|-t) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -p -t" ; unset STRAP_RUN ;; |
89 |
--resume|-r) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --usepkg --buildpkg";; |
91 |
--resume|-r) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --usepkg --buildpkg";; |
90 |
--verbose|-v) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -v"; V_ECHO=v_echo;; |
92 |
--verbose|-v) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -v"; V_ECHO=v_echo;; |