You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/www-apps/davical/davical-1.1.0.ebuild,v 1.1 2012/06/26 09:39:33 patrick Exp $
|
|
|
|
EAPI=2
|
|
|
|
inherit depend.php webapp
|
|
|
|
DESCRIPTION="A CalDAV and CardDAV Server"
|
|
HOMEPAGE="http://davical.org/"
|
|
SRC_URI="http://debian.mcmillan.net.nz/packages/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="doc"
|
|
|
|
DEPEND="doc? ( dev-php/PEAR-PhpDocumentor )"
|
|
RDEPEND="app-admin/pwgen
|
|
dev-lang/php[calendar,curl,pdo,postgres,xml]
|
|
dev-perl/DBI
|
|
dev-perl/DBD-Pg
|
|
dev-perl/yaml
|
|
>=dev-php/awl-0.51
|
|
www-servers/apache"
|
|
|
|
need_php5
|
|
need_httpd
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/awl_location.patch"
|
|
epatch "${FILESDIR}/inc_path.patch"
|
|
}
|
|
|
|
src_compile() {
|
|
if use doc ; then
|
|
einfo "Generating documentation"
|
|
phpdoc -q -c "docs/api/phpdoc.ini"\
|
|
|| die "Documentation failed to build"
|
|
fi
|
|
emake built-po || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
webapp_src_preinst
|
|
|
|
dodoc-php INSTALL README debian/README.Debian \
|
|
testing/README.regression_tests TODO debian/changelog \
|
|
|| die "dodoc failed"
|
|
|
|
einfo "Installing web files"
|
|
insinto "${MY_HTDOCSDIR}"
|
|
doins -r htdocs/* htdocs/.htaccess || die "doins failed"
|
|
|
|
einfo "Installing main files and i18n"
|
|
insinto "${MY_HOSTROOTDIR}/${PN}"
|
|
doins -r inc locale || die "doins failed"
|
|
rm "${D}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die
|
|
|
|
einfo "Installing sql files"
|
|
insinto "${MY_SQLSCRIPTSDIR}"
|
|
doins -r dba/* || die "doins failed"
|
|
|
|
if use doc ; then
|
|
einfo "Installing documentation"
|
|
dohtml -r docs/api/ docs/website/ || die "dohtml failed"
|
|
fi
|
|
|
|
insinto /etc/${PN}
|
|
doins config/* "${FILESDIR}/vhost-example" \
|
|
|| die "newins failed"
|
|
|
|
webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
|
|
webapp_src_install
|
|
|
|
fperms +x "${MY_SQLSCRIPTSDIR}/create-database.sh"
|
|
fperms +x "${MY_SQLSCRIPTSDIR}/update-davical-database"
|
|
}
|