diff options
Diffstat (limited to 'dev-php/awl')
-rw-r--r-- | dev-php/awl/ChangeLog | 12 | ||||
-rw-r--r-- | dev-php/awl/Manifest | 3 | ||||
-rw-r--r-- | dev-php/awl/libawl-php-0.31.ebuild | 47 | ||||
-rw-r--r-- | dev-php/awl/metadata.xml | 5 |
4 files changed, 67 insertions, 0 deletions
diff --git a/dev-php/awl/ChangeLog b/dev-php/awl/ChangeLog new file mode 100644 index 000000000..d1c3de48d --- /dev/null +++ b/dev-php/awl/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for dev-php/libawl-php +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 16 Sep 2008; lebarjack <francois.perichon@univ-lille2.fr> + -libawl-php-0.29.ebuild, +libawl-php-0.31.ebuild: + New version for awl (libawl-php) + + 23 Jun 2008; lebarjack <francois.perichon@univ-lille2.fr> + +libawl-php-0.29.ebuild, +metadata.xml: + New ebuild for bug 229025 - (initial work by Cory Coager <ccoager@gmail.com>) + diff --git a/dev-php/awl/Manifest b/dev-php/awl/Manifest new file mode 100644 index 000000000..75c7d974b --- /dev/null +++ b/dev-php/awl/Manifest @@ -0,0 +1,3 @@ +EBUILD libawl-php-0.31.ebuild 1064 RMD160 5061d70b00818ae25e766efcfaf166547c615eee SHA1 6ac282a6eec02ab96cda5e4a8565d619062bb4b9 SHA256 861369efde647e552b792384988d9d0a5bd1c3dd265c5a48605b6ce94c397e5f +MISC ChangeLog 450 RMD160 efc10e97231ccfefc276f4908b26bd1c5b881efe SHA1 d75369248ede5f00898aec187c6e0e91309e1dc5 SHA256 2e7e5ac4b6d53a0f5b16c6e33664ebc5a417ed4de88e0f0cf2f707d04190c01a +MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/dev-php/awl/libawl-php-0.31.ebuild b/dev-php/awl/libawl-php-0.31.ebuild new file mode 100644 index 000000000..02827f808 --- /dev/null +++ b/dev-php/awl/libawl-php-0.31.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils git php-lib-r1 + +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" +EGIT_REPO_URI="http://repo.or.cz/r/awl.git" +EGIT_TREE="${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="doc? ( dev-php/PEAR-PhpDocumentor )" +RDEPEND="${DEPEND}" + +need_php5 + +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 +} + +src_install() { + local docs="debian/README.Debian debian/changelog" + dodoc-php ${docs} || die "dodoc failed" + + if use doc ; then + dohtml -r "docs/api/" || die "dohtml failed" + fi + + insinto /usr/share/awl + doins -r dba || die "doins failed" + + php-lib-r1_src_install ./inc `find ./inc -type f -print | sed -e "s|./inc||g"` +} diff --git a/dev-php/awl/metadata.xml b/dev-php/awl/metadata.xml new file mode 100644 index 000000000..7e3286984 --- /dev/null +++ b/dev-php/awl/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>maintainer-wanted</herd> +</pkgmetadata> |