blob: 0cac93a194b030869e1c83065381a7be834e165d (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/horde-chora/horde-chora-1.2-r1.ebuild,v 1.7 2003/12/08 02:01:24 mholzer Exp $
inherit webapp-apache
DESCRIPTION="Chora ${PV} is the Horde CVS viewer."
HOMEPAGE="http://www.horde.org"
MY_P=${P/horde-/}
SRC_URI="ftp://ftp.horde.org/pub/chora/tarballs/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
DEPEND=""
RDEPEND=">=net-www/horde-2.2.4
>=app-text/rcs-5.7-r1
>=dev-util/cvs-1.11.2"
IUSE=""
S=${WORKDIR}/${MY_P}
webapp-detect || NO_WEBSERVER=1
pkg_setup() {
webapp-pkg_setup "${NO_WEBSERVER}"
einfo "Installing into ${ROOT}${HTTPD_ROOT}."
}
src_install () {
local DocumentRoot=${HTTPD_ROOT}
local destdir=${DocumentRoot}/horde/chora
dodoc COPYING README docs/*
rm -rf COPYING README docs
dodir ${destdir}
cp -r . ${D}${destdir}
cd ${D}/${HTTPD_ROOT}/horde
# protecting files
chown -R ${HTTPD_USER}:${HTTPD_GROUP} chora
find ${D}/${destdir} -type f -exec chmod 0640 {} \;
find ${D}/${destdir} -type d -exec chmod 0750 {} \;
}
pkg_postinst() {
einfo "Please read /usr/share/doc/${PF}/INSTALL.gz"
}
|