blob: 77079984f0e8409b0c8b8fad53458467d1631602 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/twiki/twiki-20030201.ebuild,v 1.1 2004/08/15 15:49:56 stuart Exp $
inherit webapp-apache
DESCRIPTION="A Web Based Collaboration Platform"
HOMEPAGE="http://twiki.org/"
SRC_URI="http://twiki.org/swd/TWiki${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~ppc"
S=${WORKDIR}
RDEPEND="virtual/php
media-gfx/graphviz
dev-db/mysql"
IUSE="apache2"
pkg_setup() {
webapp-detect || NO_WEBSERVER=1
webapp-pkg_setup "${NO_WEBSERVER}"
einfo "Installing for ${WEBAPP_SERVER}"
}
src_unpack() {
unpack ${A}
sed -i -e 's:\/home\/httpd:\/var\/www:g' lib/TWiki.cfg
# sed -i -e 's:urlpath\/to:var\/www\/localhost\/htdocs:g' \
# bin/.htaccess.txt
# echo "Options ExecCGI" >> bin/.htaccess.txt
}
src_install() {
local destdir=/var/www/twiki
dodir ${destdir}
cp -r . ${D}${destdir}
if use apache2; then
dodir /etc/apache2/conf/modules.d
insinto /etc/apache2/conf/modules.d
newins ${FILESDIR}/twiki.conf 97_twiki.conf
else
dodir /etc/apache/conf/addon-modules
insinto /etc/apache/conf/addon-modules
doins ${FILESDIR}/twiki.conf
fi
dodoc readme.txt license.txt
chown -R ${HTTPD_USER}:${HTTPD_GROUP} ${D}${destdir}
chmod 0775 -R ${D}${destdir}/pub ${D}${destdir}/data
chown nobody -R ${D}${destdir}/pub ${D}${destdir}/data
#find ${D}/${HTTPD_ROOT}/${PN}/templates -type d -exec chmod 0440 {} \;
# chmod 0444 -R ${PN}/templates
}
pkg_postinst() {
einfo "now go to your ${HTTPD_ROOT}/{PN},"
einfo "copy bin/.htaccess.txt to bin/.htaccess"
einfo "and be sure to read"
einfo "http://localhost/twiki/bin/view/TWiki/TWikiDocumentation#TWiki_Installation_Guide"
}
|