Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/gtksourceview: ChangeLog gtksourceview-3.2.0.ebuild
Date: Wed, 28 Sep 2011 11:27:34
Message-Id: 20110928112724.D288B20036@flycatcher.gentoo.org
1 pacho 11/09/28 11:27:24
2
3 Modified: ChangeLog
4 Added: gtksourceview-3.2.0.ebuild
5 Log:
6 Version bump, bug #383527 by Sebastian Pipping and Alexandre Rostovtsev.
7
8 (Portage version: 2.1.10.19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.209 x11-libs/gtksourceview/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtksourceview/ChangeLog?rev=1.209&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtksourceview/ChangeLog?rev=1.209&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtksourceview/ChangeLog?r1=1.208&r2=1.209
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/ChangeLog,v
20 retrieving revision 1.208
21 retrieving revision 1.209
22 diff -u -r1.208 -r1.209
23 --- ChangeLog 13 Sep 2011 11:55:31 -0000 1.208
24 +++ ChangeLog 28 Sep 2011 11:27:24 -0000 1.209
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/gtksourceview
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/ChangeLog,v 1.208 2011/09/13 11:55:31 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/ChangeLog,v 1.209 2011/09/28 11:27:24 pacho Exp $
30 +
31 +*gtksourceview-3.2.0 (28 Sep 2011)
32 +
33 + 28 Sep 2011; Pacho Ramos <pacho@g.o> +gtksourceview-3.2.0.ebuild:
34 + Version bump, bug #383527 by Sebastian Pipping and Alexandre Rostovtsev.
35
36 13 Sep 2011; Pacho Ramos <pacho@g.o> -gtksourceview-1.8.5-r1.ebuild:
37 Remove old.
38
39
40
41 1.1 x11-libs/gtksourceview/gtksourceview-3.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtksourceview/gtksourceview-3.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/gtksourceview/gtksourceview-3.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gtksourceview-3.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/gtksourceview-3.2.0.ebuild,v 1.1 2011/09/28 11:27:24 pacho Exp $
51
52 EAPI="4"
53 GCONF_DEBUG="no"
54 GNOME2_LA_PUNT="yes"
55
56 inherit gnome2 virtualx
57
58 DESCRIPTION="A text widget implementing syntax highlighting and other features"
59 HOMEPAGE="http://projects.gnome.org/gtksourceview/"
60
61 LICENSE="GPL-2"
62 SLOT="3.0"
63 IUSE="doc glade +introspection"
64 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"
65
66 # Note: has native OSX support, prefix teams, attack!
67 RDEPEND=">=x11-libs/gtk+-3.0:3[introspection?]
68 >=dev-libs/libxml2-2.6:2
69 >=dev-libs/glib-2.28:2
70 glade? ( >=dev-util/glade-3.9:3.10 )
71 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )"
72 DEPEND="${RDEPEND}
73 >=sys-devel/gettext-0.17
74 >=dev-util/intltool-0.40
75 >=dev-util/pkgconfig-0.9
76 doc? ( >=dev-util/gtk-doc-1.11 )"
77
78 pkg_setup() {
79 DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README"
80 G2CONF="${G2CONF}
81 --disable-deprecations
82 --disable-maintainer-mode
83 --enable-providers
84 $(use_enable glade glade-catalog)
85 $(use_enable introspection)"
86 }
87
88 src_prepare() {
89 sed -i -e 's:--warn-all::' gtksourceview/Makefile.in || die
90
91 # Skip broken test until upstream bug #621383 is solved
92 sed -e "/guess-language/d" \
93 -e "/get-language/d" \
94 -i tests/test-languagemanager.c || die
95
96 gnome2_src_prepare
97 }
98
99 src_test() {
100 Xemake check
101 }
102
103 src_install() {
104 gnome2_src_install
105
106 insinto /usr/share/${PN}-3.0/language-specs
107 doins "${FILESDIR}"/2.0/gentoo.lang
108 }