summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2004-09-03 19:51:17 +0000
committerCaleb Tennis <caleb@gentoo.org>2004-09-03 19:51:17 +0000
commit198b2736c589dcf293643a4b9c2ded4f7771f21a (patch)
tree462be8dfa925aeebe1e4ddc143819b32c9651639 /dev-perl/mod_perl
parentKeyword modification, see changelog for details (Manifest recommit) (diff)
downloadgentoo-2-198b2736c589dcf293643a4b9c2ded4f7771f21a.tar.gz
gentoo-2-198b2736c589dcf293643a4b9c2ded4f7771f21a.tar.bz2
gentoo-2-198b2736c589dcf293643a4b9c2ded4f7771f21a.zip
Removing package.masked version
Diffstat (limited to 'dev-perl/mod_perl')
-rw-r--r--dev-perl/mod_perl/ChangeLog5
-rw-r--r--dev-perl/mod_perl/files/digest-mod_perl-1.27-r31
-rw-r--r--dev-perl/mod_perl/mod_perl-1.27-r3.ebuild77
3 files changed, 4 insertions, 79 deletions
diff --git a/dev-perl/mod_perl/ChangeLog b/dev-perl/mod_perl/ChangeLog
index a4dc575b817a..94ff09b440b9 100644
--- a/dev-perl/mod_perl/ChangeLog
+++ b/dev-perl/mod_perl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-perl/mod_perl
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/mod_perl/ChangeLog,v 1.40 2004/08/28 15:34:28 dholm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/mod_perl/ChangeLog,v 1.41 2004/09/03 19:49:21 caleb Exp $
+
+ 03 Sep 2004; Caleb Tennis <caleb@gentoo.org> -mod_perl-1.27-r3.ebuild:
+ Removing package.masked version
28 Aug 2004; David Holm <dholm@gentoo.org> mod_perl-1.99.11.ebuild:
Added to ~ppc.
diff --git a/dev-perl/mod_perl/files/digest-mod_perl-1.27-r3 b/dev-perl/mod_perl/files/digest-mod_perl-1.27-r3
deleted file mode 100644
index 100b74cf1c13..000000000000
--- a/dev-perl/mod_perl/files/digest-mod_perl-1.27-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 bd07f4f1065eb0d0a8d8004219357d8c mod_perl-1.27.tar.gz 372525
diff --git a/dev-perl/mod_perl/mod_perl-1.27-r3.ebuild b/dev-perl/mod_perl/mod_perl-1.27-r3.ebuild
deleted file mode 100644
index 52728a4f9be0..000000000000
--- a/dev-perl/mod_perl/mod_perl-1.27-r3.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/mod_perl/mod_perl-1.27-r3.ebuild,v 1.6 2004/07/14 19:39:45 agriffis Exp $
-
-inherit eutils
-
-DESCRIPTION="A Perl Module for Apache"
-SRC_URI="http://perl.apache.org/dist/${P}.tar.gz"
-HOMEPAGE="http://perl.apache.org"
-
-SLOT="0"
-LICENSE="Apache-1.1 as-is"
-KEYWORDS="x86 amd64 ~ppc ~sparc ~alpha"
-
-DEPEND="dev-lang/perl dev-perl/libwww-perl =net-www/apache-1*"
-
-IUSE="ipv6"
-
-src_unpack() {
- unpack ${A}
-
- if has_version '>=apache-1.3.27-r4' && use ipv6; then
- # This patch originally came from
- # http://pasky.ji.cz/~pasky/dev/apache/mod_perl-1.27+ipv6.patch.
- # It allows mod_perl to correctly build with an IPv6-enabled
- # Apache (bug #6986).
- # Robert Coie <rac@gentoo.org> 2002.02.19
-
- cd ${S}; epatch ${FILESDIR}/${P}-ipv6.patch
- fi
-}
-
-src_compile() {
- perl Makefile.PL USE_APXS=1 \
- INSTALLDIRS=vendor \
- WITH_APXS=/usr/sbin/apxs EVERYTHING=1
-
- cp Makefile Makefile.orig
- sed -e "s:apxs_install doc_install:doc_install:" Makefile.orig > Makefile
- emake || die
-}
-
-src_install () {
- eval `perl '-V:installvendorarch'`
- eval `perl '-V:installvendorlib'`
-
- make \
- PREFIX=${D}/usr \
- INSTALLVENDORARCH=${D}/${installvendorarch} \
- INSTALLVENDORLIB=${D}/${installvendorlib} \
- INSTALLVENDORMAN1DIR=${D}/usr/share/man/man1 \
- INSTALLVENDORMAN3DIR=${D}/usr/share/man/man3 \
- pure_vendor_install || die
-
- dodoc Changes CREDITS MANIFEST README SUPPORT ToDo
- dohtml -r ./
-
- cd apaci
- exeinto /usr/lib/apache-extramodules
- doexe libperl.so
-}
-
-pkg_postinst() {
- einfo
- einfo "Execute \"ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config\""
- einfo "to have your apache.conf auto-updated for use with this module."
- einfo "You should then edit your /etc/conf.d/apache file to suit."
- einfo
-}
-
-pkg_config() {
- ${ROOT}/usr/sbin/apacheaddmod \
- ${ROOT}/etc/apache/conf/apache.conf \
- extramodules/libperl.so mod_perl.c perl_module \
- define=PERL
- :;
-}