blob: 50f38a08b788c9dd09af9c72c79d2498899f53f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# 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-r4.ebuild,v 1.5 2004/06/25 00:46:40 agriffis Exp $
inherit eutils
S=${WORKDIR}/${P}
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 ~mips"
DEPEND="dev-lang/perl dev-perl/libwww-perl =net-www/apache-1* >=sys-apps/sed-4"
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
cd ${S}
for f in "apaci/mod_perl.config.sh" "apaci/libperl.module"
do
echo "tail -1 fix in ${f}"
sed -i -e "s/tail -1/tail -n1/" ${f}
done
}
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
:;
}
|