Gentoo Archives: gentoo-commits

From: "Doug Goldstein (cardoe)" <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/libvirt-php: ChangeLog libvirt-php-0.4.7.ebuild
Date: Sat, 02 Mar 2013 05:12:12
Message-Id: 20130302051208.1F9852171D@flycatcher.gentoo.org
1 cardoe 13/03/02 05:12:08
2
3 Modified: ChangeLog
4 Added: libvirt-php-0.4.7.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key D7DFA8D318FA9AEF!)
9
10 Revision Changes Path
11 1.6 dev-php/libvirt-php/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/libvirt-php/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/libvirt-php/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/libvirt-php/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/libvirt-php/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 5 Nov 2012 06:13:37 -0000 1.5
24 +++ ChangeLog 2 Mar 2013 05:12:07 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/libvirt-php
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/libvirt-php/ChangeLog,v 1.5 2012/11/05 06:13:37 dev-zero Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/libvirt-php/ChangeLog,v 1.6 2013/03/02 05:12:07 cardoe Exp $
31 +
32 +*libvirt-php-0.4.7 (02 Mar 2013)
33 +
34 + 02 Mar 2013; Doug Goldstein <cardoe@g.o> +libvirt-php-0.4.7.ebuild:
35 + Version bump
36
37 05 Nov 2012; Tiziano Müller <dev-zero@g.o> libvirt-php-0.4.2.ebuild,
38 libvirt-php-0.4.6.ebuild, libvirt-php-9999.ebuild:
39
40
41
42 1.1 dev-php/libvirt-php/libvirt-php-0.4.7.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/libvirt-php/libvirt-php-0.4.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/libvirt-php/libvirt-php-0.4.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libvirt-php-0.4.7.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-php/libvirt-php/libvirt-php-0.4.7.ebuild,v 1.1 2013/03/02 05:12:07 cardoe Exp $
52
53 EAPI=4
54
55 PHP_EXT_NAME="libvirt-php"
56 PHP_EXT_SKIP_PHPIZE="yes"
57 USE_PHP="php5-3 php5-4"
58
59 inherit php-ext-source-r2 eutils
60
61 DESCRIPTION="PHP 5 bindings for libvirt."
62 HOMEPAGE="http://libvirt.org/php/"
63 SRC_URI="http://libvirt.org/sources/php/${P}.tar.gz"
64
65 LICENSE="PHP-3.01"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="doc"
69
70 RDEPEND="app-emulation/libvirt
71 dev-libs/libxml2"
72 DEPEND="${RDEPEND}
73 dev-libs/libxslt
74 doc? ( app-text/xhtml1 )"
75
76 RESTRICT="test"
77
78 src_unpack() {
79 default
80 # create the default modules directory to be able
81 # to use the php-ext-source-r2 eclass to configure/build
82 ln -s src "${S}/modules"
83
84 for slot in $(php_get_slots); do
85 cp -r "${S}" "${WORKDIR}/${slot}"
86 done
87 }
88
89 src_install() {
90 for slot in $(php_get_slots); do
91 php_init_slot_env ${slot}
92 insinto "${EXT_DIR}"
93 newins "src/${PHP_EXT_NAME}.so" "${PHP_EXT_NAME}.so"
94 done
95 php-ext-source-r2_createinifiles
96 dodoc AUTHORS ChangeLog NEWS README
97 use doc && dohtml docs/* docs/graphics/*
98 }