Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/gucharmap: ChangeLog gucharmap-3.12.0.ebuild
Date: Sun, 27 Apr 2014 17:21:24
Message-Id: 20140427172120.EFBAB2004B@flycatcher.gentoo.org
1 eva 14/04/27 17:21:20
2
3 Modified: ChangeLog
4 Added: gucharmap-3.12.0.ebuild
5 Log:
6 Version bump for Gnome 3.12.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
9
10 Revision Changes Path
11 1.214 gnome-extra/gucharmap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?rev=1.214&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?rev=1.214&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/ChangeLog?r1=1.213&r2=1.214
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/ChangeLog,v
20 retrieving revision 1.213
21 retrieving revision 1.214
22 diff -u -r1.213 -r1.214
23 --- ChangeLog 27 Apr 2014 15:01:37 -0000 1.213
24 +++ ChangeLog 27 Apr 2014 17:21:20 -0000 1.214
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.213 2014/04/27 15:01:37 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/ChangeLog,v 1.214 2014/04/27 17:21:20 eva Exp $
30 +
31 +*gucharmap-3.12.0 (27 Apr 2014)
32 +
33 + 27 Apr 2014; Gilles Dartiguelongue <eva@g.o> +gucharmap-3.12.0.ebuild:
34 + Version bump for Gnome 3.12.
35
36 27 Apr 2014; Pacho Ramos <pacho@g.o> gucharmap-3.10.1.ebuild:
37 desktop-file-validate is needed at build time (#508558 by Phil Krylov)
38
39
40
41 1.1 gnome-extra/gucharmap/gucharmap-3.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gucharmap-3.12.0.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.0.ebuild,v 1.1 2014/04/27 17:21:20 eva 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 }