Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: x11-libs/gtksourceview/
Date: Tue, 05 Apr 2011 12:52:54
Message-Id: 43c1d31abc8f01480dbbd8b2ffd68cde931c6aa8.eva@gentoo
1 commit: 43c1d31abc8f01480dbbd8b2ffd68cde931c6aa8
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 5 11:13:48 2011 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 5 12:42:02 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=43c1d31a
7
8 x11-libs/gtksourceview: QAed
9
10 * Synchronized keywords with gentoo-x86
11 * Synchronized slots notations with gentoo-x86
12 * Use pkg_setup, pkg_config is invalid
13 * Punt la files
14
15 (Portage version: 2.2.0_alpha29/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key C6085806)
16
17 ---
18 x11-libs/gtksourceview/gtksourceview-3.0.0.ebuild | 22 ++++++++++++--------
19 1 files changed, 13 insertions(+), 9 deletions(-)
20
21 diff --git a/x11-libs/gtksourceview/gtksourceview-3.0.0.ebuild b/x11-libs/gtksourceview/gtksourceview-3.0.0.ebuild
22 index 75aaa6d..43c2256 100644
23 --- a/x11-libs/gtksourceview/gtksourceview-3.0.0.ebuild
24 +++ b/x11-libs/gtksourceview/gtksourceview-3.0.0.ebuild
25 @@ -18,27 +18,26 @@ if [[ ${PV} = 9999 ]]; then
26 inherit gnome2-live
27 KEYWORDS=""
28 else
29 - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
30 + KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
31 fi
32
33 # Note: has native OSX support, prefix teams, attack!
34 RDEPEND=">=x11-libs/gtk+-3.0:3[introspection?]
35 - >=dev-libs/libxml2-2.6
36 - >=dev-libs/glib-2.28
37 - glade? ( >=dev-util/glade-3.9 )
38 + >=dev-libs/libxml2-2.6:2
39 + >=dev-libs/glib-2.28:2
40 + glade? ( >=dev-util/glade-3.9:3 )
41 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )"
42 DEPEND="${RDEPEND}
43 - sys-devel/gettext
44 + >=sys-devel/gettext-0.17
45 >=dev-util/intltool-0.40
46 >=dev-util/pkgconfig-0.9
47 doc? ( >=dev-util/gtk-doc-1.11 )"
48
49 -DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README"
50 -
51 -pkg_config() {
52 +pkg_setup() {
53 + DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README"
54 G2CONF="${G2CONF}
55 --disable-deprecations
56 - --enable-completion-providers
57 + --enable-providers
58 $(use_enable glade glade-catalog)
59 $(use_enable introspection)"
60 }
61 @@ -46,6 +45,11 @@ pkg_config() {
62 src_prepare() {
63 sed -i -e 's:--warn-all::' gtksourceview/Makefile.in
64
65 + # Skip broken test until upstream bug #621383 is solved
66 + sed -e "/guess-language/d" \
67 + -e "/get-language/d" \
68 + -i tests/test-languagemanager.c || die
69 +
70 gnome2_src_prepare
71 }