blob: 2b613f7ca0fed44d25d604e6af7745c71c31e491 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/moinmoin/moinmoin-1.3.3.ebuild,v 1.1 2005/02/08 18:14:14 g2boojum Exp $
inherit webapp
PN0="moin"
S=${WORKDIR}/${PN0}-${PV}
DESCRIPTION="Python WikiClone"
SRC_URI="http://download.sourceforge.net/${PN0}/${PN0}-${PV}.tar.gz"
HOMEPAGE="http://moin.sourceforge.net"
KEYWORDS="~x86 ~sparc ~amd64 ~ppc"
LICENSE="GPL-2"
IUSE=""
DEPEND=">=dev-lang/python-2.2"
src_compile() {
python setup.py build || die "python build failed"
}
src_install () {
webapp_src_preinst
python setup.py install --root=${D} --prefix=/usr install || die "python install failed"
dodoc CHANGES COPYING ChangeLog INSTALL.html LICENSE.Python \
README README.migration UPDATE.html
cd ${D}/usr/share/moin
cp -r data underlay htdocs/* server/moin.cgi config/wikiconfig.py \
${D}/${MY_HTDOCSDIR}
cp -r config ${D}/${MY_HTDOCSDIR}/altconfigs
cp -r server ${D}/${MY_HTDOCSDIR}/altserver
cd ${D}/${MY_HTDOCSDIR}
# data needs to be serverowned per moin devs
for file in `find data`; do
webapp_serverowned "${MY_HTDOCSDIR}/${file}"
done
chmod +x moin.cgi
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
pkg_postinst() {
ewarn "If you are upgrading from 1.2.x to 1.3.x, please read"
ewarn "/usr/share/doc/${P}/README.migration.gz"
}
|