summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-01 22:31:58 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-01 22:31:58 +0000
commit60a38dc16d9cffe7197b929c607f6227c4634dac (patch)
tree5bf690aa3b4bfa55fb454b81a3689de6fe8ff9b0 /app-admin/webalizer
parentFix use invocation (Manifest recommit) (diff)
downloadgentoo-2-60a38dc16d9cffe7197b929c607f6227c4634dac.tar.gz
gentoo-2-60a38dc16d9cffe7197b929c607f6227c4634dac.tar.bz2
gentoo-2-60a38dc16d9cffe7197b929c607f6227c4634dac.zip
Fix use invocation
Diffstat (limited to 'app-admin/webalizer')
-rw-r--r--app-admin/webalizer/ChangeLog6
-rw-r--r--app-admin/webalizer/webalizer-2.01.10-r4.ebuild4
-rw-r--r--app-admin/webalizer/webalizer-2.01.10-r5.ebuild6
3 files changed, 10 insertions, 6 deletions
diff --git a/app-admin/webalizer/ChangeLog b/app-admin/webalizer/ChangeLog
index 1b43d0df8bab..ca4452f71c6a 100644
--- a/app-admin/webalizer/ChangeLog
+++ b/app-admin/webalizer/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/webalizer
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/ChangeLog,v 1.23 2004/05/24 13:33:03 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/ChangeLog,v 1.24 2004/06/01 22:31:57 agriffis Exp $
+
+ 01 Jun 2004; Aron Griffis <agriffis@gentoo.org> webalizer-2.01.10-r4.ebuild,
+ webalizer-2.01.10-r5.ebuild:
+ Fix use invocation
24 May 2004; Bryan Østergaard <kloeri@gentoo.org>
webalizer-2.01.10-r5.ebuild:
diff --git a/app-admin/webalizer/webalizer-2.01.10-r4.ebuild b/app-admin/webalizer/webalizer-2.01.10-r4.ebuild
index b7dd3673527c..fe3ecaec1cd1 100644
--- a/app-admin/webalizer/webalizer-2.01.10-r4.ebuild
+++ b/app-admin/webalizer/webalizer-2.01.10-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/webalizer-2.01.10-r4.ebuild,v 1.9 2004/05/31 19:21:33 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/webalizer-2.01.10-r4.ebuild,v 1.10 2004/06/01 22:31:57 agriffis Exp $
MY_P=${P/.10/-10}
S=${WORKDIR}/${MY_P}
@@ -41,7 +41,7 @@ src_install() {
insinto /etc
newins ${FILESDIR}/${PV}/webalizer.conf webalizer.conf
- if [ "`use apache2`" ]; then
+ if use apache2; then
# patch for apache2
sed -i -e "s/apache/apache2/g" ${D}/etc/webalizer.conf
insinto /etc/apache2/conf
diff --git a/app-admin/webalizer/webalizer-2.01.10-r5.ebuild b/app-admin/webalizer/webalizer-2.01.10-r5.ebuild
index fb640a1297dd..5872aa93c201 100644
--- a/app-admin/webalizer/webalizer-2.01.10-r5.ebuild
+++ b/app-admin/webalizer/webalizer-2.01.10-r5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/webalizer-2.01.10-r5.ebuild,v 1.4 2004/05/31 19:21:33 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/webalizer/webalizer-2.01.10-r5.ebuild,v 1.5 2004/06/01 22:31:58 agriffis Exp $
inherit eutils
@@ -52,7 +52,7 @@ src_install() {
insinto /etc
newins ${FILESDIR}/${PV}/webalizer.conf webalizer.conf
- if [ "`use apache2`" ]; then
+ if use apache2; then
# patch for apache2
sed -i -e "s/apache/apache2/g" ${D}/etc/webalizer.conf
insinto /etc/apache2/conf
@@ -73,7 +73,7 @@ src_install() {
}
pkg_postinst(){
- if [ -n "`use apache2`" ]; then
+ if use apache2; then
einfo "to update your apache.conf just type"
einfo "echo \"Include conf/addon-modules/webalizer.conf\" \
>> /etc/apache/conf/apache.conf"