diff options
author | 2004-06-09 18:17:04 +0000 | |
---|---|---|
committer | 2004-06-09 18:17:04 +0000 | |
commit | 9bceb0123aed8188c3893a53243d10dc37c7d956 (patch) | |
tree | 49e4dcc3049c81934de84e620ffbf13dcbb18058 /net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild | |
parent | Fix use invocation and don't run epatch in a subshell because then it can't die (diff) | |
download | historical-9bceb0123aed8188c3893a53243d10dc37c7d956.tar.gz historical-9bceb0123aed8188c3893a53243d10dc37c7d956.tar.bz2 historical-9bceb0123aed8188c3893a53243d10dc37c7d956.zip |
Fix use invocation
Diffstat (limited to 'net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild')
-rw-r--r-- | net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild b/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild index aa0f0c7f2e4d..7ed80179fd09 100644 --- a/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild +++ b/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild @@ -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/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild,v 1.2 2004/05/30 07:17:18 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagios-core/nagios-core-1.2-r1.ebuild,v 1.3 2004/06/09 18:11:06 agriffis Exp $ inherit eutils @@ -43,7 +43,7 @@ src_unpack() { } src_compile() { - if [ -n "`use mysql`" -a -n "`use postgres`" ]; then + if use mysql && use postgres; then eerror "Unfortunatly you can't have both MySQL and PostgreSQL enabled at the same time." eerror "You have to remove either 'mysql' or 'postgres' from your USE flags before emerging this." @@ -80,7 +80,7 @@ src_compile() { --enable-embedded-perl \ --with-perlcache" - if [ -n "`use debug`" ]; then + if use debug; then myconf="${myconf} --enable-DEBUG0" myconf="${myconf} --enable-DEBUG1" myconf="${myconf} --enable-DEBUG2" @@ -162,13 +162,13 @@ pkg_postinst() { einfo " rc-update add nagios default" einfo - if [ -z "`use noweb`" ]; then + if ! use noweb; then einfo "This does not include cgis that are perl-dependent" einfo "Currently traceroute.cgi is perl-dependent" einfo "To have ministatus.cgi requires copying of ministatus.c" einfo "to cgi directory for compiling." - if [ -n "`use apache2`" ]; then + if use apache2; then insinto /etc/apache2/conf/modules.d doins ${FILESDIR}/99_nagios.conf |