diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2011-07-12 05:29:39 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2011-07-12 05:29:39 +0000 |
commit | 09da2379140ce5cd8b1ecbf996cdb7a31c011185 (patch) | |
tree | fd311391d9dd64a1b7a1c7078f63355c5e36f917 /dev-php5/libvirt-php | |
parent | Add more mingw support -- respect RC/WINDRES settings, check ming64 hosts, an... (diff) | |
download | gentoo-2-09da2379140ce5cd8b1ecbf996cdb7a31c011185.tar.gz gentoo-2-09da2379140ce5cd8b1ecbf996cdb7a31c011185.tar.bz2 gentoo-2-09da2379140ce5cd8b1ecbf996cdb7a31c011185.zip |
Version bump.
(Portage version: 2.1.10.4/cvs/Linux x86_64)
Diffstat (limited to 'dev-php5/libvirt-php')
-rw-r--r-- | dev-php5/libvirt-php/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php5/libvirt-php/libvirt-php-0.4.2.ebuild | 39 | ||||
-rw-r--r-- | dev-php5/libvirt-php/libvirt-php-9999.ebuild | 7 |
3 files changed, 49 insertions, 5 deletions
diff --git a/dev-php5/libvirt-php/ChangeLog b/dev-php5/libvirt-php/ChangeLog index 6721ac436a78..9e0d4655c288 100644 --- a/dev-php5/libvirt-php/ChangeLog +++ b/dev-php5/libvirt-php/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-php5/libvirt-php # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/libvirt-php/ChangeLog,v 1.3 2011/06/06 15:09:40 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/libvirt-php/ChangeLog,v 1.4 2011/07/12 05:29:39 dev-zero Exp $ + +*libvirt-php-0.4.2 (10 Jul 2011) + + 10 Jul 2011; Tiziano Müller <dev-zero@gentoo.org> +libvirt-php-0.4.2.ebuild, + libvirt-php-9999.ebuild: + Version bump. 06 Jun 2011; Mark Loeser <halcy0n@gentoo.org> libvirt-php-9999.ebuild: Live ebuilds don't get keywords; bug #370235 diff --git a/dev-php5/libvirt-php/libvirt-php-0.4.2.ebuild b/dev-php5/libvirt-php/libvirt-php-0.4.2.ebuild new file mode 100644 index 000000000000..192e61008198 --- /dev/null +++ b/dev-php5/libvirt-php/libvirt-php-0.4.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/libvirt-php/libvirt-php-0.4.2.ebuild,v 1.1 2011/07/12 05:29:39 dev-zero Exp $ + +EAPI=3 + +PHP_EXT_NAME="libvirt-php" + +inherit php-ext-source-r2 eutils + +DESCRIPTION="PHP 5 bindings for libvirt." +HOMEPAGE="http://libvirt.org/php/" +SRC_URI="http://libvirt.org/sources/php/${P}.tar.gz" + +LICENSE="PHP-3.01" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" + +RDEPEND="app-emulation/libvirt + dev-libs/libxml2" +DEPEND="${DEPEND} + doc? ( app-text/xhtml1 dev-libs/libxslt )" + +src_unpack() { + default + # create the default modules directory to be able + # to use the php-ext-source-r2 eclass to install + ln -s src "${S}/modules" + + for slot in $(php_get_slots); do + cp -r "${S}" "${WORKDIR}/${slot}" + done +} + +src_install() { + php-ext-source-r2_src_install + use doc && dohtml docs/* docs/graphics/* +} diff --git a/dev-php5/libvirt-php/libvirt-php-9999.ebuild b/dev-php5/libvirt-php/libvirt-php-9999.ebuild index 4b548f4f5b5b..b49aea536257 100644 --- a/dev-php5/libvirt-php/libvirt-php-9999.ebuild +++ b/dev-php5/libvirt-php/libvirt-php-9999.ebuild @@ -1,16 +1,15 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/libvirt-php/libvirt-php-9999.ebuild,v 1.3 2011/06/06 15:09:40 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php5/libvirt-php/libvirt-php-9999.ebuild,v 1.4 2011/07/12 05:29:39 dev-zero Exp $ EAPI=3 -PHP_EXT_NAME="php-libvirt" -USE_PHP="php5-3 php5-2" +PHP_EXT_NAME="libvirt-php" inherit php-ext-source-r2 git eutils DESCRIPTION="PHP 5 bindings for libvirt." -HOMEPAGE="http://libvirt.org/php.html" +HOMEPAGE="http://libvirt.org/php/" EGIT_REPO_URI="git://libvirt.org/libvirt-php.git" LICENSE="PHP-3.01" |