blob: da8531459a42322ba34de18d9d039405c3af22ae (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mod_python/mod_python-2.7.8.ebuild,v 1.11 2003/09/10 22:29:45 msterret Exp $
DESCRIPTION="Python module for Apache 1.x, not for Apache 2.x"
SRC_URI="http://www.modpython.org/dist/${P}.tgz"
HOMEPAGE="http://www.modpython.org/"
LICENSE="as-is"
KEYWORDS="~x86"
SLOT="0"
DEPEND="=net-www/apache-1* dev-lang/python"
src_unpack() {
unpack ${A}
cd ${S}
# This patch from SuSE fixes the missing CFLAGS.
# If you remove it, your apache will most likely
# fail (lots of dieing pids in error_log).
patch -p0 < ${FILESDIR}/patch-2.7.8.diff
}
src_compile() {
# If we dont add that, ./configure breaks this ebuild
# because the last task (make depend) is somehow borked
echo 'echo "configure done"' >> configure
export OPTFLAGS="`/usr/sbin/apxs -q CFLAGS`"
econf --with-apxs=/usr/sbin/apxs
cp Makefile Makefile.orig
sed -e 's/LIBEXECDIR=\/usr\/lib\/apache/LIBEXECDIR=${D}\/usr\/lib\/apache-extramodules/' \
-e 's/PY_STD_LIB=/PY_STD_LIB=${D}/' \
Makefile.orig > Makefile
cd src
cp Makefile Makefile.orig
sed -e 's/CFLAGS=$(OPT) $(INCLUDES)/CFLAGS=$(OPT) $(INCLUDES) -DEAPI -O0/' \
Makefile.orig > Makefile
emake || die "emake failed"
}
src_install() {
dodir /usr/lib/apache-extramodules
dodir /usr/lib/python2.2
dodir /etc/apache/conf/addon-modules
# compileall.py is needed or make install will fail
cp /usr/lib/python2.2/compileall.py ${D}usr/lib/python2.2/
emake D=${D} install || die
rm ${D}usr/lib/python2.2/compileall.py
insinto /etc/apache/conf/addon-modules
doins ${FILESDIR}/mod_python.conf
dodoc COPYRIGHT CREDITS NEWS README
insinto /usr/share/doc/${P}/html
doins doc-html/*
insinto /usr/share/doc/${P}/html/icons
doins doc-html/icons/*
}
pkg_postinst() {
einfo
einfo "To have Apache run python programs, please do the following:"
einfo "1. Execute the command:"
einfo " \"ebuild /var/db/pkg/dev-python/${PF}/${PF}.ebuild config\""
einfo "2. Edit /etc/conf.d/apache and add \"-D PYTHON\""
einfo
einfo "That will include the ${PN} mime types in your configuration"
einfo "automagically and setup Apache to load ${PN} when it starts."
einfo
}
pkg_config() {
${ROOT}/usr/sbin/apacheaddmod \
${ROOT}/etc/apache/conf/apache.conf \
extramodules/mod_python.so mod_python.c python_module \
before=perl define=PYTHON addconf=conf/addon-modules/mod_python.conf
:;
}
|