Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: dev-python/pygobject/
Date: Sun, 02 Oct 2011 00:31:13
Message-Id: cc220b02c845fef5b2905b3cae44c45d805bcddc.tetromino@gentoo
1 commit: cc220b02c845fef5b2905b3cae44c45d805bcddc
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 2 00:28:39 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Sun Oct 2 00:28:39 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=cc220b02
7
8 dev-python/pygobject: qa
9
10 Drop useless $(use_enable cairo) in 2.28.6-r50: since we are disabling
11 introspection, cairo support will not be used or needed; introspection
12 and cairo support are provided by slot 3 of pygobject.
13
14 ---
15 dev-python/pygobject/pygobject-2.28.6-r50.ebuild | 5 +++--
16 1 files changed, 3 insertions(+), 2 deletions(-)
17
18 diff --git a/dev-python/pygobject/pygobject-2.28.6-r50.ebuild b/dev-python/pygobject/pygobject-2.28.6-r50.ebuild
19 index 4a64410..169c800 100644
20 --- a/dev-python/pygobject/pygobject-2.28.6-r50.ebuild
21 +++ b/dev-python/pygobject/pygobject-2.28.6-r50.ebuild
22 @@ -46,12 +46,13 @@ PDEPEND="introspection? ( dev-python/pygobject:3 )"
23
24 pkg_setup() {
25 DOCS="AUTHORS ChangeLog* NEWS README"
26 - # --disable-introspection because we use slot 3 for introspection support
27 + # --disable-introspection and --disable-cairo because we use pygobject:3
28 + # for introspection support
29 G2CONF="${G2CONF}
30 --disable-dependency-tracking
31 --disable-introspection
32 + --disable-cairo
33 $(use_enable doc docs)
34 - $(use_enable cairo)
35 $(use_with libffi ffi)"
36 }