blob: 0d09189421b45a8fb82b3f273037f9ad90f524d7 (
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
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils webapp depend.php versionator
DESCRIPTION="A CalDAV and iCal server"
HOMEPAGE="http://rscds.sourceforge.net/"
SRC_URI="mirror://sourceforge/rscds/rscds-${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="doc vhosts"
DEPEND="doc? ( dev-php/PEAR-PhpDocumentor )"
RDEPEND="www-servers/apache
dev-lang/php
app-admin/pwgen
dev-php/libawl-php
dev-perl/yaml
dev-perl/DBI
dev-perl/DBD-Pg"
S="${WORKDIR}/rscds-${PV}"
need_php5
need_httpd
pkg_setup() {
webapp_pkg_setup
require_php_with_use pcre postgres xml
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/driver_ldap.patch"
}
src_compile() {
if use doc ; then
ebegin "Generating documentation"
phpdoc -c "docs/api/phpdoc.ini"
eend $? || die "Documentation failed to build"
fi
emake inc/always.php
scripts/po/rebuild-translations.sh
}
src_install() {
webapp_src_preinst
local docs="INSTALL README debian/README.debian \
testing/README.regression_tests \
TODO debian/changelog"
dodoc-php ${docs} || die "dodoc failed"
einfo "Installing main files"
local dirs="htdocs inc locale"
insinto "${MY_HTDOCSDIR}"
doins -r ${dirs} || die "doins failed"
einfo "Installing sql files"
insinto "${MY_SQLSCRIPTSDIR}"
doins -r dba/* || die "doins failed"
if use doc ; then
einfo "Installing documentation"
dohtml -r "docs/api/" || die "dohtml failed"
dohtml -r "docs/website/" || die "dohtml failed"
fi
insinto /etc/davical/
newins "${FILESDIR}/rscds.conf" calendar.example.com-conf.php
webapp_postinst_txt en "${FILESDIR}/postinstall-en-${PV}.txt"
webapp_src_install
}
|