diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-25 08:16:07 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-25 08:16:07 +0000 |
commit | 1bb6d48641880b641b2863f95779756c4b7782af (patch) | |
tree | 2367439761654002ba3cd4df93fc812c03624419 /dev-python/skunkweb | |
parent | Marked stable on mips. (Manifest recommit) (diff) | |
download | gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.tar.gz gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.tar.bz2 gentoo-2-1bb6d48641880b641b2863f95779756c4b7782af.zip |
don't use deprecated ? : use syntax
Diffstat (limited to 'dev-python/skunkweb')
-rw-r--r-- | dev-python/skunkweb/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/skunkweb/skunkweb-3.4_beta5.ebuild | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/dev-python/skunkweb/ChangeLog b/dev-python/skunkweb/ChangeLog index 4ee24084cad9..e32839ee0d8b 100644 --- a/dev-python/skunkweb/ChangeLog +++ b/dev-python/skunkweb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/skunkweb -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.1 2003/10/25 03:31:05 pythonhead Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/ChangeLog,v 1.2 2004/03/25 08:16:07 mr_bones_ Exp $ + + 25 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> + skunkweb-3.4_beta5.ebuild: + don't use deprecated ? : use syntax *skunkweb-3.4_beta5 (24 Oct 2003) diff --git a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild index 900c035d3737..8a630cbebf6c 100644 --- a/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild +++ b/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild,v 1.1 2003/10/25 03:31:05 pythonhead Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/skunkweb/skunkweb-3.4_beta5.ebuild,v 1.2 2004/03/25 08:16:07 mr_bones_ Exp $ DESCRIPTION="robust Python web application server" @@ -14,7 +14,8 @@ KEYWORDS="~x86" IUSE="${IUSE} apache1 apache2" DEPEND=">=dev-lang/python-2.2 >=dev-python/egenix-mx-base-2.0.4 - apache2? ( >=net-www/apache-2.0.47 ) : ( apache1? ( <=net-www/apache-2 ) )" + apache2? ( >=net-www/apache-2.0.47 ) + !apache2? ( apache1? ( <=net-www/apache-2 ) )" pkg_setup() { |