Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/libvirt-glib: metadata.xml ChangeLog libvirt-glib-0.0.1.ebuild
Date: Wed, 16 Nov 2011 23:38:54
Message-Id: 20111116233844.3F03A2004B@flycatcher.gentoo.org
1 nirbheek 11/11/16 23:38:44
2
3 Added: metadata.xml ChangeLog libvirt-glib-0.0.1.ebuild
4 Log:
5 New package, gobject bindings to libvirt, used by gnome-boxes
6
7 (Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-emulation/libvirt-glib/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>gnome</herd>
21 <use>
22 <flag name="introspection">Use <pkg>dev-libs/gobject-introspection</pkg>
23 for introspection</flag>
24 <flag name="vala">Enable bindings for <pkg>dev-lang/vala</pkg></flag>
25 </use>
26 </pkgmetadata>
27
28
29
30 1.1 app-emulation/libvirt-glib/ChangeLog
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/ChangeLog?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/ChangeLog?rev=1.1&content-type=text/plain
34
35 Index: ChangeLog
36 ===================================================================
37 # ChangeLog for app-emulation/libvirt-glib
38 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
39 # $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/ChangeLog,v 1.1 2011/11/16 23:38:44 nirbheek Exp $
40
41 *libvirt-glib-0.0.1 (16 Nov 2011)
42
43 16 Nov 2011; Nirbheek Chauhan <nirbheek@g.o>
44 +libvirt-glib-0.0.1.ebuild, +metadata.xml:
45 New package, gobject bindings to libvirt, used by gnome-boxes
46
47
48
49
50 1.1 app-emulation/libvirt-glib/libvirt-glib-0.0.1.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.0.1.ebuild?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.0.1.ebuild?rev=1.1&content-type=text/plain
54
55 Index: libvirt-glib-0.0.1.ebuild
56 ===================================================================
57 # Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 # $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt-glib/libvirt-glib-0.0.1.ebuild,v 1.1 2011/11/16 23:38:44 nirbheek Exp $
60
61 EAPI="4"
62 GCONF_DEBUG="no"
63 GNOME2_LA_PUNT="yes"
64
65 inherit gnome2 python
66
67 DESCRIPTION="GLib and GObject mappings for libvirt"
68 HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git"
69 SRC_URI="ftp://libvirt.org/libvirt/glib/${P}.tar.gz"
70
71 LICENSE="LGPL-2.1"
72 SLOT="0"
73 KEYWORDS="~amd64 ~x86"
74 IUSE="doc +introspection python +vala"
75 REQUIRED_USE="vala? ( introspection )"
76
77 RDEPEND="
78 dev-libs/libxml2:2
79 >=app-emulation/libvirt-0.9.4
80 >=dev-libs/glib-2.10:2
81 introspection? ( >=dev-libs/gobject-introspection-0.10.8 )"
82 DEPEND="${RDEPEND}
83 dev-util/pkgconfig
84 doc? ( >=dev-util/gtk-doc-1.10 )
85 vala? ( dev-lang/vala:0.14 )"
86
87 pkg_setup() {
88 DOCS="AUTHORS ChangeLog HACKING NEWS README"
89 G2CONF="--disable-test-coverage
90 VAPIGEN=$(type -P vapigen-0.14)
91 $(use_enable introspection)
92 $(use_enable vala)
93 $(use_with python)"
94
95 python_set_active_version 2
96 python_pkg_setup
97 }