diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-31 08:39:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-07-31 08:39:01 +0000 |
commit | c5597aa3bd51ec1e885abc458cc9c43f5e0ca900 (patch) | |
tree | 8cd69442f3dfa9af64ef28d044d1fb416eddb24f /net-analyzer/acid/acid-0.9.6_beta23.ebuild | |
parent | Import of a really cool package, a MIPS 32/64bit emulator. Included ebuilds ... (diff) | |
download | historical-c5597aa3bd51ec1e885abc458cc9c43f5e0ca900.tar.gz historical-c5597aa3bd51ec1e885abc458cc9c43f5e0ca900.tar.bz2 historical-c5597aa3bd51ec1e885abc458cc9c43f5e0ca900.zip |
don't use deprecated ? : syntax
Diffstat (limited to 'net-analyzer/acid/acid-0.9.6_beta23.ebuild')
-rw-r--r-- | net-analyzer/acid/acid-0.9.6_beta23.ebuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/net-analyzer/acid/acid-0.9.6_beta23.ebuild b/net-analyzer/acid/acid-0.9.6_beta23.ebuild index e75564d252fd..035f40e36332 100644 --- a/net-analyzer/acid/acid-0.9.6_beta23.ebuild +++ b/net-analyzer/acid/acid-0.9.6_beta23.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/acid/acid-0.9.6_beta23.ebuild,v 1.2 2004/07/25 08:58:32 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/acid/acid-0.9.6_beta23.ebuild,v 1.3 2004/07/31 08:39:01 mr_bones_ Exp $ inherit webapp @@ -16,10 +16,15 @@ IUSE="apache2" S=${WORKDIR}/${PN} # Note: jpgraph is an unstable package -DEPEND="apache2? ( >=net-www/apache-2 ) : ( =net-www/apache-1.* ) - >=dev-php/adodb-4.0.5 - >=dev-php/jpgraph-1.12.2 - net-analyzer/snort" +DEPEND="apache2? ( >=net-www/apache-2 ) + !apache2? ( =net-www/apache-1* ) + >=dev-php/adodb-4.0.5 + >=dev-php/jpgraph-1.12.2 + net-analyzer/snort" + +src_compile () { + einfo "Nothing to compile." +} src_install () { webapp_src_preinst @@ -32,10 +37,6 @@ src_install () { webapp_src_install } -src_compile () { - einfo "Nothing to compile." -} - pkg_postinst() { webapp_pkg_postinst @@ -45,4 +46,3 @@ pkg_postinst() { einfo "To setup ACID database look in the README" einfo "" } - |