blob: dc0c829e6b9eee05dbc63079ff4e702460bc34df (
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
|
# Copyright 1999-2006 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.009_p3.ebuild,v 1.8 2006/11/23 17:06:02 vivo Exp $
inherit webapp #depend.php
MY_P=eGroupWare-${PV/_p3}-3
S=${WORKDIR}/${PN}
DESCRIPTION="Web-based GroupWare suite"
HOMEPAGE="http://www.eGroupWare.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ~hppa ppc ~sparc x86"
IUSE="gd ldap"
RDEPEND="virtual/php
|| ( virtual/mysql >=dev-db/postgresql-7.2 )
ldap? ( net-nds/openldap )
gd? ( media-libs/gd )
net-www/apache"
pkg_setup () {
webapp_pkg_setup
# require_php_with_use imap
elog "Your PHP needs to be compiled with IMAP support"
if useq ldap; then
# require_php_with_use ldap
elog "Your PHP needs to be compiled with LDAP support"
fi
elog "Please make sure that your PHP is compiled with MySQL|PostgreSQL support"
elog
elog "Consider installing an MTA if you want to use eGW's mail capabilities."
}
src_unpack() {
unpack ${A}
cd ${S}
# remove CVS directories
find . -type d -name 'CVS' -print | xargs rm -rf
}
src_install() {
webapp_src_preinst
cp -r . ${D}/${MY_HTDOCSDIR}
webapp_serverowned ${MY_HTDOCSDIR}/fudforum
webapp_serverowned ${MY_HTDOCSDIR}/phpgwapi/images
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|