diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-09-03 18:08:45 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-09-03 18:08:45 +0000 |
commit | 0744f256b677abec81a7ab0881a2148511766aa4 (patch) | |
tree | feaccf4f327af320dcfb5e8e4788a392dcae4ae4 /eclass/gnustep-funcs.eclass | |
parent | block base64 since we now provide it #146149 (diff) | |
download | gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.tar.gz gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.tar.bz2 gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.zip |
Get rid of "verbose" USE-flag that is only controlling compile-time
output. Default to verbose=yes (= more "noisy" output) because within
Gentoo we're more used to heavy loads of compile messages.
Diffstat (limited to 'eclass/gnustep-funcs.eclass')
-rw-r--r-- | eclass/gnustep-funcs.eclass | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/eclass/gnustep-funcs.eclass b/eclass/gnustep-funcs.eclass index f3270740d053..3c991169f1f9 100644 --- a/eclass/gnustep-funcs.eclass +++ b/eclass/gnustep-funcs.eclass @@ -1,11 +1,11 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-funcs.eclass,v 1.11 2006/03/25 16:19:44 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-funcs.eclass,v 1.12 2006/09/03 18:08:45 grobian Exp $ inherit toolchain-funcs eutils ########################################################################### -# IUSE="debug profile verbose" +# IUSE="debug profile" # - These USE variables are utilized here, but set in gnustep.eclass IUSE. # - Packages that inherit this gnustep-funcs.eclass file to gain information # and access as to how GNUstep is deployed on the system can safely do so. @@ -160,16 +160,13 @@ egnustep_user_root_suffix() { # Make utilizing GNUstep Makefiles egnustep_make() { if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then - local gs_make_opts="${1}" + local gs_make_opts="${1} messages=yes" if use debug ; then gs_make_opts="${gs_make_opts} debug=yes" fi if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi - if use verbose; then - gs_make_opts="${gs_make_opts} messages=yes" - fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} all || die "package make failed" else die "no Makefile found" @@ -198,16 +195,13 @@ egnustep_package_config_info() { # Make-install utilizing GNUstep Makefiles egnustep_install() { if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then - local gs_make_opts="${1}" + local gs_make_opts="${1} messages=yes" if use debug ; then gs_make_opts="${gs_make_opts} debug=yes" fi if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi - if use verbose; then - gs_make_opts="${gs_make_opts} messages=yes" - fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} install || die "package install failed" else die "no Makefile found" @@ -221,16 +215,13 @@ egnustep_install() { egnustep_doc() { cd ${S}/Documentation if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then - local gs_make_opts="${1}" + local gs_make_opts="${1} messages=yes" if use debug ; then gs_make_opts="${gs_make_opts} debug=yes" fi if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi - if use verbose; then - gs_make_opts="${gs_make_opts} messages=yes" - fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} all || die "doc make failed" eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} install || die "doc install failed" #XXX: I have no idea why this is called by ebuilds that don't have 'doc' in the |