summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Herbert <stuart@gentoo.org>2004-04-17 16:02:11 +0000
committerStuart Herbert <stuart@gentoo.org>2004-04-17 16:02:11 +0000
commite0fd3b87417ad18de7d7fd61b19a30e867fa4c58 (patch)
treedd243642d6f010fba057a0d4a632febdd79efab8 /net-www
parentIUSE and eutils. (Manifest recommit) (diff)
downloadgentoo-2-e0fd3b87417ad18de7d7fd61b19a30e867fa4c58.tar.gz
gentoo-2-e0fd3b87417ad18de7d7fd61b19a30e867fa4c58.tar.bz2
gentoo-2-e0fd3b87417ad18de7d7fd61b19a30e867fa4c58.zip
Fix for bug #48026
Diffstat (limited to 'net-www')
-rw-r--r--net-www/bugzilla/ChangeLog5
-rw-r--r--net-www/bugzilla/bugzilla-2.17.6-r1.ebuild4
2 files changed, 6 insertions, 3 deletions
diff --git a/net-www/bugzilla/ChangeLog b/net-www/bugzilla/ChangeLog
index 2574d53a0104..d7954ac6e728 100644
--- a/net-www/bugzilla/ChangeLog
+++ b/net-www/bugzilla/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-www/bugzilla
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-www/bugzilla/ChangeLog,v 1.3 2004/04/13 16:45:12 zul Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-www/bugzilla/ChangeLog,v 1.4 2004/04/17 16:02:11 stuart Exp $
+
+ 17 Apr 2004; Stuart Herbert <stuart@gentoo.org> bugzilla-2.17.6-r1.ebuild:
+ Fix for bug #48026
13 Apr 2004; Chuck Short <zul@gentoo.org> bugzilla-2.17.6-r1.ebuild:
Added apache2 detection, closes #42089.
diff --git a/net-www/bugzilla/bugzilla-2.17.6-r1.ebuild b/net-www/bugzilla/bugzilla-2.17.6-r1.ebuild
index 9c097a79c293..96a0c633d94d 100644
--- a/net-www/bugzilla/bugzilla-2.17.6-r1.ebuild
+++ b/net-www/bugzilla/bugzilla-2.17.6-r1.ebuild
@@ -47,7 +47,7 @@ src_install () {
# Bugzilla originally needs perl to be installed in /usr/bonsaitools/bin
# So let's change it for /usr/bin/perl
- perl -pi -e 's@#\!/usr/bonsaitools/bin/perl@#\!/usr/bin/perl@' *cgi *pl Bug.pm processmail || die
+ perl -pi -e 's@#\!/usr/bonsaitools/bin/perl@#\!/usr/bin/perl@' *cgi *pl Bug.pm || die
# syncshadowdb is gone
# Copy files to /var/www/bugzilla
insinto /var/www/bugzilla
@@ -58,7 +58,7 @@ src_install () {
# So, it's better to keep it outside
if use apache2 ; then
- cp ${FILESDIR}/bugzilla.conf ${D}/etc/apache/conf || die
+ cp ${FILESDIR}/bugzilla.conf ${D}/etc/apache2/conf || die
else
cp ${FILESDIR}/bugzilla.conf ${D}/etc/apache/conf || die
fi