diff options
author | Eldad Zack <eldad@gentoo.org> | 2004-11-10 19:07:51 +0000 |
---|---|---|
committer | Eldad Zack <eldad@gentoo.org> | 2004-11-10 19:07:51 +0000 |
commit | 177123660c8f306cf6f8da85c6eb4ed1b06c1d20 (patch) | |
tree | 50636b2aa1c2409dd338ec254bd706de49b56564 /net-analyzer | |
parent | Fixed bug #70683. (Manifest recommit) (diff) | |
download | gentoo-2-177123660c8f306cf6f8da85c6eb4ed1b06c1d20.tar.gz gentoo-2-177123660c8f306cf6f8da85c6eb4ed1b06c1d20.tar.bz2 gentoo-2-177123660c8f306cf6f8da85c6eb4ed1b06c1d20.zip |
Minor useflag usage fix.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/piwi/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-analyzer/piwi/ChangeLog b/net-analyzer/piwi/ChangeLog index 045ff024a665..6fea5751e16c 100644 --- a/net-analyzer/piwi/ChangeLog +++ b/net-analyzer/piwi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/piwi # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/piwi/ChangeLog,v 1.18 2004/09/06 18:58:36 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/piwi/ChangeLog,v 1.19 2004/11/10 19:07:51 eldad Exp $ + + 10 Nov 2004; Eldad Zack <eldad@gentoo.org> piwi-0.8.0.20031109-r3.ebuild: + Minor useflag usage fix. 06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> piwi-0.8.0.20031109-r2.ebuild, piwi-0.8.0.20031109-r3.ebuild: diff --git a/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild b/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild index a20b60854819..8884275309f1 100644 --- a/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild +++ b/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild,v 1.2 2004/09/06 18:58:36 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/piwi/piwi-0.8.0.20031109-r3.ebuild,v 1.3 2004/11/10 19:07:51 eldad Exp $ inherit webapp eutils @@ -32,7 +32,7 @@ RDEPEND=" S=${WORKDIR}/ src_compile() { - if ! use mysql && ! use postgres; then + if use !mysql && use !postgres; then eerror "You must have either MySQL or PostgreSQL enabled to use this software." eerror "You must put either 'mysql' or 'postgres' (or both) in your USE flags before emerging this." |