Gentoo Archives: gentoo-commits

From: Alexandre Restovtsev <tetromino@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:gnome-next commit in: dev-libs/gdl/
Date: Sun, 25 Sep 2011 23:55:48
Message-Id: 406a668ff49c9f6aea87099df16609279b4b66f6.tetromino@gentoo
1 commit: 406a668ff49c9f6aea87099df16609279b4b66f6
2 Author: Alexandre Rostovtsev <tetromino <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 25 23:52:47 2011 +0000
4 Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
5 CommitDate: Sun Sep 25 23:52:47 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=406a668f
7
8 dev-libs/gdl: fix introspection support (#383635)
9
10 Add $(use_enable introspection) to G2CONF to ensure that the introspection
11 USE flag has an actual effect. Also, disable maintainer mode.
12
13 Addresses bug #383635, thanks to optiluca <AT> gmail.com for reporting.
14
15 ---
16 .../gdl/{gdl-3.1.5.ebuild => gdl-3.1.5-r1.ebuild} | 6 +++++-
17 1 files changed, 5 insertions(+), 1 deletions(-)
18
19 diff --git a/dev-libs/gdl/gdl-3.1.5.ebuild b/dev-libs/gdl/gdl-3.1.5-r1.ebuild
20 similarity index 85%
21 rename from dev-libs/gdl/gdl-3.1.5.ebuild
22 rename to dev-libs/gdl/gdl-3.1.5-r1.ebuild
23 index 58a5410..1707484 100644
24 --- a/dev-libs/gdl/gdl-3.1.5.ebuild
25 +++ b/dev-libs/gdl/gdl-3.1.5-r1.ebuild
26 @@ -26,4 +26,8 @@ DEPEND="${RDEPEND}
27 >=dev-util/intltool-0.40.1
28 doc? ( >=dev-util/gtk-doc-1.4 )"
29
30 -DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
31 +pkg_setup() {
32 + G2CONF="--disable-maintainer-mode
33 + $(use_enable introspection)"
34 + DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
35 +}