Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/gucharmap: gucharmap-3.12.1.ebuild ChangeLog
Date: Sat, 31 May 2014 10:03:10
Message-Id: 20140531100305.EA1002004E@flycatcher.gentoo.org
1 pacho 14/05/31 10:03:05
2
3 Modified: ChangeLog
4 Added: gucharmap-3.12.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.215 gnome-extra/gucharmap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?rev=1.215&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?rev=1.215&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?r1=1.214&r2=1.215
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/ChangeLog,v
20 retrieving revision 1.214
21 retrieving revision 1.215
22 diff -u -r1.214 -r1.215
23 --- ChangeLog 27 Apr 2014 17:21:20 -0000 1.214
24 +++ ChangeLog 31 May 2014 10:03:05 -0000 1.215
25 @@ -1,6 +1,11 @@
26 # ChangeLog for gnome-extra/gucharmap
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/ChangeLog,v 1.214 2014/04/27 17:21:20 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/ChangeLog,v 1.215 2014/05/31 10:03:05 pacho Exp $
30 +
31 +*gucharmap-3.12.1 (31 May 2014)
32 +
33 + 31 May 2014; Pacho Ramos <pacho@g.o> +gucharmap-3.12.1.ebuild:
34 + Version bump
35
36 *gucharmap-3.12.0 (27 Apr 2014)
37
38
39
40
41 1.1 gnome-extra/gucharmap/gucharmap-3.12.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.12.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.12.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gucharmap-3.12.1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.12.1.ebuild,v 1.1 2014/05/31 10:03:05 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="yes"
54 VALA_MIN_API_VERSION="0.16"
55 VALA_USE_DEPEND="vapigen"
56
57 inherit gnome2 vala
58
59 DESCRIPTION="Unicode character map viewer and library"
60 HOMEPAGE="http://live.gnome.org/Gucharmap"
61
62 LICENSE="GPL-3"
63 SLOT="2.90"
64 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="cjk +introspection test vala"
66 REQUIRED_USE="vala? ( introspection )"
67
68 COMMON_DEPEND="
69 >=dev-libs/glib-2.32:2
70 >=x11-libs/pango-1.2.1[introspection?]
71 >=x11-libs/gtk+-3.4.0:3[introspection?]
72
73 introspection? ( >=dev-libs/gobject-introspection-0.9.0 )
74 "
75 RDEPEND="${COMMON_DEPEND}
76 !<gnome-extra/gucharmap-3:0
77 "
78 DEPEND="${RDEPEND}
79 app-text/yelp-tools
80 dev-util/desktop-file-utils
81 >=dev-util/gtk-doc-am-1
82 >=dev-util/intltool-0.40
83 sys-devel/gettext
84 virtual/pkgconfig
85 test? ( app-text/docbook-xml-dtd:4.1.2 )
86 vala? ( $(vala_depend) )
87 "
88
89 src_prepare() {
90 # prevent file collisions with slot 0
91 sed -e "s:GETTEXT_PACKAGE=gucharmap$:GETTEXT_PACKAGE=gucharmap-${SLOT}:" \
92 -i configure.ac configure || die "sed configure.ac configure failed"
93
94 # avoid autoreconf
95 sed -e 's/-Wall //g' -i configure || die "sed failed"
96
97 use vala && vala_src_prepare
98 gnome2_src_prepare
99 }
100
101 src_configure() {
102 # Do not add ITSTOOL=$(type -P true); yelp-tools is a true required
103 # dependency here for some LINGUAS.
104 gnome2_src_configure \
105 --disable-static \
106 $(use_enable introspection) \
107 $(use_enable cjk unihan) \
108 $(use_enable vala)
109 }