diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-25 20:12:26 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-25 20:12:26 +0000 |
commit | 284e131371768d54e35c7777e5423d724f548072 (patch) | |
tree | b0b359d5dced0fddb9931078e25033dc66c5f4b5 /net-zope/zope | |
parent | Add missing IUSE. (Manifest recommit) (diff) | |
download | gentoo-2-284e131371768d54e35c7777e5423d724f548072.tar.gz gentoo-2-284e131371768d54e35c7777e5423d724f548072.tar.bz2 gentoo-2-284e131371768d54e35c7777e5423d724f548072.zip |
QA - fix use invocation
Diffstat (limited to 'net-zope/zope')
-rw-r--r-- | net-zope/zope/ChangeLog | 6 | ||||
-rw-r--r-- | net-zope/zope/zope-2.4.0-r6.ebuild | 8 | ||||
-rw-r--r-- | net-zope/zope/zope-2.5.1.ebuild | 8 |
3 files changed, 13 insertions, 9 deletions
diff --git a/net-zope/zope/ChangeLog b/net-zope/zope/ChangeLog index 75f92bb7e560..206159a4de66 100644 --- a/net-zope/zope/ChangeLog +++ b/net-zope/zope/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-zope/zope # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/ChangeLog,v 1.27 2004/06/25 01:26:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/ChangeLog,v 1.28 2004/06/25 20:12:26 agriffis Exp $ + + 25 Jun 2004; Aron Griffis <agriffis@gentoo.org> zope-2.4.0-r6.ebuild, + zope-2.5.1.ebuild: + QA - fix use invocation 24 May 2004; Bryan Østergaard <kloeri@gentoo.org> zope-2.6.4-r1.ebuild: Keyworded ~alpha, requested in bug #51550. diff --git a/net-zope/zope/zope-2.4.0-r6.ebuild b/net-zope/zope/zope-2.4.0-r6.ebuild index 5884e0c88fa1..7cabb029eb86 100644 --- a/net-zope/zope/zope-2.4.0-r6.ebuild +++ b/net-zope/zope/zope-2.4.0-r6.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-zope/zope/zope-2.4.0-r6.ebuild,v 1.8 2004/06/25 01:26:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/zope-2.4.0-r6.ebuild,v 1.9 2004/06/25 20:12:26 agriffis Exp $ S=${WORKDIR}/Zope-${PV}-src DESCRIPTION="Zope is web application platform used for building high-performance, dynamic web sites." @@ -19,7 +19,7 @@ src_unpack() { unpack Zope-${PV}-src.tgz - if [ "`use zeo`" ]; then + if use zeo; then cd ${S}/lib/python unpack ZEO-1.0b3.tgz mv ZEO-1.0b3/ZEO ${S}/lib/python @@ -69,7 +69,7 @@ src_install () { dodir ${ZVAR}/import dodir ${ZVAR}/Products - if [ "`use zeo`" ]; then + if use zeo; then insinto ${ZVAR} doins ${FILESDIR}/zctl.py ${FILESDIR}/zope ${FILESDIR}/zope.conf ${FILESDIR}/custom_zodb.py fi @@ -106,7 +106,7 @@ pkg_postinst() { echo "You must run" echo echo /usr/share/zope/zpasswd.py /var/lib/zope/inituser - if [ "`use zeo`" ]; then + if use zeo; then echo and edit /var/lib/zope/zope.conf fi diff --git a/net-zope/zope/zope-2.5.1.ebuild b/net-zope/zope/zope-2.5.1.ebuild index 9a989e308b92..eb1f6ccab11b 100644 --- a/net-zope/zope/zope-2.5.1.ebuild +++ b/net-zope/zope/zope-2.5.1.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-zope/zope/zope-2.5.1.ebuild,v 1.8 2004/06/25 01:26:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/zope-2.5.1.ebuild,v 1.9 2004/06/25 20:12:26 agriffis Exp $ S=${WORKDIR}/Zope-${PV}-src DESCRIPTION="Zope is web application platform used for building high-performance, dynamic web sites." @@ -18,7 +18,7 @@ src_unpack() { unpack Zope-${PV}-src.tgz - if [ "`use zeo`" ]; then + if use zeo; then cd ${S}/lib/python unpack ZEO-1.0.tgz mv ZEO-1.0/ZEO ${S}/lib/python @@ -68,7 +68,7 @@ src_install () { dodir ${ZVAR}/import dodir ${ZVAR}/Products - if [ "`use zeo`" ]; then + if use zeo; then insinto ${ZVAR} doins ${FILESDIR}/zctl.py ${FILESDIR}/zope ${FILESDIR}/zope.conf ${FILESDIR}/custom_zodb.py fi @@ -105,7 +105,7 @@ pkg_postinst() { echo "You must run" echo echo /usr/share/zope/zpasswd.py /var/lib/zope/inituser - if [ "`use zeo`" ]; then + if use zeo; then echo and edit /var/lib/zope/zope.conf fi |