diff options
author | lebarjack <francois.perichon@univ-lille2.fr> | 2008-11-05 10:28:43 +0000 |
---|---|---|
committer | lebarjack <francois.perichon@univ-lille2.fr> | 2008-11-05 10:28:43 +0000 |
commit | 12b33c4c25362e79100a8f1bfd0b732737a5acb4 (patch) | |
tree | 53d0887887eb74b8a38e751adfd506c2e60b9b8b /www-apps/davical/davical-0.9.6.1.ebuild | |
parent | dev-php/awl: New version. Renamed to dev-php/awl to reflect upstream naming s... (diff) | |
download | sunrise-12b33c4c25362e79100a8f1bfd0b732737a5acb4.tar.gz sunrise-12b33c4c25362e79100a8f1bfd0b732737a5acb4.tar.bz2 sunrise-12b33c4c25362e79100a8f1bfd0b732737a5acb4.zip |
www-apps/davical: New version
svn path=/sunrise/; revision=7307
Diffstat (limited to 'www-apps/davical/davical-0.9.6.1.ebuild')
-rw-r--r-- | www-apps/davical/davical-0.9.6.1.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/www-apps/davical/davical-0.9.6.1.ebuild b/www-apps/davical/davical-0.9.6.1.ebuild new file mode 100644 index 000000000..a2471edba --- /dev/null +++ b/www-apps/davical/davical-0.9.6.1.ebuild @@ -0,0 +1,69 @@ +# 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://davical.org/" +SRC_URI="http://debian.mcmillan.net.nz/packages/davical/${PN}_${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/awl-0.33 + dev-perl/yaml + dev-perl/DBI + dev-perl/DBD-Pg" + +need_php5 +need_httpd + +pkg_setup() { + webapp_pkg_setup + require_php_with_use pcre postgres xml +} + +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 +} |