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 | 8399b50059293c8b45654cbdc0942204000d5515 (patch) | |
tree | 38f509941e31e3b0955a234a2534985953b47cfe /net-analyzer/acid | |
parent | Import of a really cool package, a MIPS 32/64bit emulator. Included ebuilds ... (diff) | |
download | gentoo-2-8399b50059293c8b45654cbdc0942204000d5515.tar.gz gentoo-2-8399b50059293c8b45654cbdc0942204000d5515.tar.bz2 gentoo-2-8399b50059293c8b45654cbdc0942204000d5515.zip |
don't use deprecated ? : syntax
Diffstat (limited to 'net-analyzer/acid')
-rw-r--r-- | net-analyzer/acid/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/acid/acid-0.9.6_beta23.ebuild | 20 |
2 files changed, 15 insertions, 11 deletions
diff --git a/net-analyzer/acid/ChangeLog b/net-analyzer/acid/ChangeLog index 7849f549a4ef..408b254ddaac 100644 --- a/net-analyzer/acid/ChangeLog +++ b/net-analyzer/acid/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/acid # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/acid/ChangeLog,v 1.2 2004/07/25 08:58:32 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/acid/ChangeLog,v 1.3 2004/07/31 08:39:01 mr_bones_ Exp $ + + 31 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org> + acid-0.9.6_beta23.ebuild: + don't use deprecated ? : syntax 25 Jul 2004; Eldad Zack <eldad@gentoo.org> acid-0.9.6_beta23.ebuild: Updated DBlib_path in acid_conf. Closes #58206. 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 "" } - |