From 30cd4f490801aa627c60b8fc935643b3e7dd6c40 Mon Sep 17 00:00:00 2001 From: lebarjack Date: Wed, 5 Nov 2008 10:16:45 +0000 Subject: dev-php/awl: New version. Renamed to dev-php/awl to reflect upstream naming scheme svn path=/sunrise/; revision=7306 --- dev-php/awl/ChangeLog | 4 ++++ dev-php/awl/Manifest | 5 ++-- dev-php/awl/awl-0.33.ebuild | 46 +++++++++++++++++++++++++++++++++++++ dev-php/awl/libawl-php-0.31.ebuild | 47 -------------------------------------- 4 files changed, 53 insertions(+), 49 deletions(-) create mode 100644 dev-php/awl/awl-0.33.ebuild delete mode 100644 dev-php/awl/libawl-php-0.31.ebuild (limited to 'dev-php') diff --git a/dev-php/awl/ChangeLog b/dev-php/awl/ChangeLog index d1c3de48d..ead6fb0c4 100644 --- a/dev-php/awl/ChangeLog +++ b/dev-php/awl/ChangeLog @@ -2,6 +2,10 @@ # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 05 Nov 2008; lebarjack + -libawl-php-0.31.ebuild, +awl-0.33.ebuild: + New version. Renamed to dev-php/awl to reflect upstream naming scheme + 16 Sep 2008; lebarjack -libawl-php-0.29.ebuild, +libawl-php-0.31.ebuild: New version for awl (libawl-php) diff --git a/dev-php/awl/Manifest b/dev-php/awl/Manifest index 75c7d974b..4031f08a1 100644 --- a/dev-php/awl/Manifest +++ b/dev-php/awl/Manifest @@ -1,3 +1,4 @@ -EBUILD libawl-php-0.31.ebuild 1064 RMD160 5061d70b00818ae25e766efcfaf166547c615eee SHA1 6ac282a6eec02ab96cda5e4a8565d619062bb4b9 SHA256 861369efde647e552b792384988d9d0a5bd1c3dd265c5a48605b6ce94c397e5f -MISC ChangeLog 450 RMD160 efc10e97231ccfefc276f4908b26bd1c5b881efe SHA1 d75369248ede5f00898aec187c6e0e91309e1dc5 SHA256 2e7e5ac4b6d53a0f5b16c6e33664ebc5a417ed4de88e0f0cf2f707d04190c01a +DIST awl_0.33.tar.gz 203192 RMD160 1a13d800c2dd1cac72c4febbf80f70785e46dad1 SHA1 19e6c4af01f1be3cba4ce0e5e139fa15051bd0f1 SHA256 ca3c5cb39b7071278ad55d0cee4bf169d55f49f8203137c93e2a64201ea52625 +EBUILD awl-0.33.ebuild 1068 RMD160 81997202403df8cb450cf37b2857189e56be7cab SHA1 307b107b6f96ddff678d09256fa942e9bbd304cc SHA256 eaa0cad9411c077b55b8887a062d4487ae6c481387b1913c0dc476c3002f612b +MISC ChangeLog 628 RMD160 4cdb91ee08256ef77d0af103d103081f9c5aa231 SHA1 d0718b239c65cc7431aefce95065cfe08dd64657 SHA256 5533e6a903d31a6083981628d7e9f68d604cc3908e1abe2d539857109941e952 MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/dev-php/awl/awl-0.33.ebuild b/dev-php/awl/awl-0.33.ebuild new file mode 100644 index 000000000..06b5c4561 --- /dev/null +++ b/dev-php/awl/awl-0.33.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils 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" +SRC_URI="http://debian.mcmillan.net.nz/packages/awl/awl_${PV}.tar.gz" + +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/libawl-php-0.31.ebuild b/dev-php/awl/libawl-php-0.31.ebuild deleted file mode 100644 index 02827f808..000000000 --- a/dev-php/awl/libawl-php-0.31.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# 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"` -} -- cgit v1.2.3-65-gdbad