2016-04-30 12:43:28 +03:00
|
|
|
# Copyright 1999-2016 Gentoo Foundation
|
2014-11-15 17:08:42 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
2016-02-19 09:07:28 +03:00
|
|
|
inherit webapp eutils
|
2014-11-15 17:08:42 +03:00
|
|
|
|
|
|
|
DESCRIPTION="A CalDAV and CardDAV Server"
|
|
|
|
HOMEPAGE="http://davical.org/"
|
|
|
|
SRC_URI="https://gitlab.com/${PN}-project/${PN}/repository/archive.tar.gz?ref=r${PV} -> ${PN}-${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE="doc"
|
|
|
|
|
2015-05-02 10:18:32 +03:00
|
|
|
DEPEND=">=dev-php/awl-0.55
|
|
|
|
sys-devel/gettext"
|
2014-11-15 17:08:42 +03:00
|
|
|
RDEPEND="app-admin/pwgen
|
2015-05-02 10:18:32 +03:00
|
|
|
dev-lang/php:*[calendar,curl,pdo,postgres,xml]
|
2014-11-15 17:08:42 +03:00
|
|
|
dev-perl/DBI
|
|
|
|
dev-perl/DBD-Pg
|
2016-04-30 12:43:28 +03:00
|
|
|
dev-perl/YAML
|
2015-02-14 16:19:12 +03:00
|
|
|
>=dev-php/awl-0.55
|
2014-11-15 17:08:42 +03:00
|
|
|
virtual/httpd-php"
|
|
|
|
|
|
|
|
S="${WORKDIR}/${PN}.git"
|
|
|
|
|
|
|
|
need_httpd
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}/awl-locations.patch"
|
|
|
|
epatch "${FILESDIR}/inc_path.patch"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake built-po
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
webapp_src_preinst
|
|
|
|
|
2015-12-09 09:03:00 +03:00
|
|
|
dodoc INSTALL README debian/README.Debian \
|
2015-05-02 10:18:32 +03:00
|
|
|
testing/README.regression_tests TODO debian/changelog
|
2014-11-15 17:08:42 +03:00
|
|
|
|
|
|
|
einfo "Installing web files"
|
|
|
|
insinto "${MY_HTDOCSDIR}"
|
|
|
|
doins -r htdocs/* htdocs/.htaccess
|
|
|
|
|
|
|
|
einfo "Installing main files and i18n"
|
|
|
|
insinto "${MY_HOSTROOTDIR}/${PN}"
|
|
|
|
doins -r inc locale
|
|
|
|
rm "${D}/${MY_HOSTROOTDIR}/${PN}/inc/always.php.in" || die
|
|
|
|
|
|
|
|
einfo "Installing sql files"
|
|
|
|
insinto "${MY_SQLSCRIPTSDIR}"
|
|
|
|
doins -r dba/*
|
|
|
|
|
|
|
|
if use doc ; then
|
|
|
|
einfo "Installing documentation"
|
|
|
|
dohtml -r docs/api/ docs/website/
|
|
|
|
fi
|
|
|
|
|
|
|
|
insinto /etc/${PN}
|
|
|
|
doins config/* "${FILESDIR}/vhost-example"
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|