Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libxsettings-client: libxsettings-client-0.17-r1.ebuild ChangeLog libxsettings-client-0.10.ebuild
Date: Tue, 01 Jul 2014 23:38:14
Message-Id: 20140701233810.B2A632004E@flycatcher.gentoo.org
1 jer 14/07/01 23:38:10
2
3 Modified: ChangeLog
4 Added: libxsettings-client-0.17-r1.ebuild
5 Removed: libxsettings-client-0.10.ebuild
6 Log:
7 Override gpe_src_configure (bug #515340). Add USE=static-libs (and prune_libtool_files). Clean up sed scripts.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
10
11 Revision Changes Path
12 1.24 x11-libs/libxsettings-client/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxsettings-client/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxsettings-client/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxsettings-client/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libxsettings-client/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 5 Jan 2013 12:31:09 -0000 1.23
25 +++ ChangeLog 1 Jul 2014 23:38:10 -0000 1.24
26 @@ -1,6 +1,14 @@
27 # ChangeLog for x11-libs/libxsettings-client
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxsettings-client/ChangeLog,v 1.23 2013/01/05 12:31:09 armin76 Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxsettings-client/ChangeLog,v 1.24 2014/07/01 23:38:10 jer Exp $
32 +
33 +*libxsettings-client-0.17-r1 (01 Jul 2014)
34 +
35 + 01 Jul 2014; Jeroen Roovers <jer@g.o>
36 + -libxsettings-client-0.10.ebuild, +libxsettings-client-0.17-r1.ebuild,
37 + -files/0.10-as-needed.patch:
38 + Override gpe_src_configure (bug #515340). Add USE=static-libs (and
39 + prune_libtool_files). Clean up sed scripts.
40
41 05 Jan 2013; Raúl Porcel <armin76@g.o>
42 libxsettings-client-0.17.ebuild:
43
44
45
46 1.1 x11-libs/libxsettings-client/libxsettings-client-0.17-r1.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxsettings-client/libxsettings-client-0.17-r1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libxsettings-client/libxsettings-client-0.17-r1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: libxsettings-client-0.17-r1.ebuild
52 ===================================================================
53 # Copyright 1999-2014 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libxsettings-client/libxsettings-client-0.17-r1.ebuild,v 1.1 2014/07/01 23:38:10 jer Exp $
56
57 EAPI=5
58 GPE_TARBALL_SUFFIX="bz2"
59 inherit autotools eutils gpe
60
61 DESCRIPTION="XSETTINGS client code"
62
63 LICENSE="LGPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~sh ~x86"
66 IUSE="static-libs"
67
68 DOCS=( ChangeLog )
69
70 DEPEND="
71 ${DEPEND}
72 x11-proto/xproto
73 x11-libs/libX11
74 "
75 RDEPEND="${DEPEND}"
76
77 src_prepare() {
78 sed -i \
79 -e 's|INCLUDES = -I $(includedir)|INCLUDES = -I $(ROOT)/$(includedir)|' \
80 Makefile.am || die
81 sed -i -e '/^CFLAGS="-Os -Wall"/d' configure.ac || die
82 eautoreconf
83 }
84
85 src_configure() {
86 # override gpe_src_configure() bug #515340
87 econf $(use_enable static-libs static)
88 }
89
90 src_install() {
91 default
92 prune_libtool_files
93 }