Gentoo Archives: gentoo-commits

From: Dennis Schridde <devurandom@×××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/libindicate/
Date: Sat, 05 Feb 2011 17:09:12
Message-Id: a43fe18e91931bd2439c7e4010cb1f143de47825.devurandom@gentoo
1 commit: a43fe18e91931bd2439c7e4010cb1f143de47825
2 Author: Dennis Schridde <devurandom <AT> gmx <DOT> net>
3 AuthorDate: Sat Feb 5 14:52:49 2011 +0000
4 Commit: Dennis Schridde <devurandom <AT> gmx <DOT> net>
5 CommitDate: Sat Feb 5 17:00:12 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a43fe18e
7
8 [dev-libs/libindicate-0.4.91] Change wrong "! use flag" into "use !flag"
9
10 (Portage version: 2.2.0_alpha20/git/Linux x86_64, signed Manifest commit with key 50ED256E)
11
12 ---
13 dev-libs/libindicate/libindicate-0.4.91.ebuild | 6 +++---
14 1 files changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-libs/libindicate/libindicate-0.4.91.ebuild b/dev-libs/libindicate/libindicate-0.4.91.ebuild
17 index 39ef6b1..556ecc6 100644
18 --- a/dev-libs/libindicate/libindicate-0.4.91.ebuild
19 +++ b/dev-libs/libindicate/libindicate-0.4.91.ebuild
20 @@ -44,11 +44,11 @@ DEPEND="${RDEPEND}
21 pkg_setup() {
22 if use mono && has "${PV}" "${BROKEN_MONO}" ; then
23 eerror "Mono bindings (USE=mono) are broken in this version"
24 - die "Mono bindings are broken in this version"
25 + die "Mono bindings (USE=mono) are broken in this version"
26 fi
27 - if use python && ! use gtk ; then
28 + if use python && use !gtk ; then
29 eerror "Python bindings (USE=python) require GTK support (USE=gtk)"
30 - die "Python bindings require USE=gtk"
31 + die "Python bindings (USE=python) require GTK support (USE=gtk)"
32 fi
33 }