summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmando Di Cianno <fafhrd@gentoo.org>2005-07-10 18:52:04 +0000
committerArmando Di Cianno <fafhrd@gentoo.org>2005-07-10 18:52:04 +0000
commit1b15a2e214996774fb5f4e266bd0e57730ff8641 (patch)
treed3ee7726ae2ebb07f2c2faadc1103581684dedc8 /eclass/gnustep.eclass
parentlog4j fix (diff)
downloadhistorical-1b15a2e214996774fb5f4e266bd0e57730ff8641.tar.gz
historical-1b15a2e214996774fb5f4e266bd0e57730ff8641.tar.bz2
historical-1b15a2e214996774fb5f4e266bd0e57730ff8641.zip
Fixing rev 1.30's fixes for sync of IUSE -- there was really no need for it -- when eclass uses USE flag not set in eclass IUSE, they are set in ebuild IUSE, and code is otherwise shelterd against misuse.
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r--eclass/gnustep.eclass10
1 files changed, 8 insertions, 2 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass
index 7b6d16529b80..1b652028ced4 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.30 2005/07/06 20:41:48 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.31 2005/07/10 18:52:04 fafhrd Exp $
inherit gnustep-funcs eutils flag-o-matic
@@ -8,7 +8,13 @@ DESCRIPTION="EClass designed to facilitate building GNUstep Apps, Frameworks, an
###########################################################################
# IUSE variables across all GNUstep packages
-IUSE="debug doc profile"
+# ##### All GNUstep applications / libs get these
+# "debug" - enable code for debugging; also nostrip
+# "profile" - enable code for profiling; also nostrip
+# "verbose" - enable "normal / noisy" compiling from eclass
+# ##### Set the next USE flags ***per ebuild*** in IUSE, ***not here***
+# "doc" - set in ebuild that inherits to enable doc specific code in eclass
+IUSE="debug profile verbose"
if use debug; then
RESTRICT="nostrip"
fi