blob: eaab32b367d01500693c690729449903d39f3c1c (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/zope/zope-2.6.0.ebuild,v 1.1 2003/03/03 23:43:22 kutsuya Exp $
S="${WORKDIR}/Zope-${PV}-src"
DESCRIPTION="Zope is a web application platform used for building high-performance, dynamic web sites."
HOMEPAGE="http://www.zope.org"
SRC_URI="http://www.zope.org/Products/Zope/${PV}/Zope-${PV}-src.tgz"
LICENSE="ZPL"
SLOT="0"
# TODO: needs to be confirmed on other platforms.
KEYWORDS="x86"
DEPEND="virtual/glibc
dev-lang/python"
ZOPEDIR="${DESTTREE}/share/zope/${PV}/"
src_compile() {
python w_pcgi.py || die
}
src_install() {
ENVD_DIR=etc/env.d/
CONFD_DIR=etc/conf.d/
# move the main docs and compress them.
dodoc LICENSE.txt README.txt
docinto doc
dodoc doc/*.txt
docinto doc/PLATFORMS
dodoc doc/PLATFORMS/*
docinto doc/changenotes
dodoc doc/changenotes/*
#rm -fr LICENSE.txt README.txt doc/
# patch some paths.
sed -e "s:${S}:${ZOPEDIR}:" Zope.cgi > Zope.cgi.tmp
mv Zope.cgi.tmp Zope.cgi
chmod 755 Zope.cgi # restoring permissions
# using '/etc/init.d/zope' instead
rm -f start stop
# Keep others from overwritting PID files
chmod o+t var/
# copy the remaining contents of ${S} into the ${D}.
dodir ${ZOPEDIR}
cp -a . ${D}${ZOPEDIR}
# Add a rc-script.
insinto /etc/init.d
newins ${FILESDIR}/${PV}/zope.initd zope
# Add a env.d script.
insinto /etc/env.d
doins ${FILESDIR}/${PV}/zope.envd
# Fill in an env.d variable.
sed -e "/ZOPE_HOME/ c\\ZOPE_HOME=${ZOPEDIR}\\" ${D}${ENVD_DIR}zope.envd \
> ${D}${ENVD_DIR}zope.tmp
mv ${D}${ENVD_DIR}zope.tmp ${D}${ENVD_DIR}50zope
# Add a conf.d script.
dodir ${CONFD_DIR}
echo -e "ZOPE_OPTS='-u root'\nZOPE_HOME=${ZOPEDIR}" > ${D}${CONFD_DIR}zope
}
pkg_postinst() {
einfo "To get zope running you must execure the following:"
einfo "\tebuild /var/db/pkg/net-www/${PF}/${P}.ebuild config"
}
pkg_config() {
einfo ">>> Create inital user...${ROOT}\n"
python ${ROOT}${ZOPEDIR}zpasswd.py ${ROOT}${ZOPEDIR}inituser
}
|