blob: 1f7eb923bc2f43e1abd393595f250d2a765057e3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/moinmoin/moinmoin-1.3.5-r1.ebuild,v 1.4 2006/07/11 05:01:39 tsunam 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="~amd64 ppc sparc x86"
LICENSE="GPL-2"
IUSE="rss"
SLOT="0"
WEBAPP_MANUAL_SLOT="yes"
DEPEND=">=dev-lang/python-2.2"
RDEPEND="${DEPEND}
rss? ( >=dev-python/pyxml-0.8.4 )
!<www-apps/moinmoin-1.3.5-r1"
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 ChangeLog README docs/CHANGES docs/README.migration
dohtml docs/INSTALL.html docs/UPDATE.html
dodir ${MY_HOSTROOTDIR}/${PF}
cd ${D}/usr/share/moin
cp -r htdocs/* server/moin.cgi ${D}/${MY_HTDOCSDIR}
chmod +x ${D}/${MY_HTDOCSDIR}/moin.cgi
cp -r data underlay config/wikiconfig.py ${D}/${MY_HOSTROOTDIR}/${PF}
cp -r config ${D}/${MY_HOSTROOTDIR}/${PF}/altconfigs
cp -r server ${D}/${MY_HOSTROOTDIR}/${PF}/altserver
# data needs to be serverowned per moin devs
cd ${D}/${MY_HOSTROOTDIR}/${PF}
for file in $(find data underlay); do
webapp_serverowned "${MY_HOSTROOTDIR}/${PF}/${file}"
done
webapp_configfile ${MY_HOSTROOTDIR}/${PF}/wikiconfig.py
webapp_hook_script ${FILESDIR}/reconfig-2
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/${PF}/README.migration.gz"
webapp_pkg_postinst
}
|