diff options
author | 2013-04-04 20:26:04 +0000 | |
---|---|---|
committer | 2013-04-04 20:26:04 +0000 | |
commit | 2137d9f02baaea6ce94ac3b4decd7f6f2bf19f7d (patch) | |
tree | 5666bce45f919af0d9cfad91cb31043a421dc414 /dev-php/awl/awl-0.53-r1.ebuild | |
parent | Stable for x86, wrt bug #463426 (diff) | |
download | gentoo-2-2137d9f02baaea6ce94ac3b4decd7f6f2bf19f7d.tar.gz gentoo-2-2137d9f02baaea6ce94ac3b4decd7f6f2bf19f7d.tar.bz2 gentoo-2-2137d9f02baaea6ce94ac3b4decd7f6f2bf19f7d.zip |
eapi bump, only require php at runtime
(Portage version: 2.2.0_alpha168/cvs/Linux x86_64, signed Manifest commit with key 0x4849EC6C)
Diffstat (limited to 'dev-php/awl/awl-0.53-r1.ebuild')
-rw-r--r-- | dev-php/awl/awl-0.53-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-php/awl/awl-0.53-r1.ebuild b/dev-php/awl/awl-0.53-r1.ebuild new file mode 100644 index 000000000000..89f9588bb036 --- /dev/null +++ b/dev-php/awl/awl-0.53-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/awl/awl-0.53-r1.ebuild,v 1.1 2013/04/04 20:26:04 mabi Exp $ + +EAPI=4 + +DESCRIPTION="Andrew McMillan's web libraries: A collection of generic classes +used by the davical calendar server" +HOMEPAGE="http://andrew.mcmillan.net.nz/projects/awl" +SRC_URI="http://debian.mcmillan.net.nz/packages/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="doc? ( dev-php/PEAR-PhpDocumentor )" +RDEPEND="dev-lang/php[pdo,postgres,xml]" + +DOCS="debian/README.Debian debian/changelog" + +src_compile() { + if use doc ; then + ebegin "Generating documentation" + phpdoc -c "docs/api/phpdoc.ini" || die "Documentation failed to build" + fi +} + +src_install() { + use doc && dohtml -r "docs/api/" + insinto "/usr/share/php/${PN}" + doins -r dba inc scripts +} |