diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2005-06-22 20:51:06 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2005-06-22 20:51:06 +0000 |
commit | ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431 (patch) | |
tree | 08f142e90fa70bf6d258db172f4247ec1d21361f /eclass/gnustep.eclass | |
parent | Added 'verbose' use flag to use.desc (to allow an increase in verbosity for b... (diff) | |
download | historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.tar.gz historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.tar.bz2 historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.zip |
Added use of 'verbose' use flag to optionally not hide compilation output
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r-- | eclass/gnustep.eclass | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index bb3c67deda31..55fcb7e4116b 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.26 2005/06/06 07:08:19 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.27 2005/06/22 20:51:06 fafhrd Exp $ inherit gnustep-funcs eutils flag-o-matic @@ -9,7 +9,16 @@ INHERITED="$INHERITED $ECLASS" DESCRIPTION="EClass designed to facilitate building GNUstep Apps, Frameworks, and Bundles on Gentoo." -IUSE="debug profile" +########################################################################### +# IUSE variables across all GNUstep packages +IUSE="debug profile verbose" +if use debug; then + RESTRICT="nostrip" +fi +if use profile; then + RESTRICT="nostrip" +fi +########################################################################### ########################################################################### # Internal variables |