blob: b7a63c482368914627d75aa0c65fb88495b48859 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/egroupware/egroupware-1.0.0.007.ebuild,v 1.5 2005/04/23 21:26:27 mholzer Exp $
inherit webapp
MY_P=eGroupWare-${PV}-2
S=${WORKDIR}/${PN}
DESCRIPTION="Web-based GroupWare suite. It contains many modules"
HOMEPAGE="http://www.eGroupWare.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="x86 ppc alpha amd64 ~sparc ~hppa"
IUSE="ldap"
RDEPEND="virtual/php
|| ( >=dev-db/mysql-3.23 >=dev-db/postgresql-7.2 )
ldap? ( net-nds/openldap )
net-www/apache"
pkg_setup () {
webapp_pkg_setup
einfo "Please make sure that your PHP is compiled with LDAP (if using openldap), IMAP, and MySQL|PostgreSQL support"
einfo
einfo "Consider installing an MTA if you want to take advantage of eGW's mail capabilities."
}
src_install() {
webapp_src_preinst
cd ${S}
# remove CVS directories
find . -type d -name 'CVS' -print | xargs rm -rf
cp -r . ${D}/${MY_HTDOCSDIR}
webapp_serverowned ${MY_HTDOCSDIR}/fudforum
webapp_serverowned ${MY_HTDOCSDIR}/phpgwapi/images
# add post-installation instructions
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|