diff options
author | Matti Bickel <mabi@gentoo.org> | 2011-12-14 22:57:20 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2011-12-14 22:57:20 +0000 |
commit | 37185de2eff1409dc7abe39ac6aa5087fcd20136 (patch) | |
tree | d0c227d9d72631cf8cf14a810d13ae41a6abaef1 /dev-php/pecl-haru | |
parent | Merging categories dev-php5 and dev-php (bug #324665) (diff) | |
download | historical-37185de2eff1409dc7abe39ac6aa5087fcd20136.tar.gz historical-37185de2eff1409dc7abe39ac6aa5087fcd20136.tar.bz2 historical-37185de2eff1409dc7abe39ac6aa5087fcd20136.zip |
Moving package from dev-php5 to dev-php category (bug #324665)
Package-Manager: portage-2.2.0_alpha79/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'dev-php/pecl-haru')
-rw-r--r-- | dev-php/pecl-haru/ChangeLog | 15 | ||||
-rw-r--r-- | dev-php/pecl-haru/metadata.xml | 9 | ||||
-rw-r--r-- | dev-php/pecl-haru/pecl-haru-1.0.0-r1.ebuild | 28 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-php/pecl-haru/ChangeLog b/dev-php/pecl-haru/ChangeLog new file mode 100644 index 000000000000..7319cb4adab8 --- /dev/null +++ b/dev-php/pecl-haru/ChangeLog @@ -0,0 +1,15 @@ +# ChangeLog for dev-php5/pecl-haru +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/ChangeLog,v 1.1 2011/12/14 22:37:15 mabi Exp $ + +*pecl-haru-1.0.0-r1 (04 Nov 2010) + + 04 Nov 2010; Matti Bickel <mabi@gentoo.org> +pecl-haru-1.0.0-r1.ebuild: + add version that supports minor version slotting + +*pecl-haru-1.0.0 (26 Sep 2010) + + 26 Sep 2010; <olemarkus@gentoo.org> +pecl-haru-1.0.0.ebuild, + +metadata.xml: + Added pecl-haru (bug #249443) + diff --git a/dev-php/pecl-haru/metadata.xml b/dev-php/pecl-haru/metadata.xml new file mode 100644 index 000000000000..0c93320ef0b0 --- /dev/null +++ b/dev-php/pecl-haru/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>php</herd> + <longdescription lang="en">These functions allow you to create PDF documents + using the Haru Free PDF Library. + </longdescription> +</pkgmetadata> + diff --git a/dev-php/pecl-haru/pecl-haru-1.0.0-r1.ebuild b/dev-php/pecl-haru/pecl-haru-1.0.0-r1.ebuild new file mode 100644 index 000000000000..921c599460ad --- /dev/null +++ b/dev-php/pecl-haru/pecl-haru-1.0.0-r1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.0-r1.ebuild,v 1.1 2011/12/14 22:37:15 mabi Exp $ + +EAPI=3 + +PHP_EXT_NAME="haru" + +inherit php-ext-pecl-r2 + +DESCRIPTION="An interface to libharu, a PDF generator" + +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="png zlib" + +DEPEND="media-libs/libharu[png?,zlib?]" +RDEPEND="${DEPEND}" + +src_configure() { + # config.m4 is broken checking paths, so we need to override it + my_conf="--with-haru=/usr" + use png && my_conf+=" --with-png-dir=/usr" + use zlib && my_conf+=" --with-zlib-dir=/usr" + + php-ext-source-r2_src_configure +} |