Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libindicate: libindicate-12.10.1-r2.ebuild ChangeLog
Date: Wed, 01 Jul 2015 18:27:48
Message-Id: 20150701182737.EEA04745@oystercatcher.gentoo.org
1 mgorny 15/07/01 18:27:37
2
3 Modified: ChangeLog
4 Added: libindicate-12.10.1-r2.ebuild
5 Log:
6 Combine sed calls. Fix gtk-doc install path (and incorrect nonfatal use), bug #551162.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.44 dev-libs/libindicate/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 9 Jun 2015 14:30:10 -0000 1.43
24 +++ ChangeLog 1 Jul 2015 18:27:37 -0000 1.44
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libindicate
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.43 2015/06/09 14:30:10 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/ChangeLog,v 1.44 2015/07/01 18:27:37 mgorny Exp $
30 +
31 +*libindicate-12.10.1-r2 (01 Jul 2015)
32 +
33 + 01 Jul 2015; Michał Górny <mgorny@g.o> +libindicate-12.10.1-r2.ebuild:
34 + Combine sed calls. Fix gtk-doc install path (and incorrect nonfatal use), bug
35 + #551162.
36
37 09 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
38 Updating remote-id in metadata.xml
39
40
41
42 1.1 dev-libs/libindicate/libindicate-12.10.1-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libindicate-12.10.1-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libindicate/libindicate-12.10.1-r2.ebuild,v 1.1 2015/07/01 18:27:37 mgorny Exp $
52
53 EAPI=5
54 VALA_MIN_API_VERSION="0.16"
55 VALA_USE_DEPEND="vapigen"
56
57 inherit autotools eutils flag-o-matic vala
58
59 DESCRIPTION="A library to raise flags on DBus for other components of the desktop to pick up and visualize"
60 HOMEPAGE="http://launchpad.net/libindicate"
61 SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1 LGPL-3"
64 SLOT="3"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
66 IUSE="gtk +introspection"
67
68 RESTRICT="test" # consequence of the -no-mono.patch
69
70 RDEPEND=">=dev-libs/dbus-glib-0.100
71 >=dev-libs/glib-2.30
72 >=dev-libs/libdbusmenu-0.6.2[introspection?]
73 dev-libs/libxml2
74 gtk? (
75 dev-libs/libdbusmenu[gtk3]
76 >=x11-libs/gtk+-3.2:3
77 )
78 introspection? ( >=dev-libs/gobject-introspection-1 )
79 !<${CATEGORY}/${PN}-0.6.1-r201"
80 EAUTORECONF_DEPEND="dev-util/gtk-doc-am
81 gnome-base/gnome-common"
82 DEPEND="${RDEPEND}
83 ${EAUTORECONF_DEPEND}
84 $(vala_depend)
85 app-text/gnome-doc-utils
86 virtual/pkgconfig"
87
88 src_prepare() {
89 vala_src_prepare
90
91 epatch "${FILESDIR}"/${PN}-0.6.1-no-mono.patch
92
93 sed -i \
94 -e "s:vapigen:vapigen-$(vala_best_api_version):" \
95 -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" \
96 configure.ac || die
97
98 eautoreconf
99 }
100
101 src_configure() {
102 append-flags -Wno-error
103
104 # python bindings are only for GTK+-2.x
105 econf \
106 --disable-silent-rules \
107 --disable-static \
108 $(use_enable gtk) \
109 $(use_enable introspection) \
110 --disable-python \
111 --disable-scrollkeeper \
112 --with-gtk=3
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install
117 dodoc AUTHORS ChangeLog NEWS
118
119 prune_libtool_files
120 }