Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libfakekey: libfakekey-0.1-r2.ebuild metadata.xml ChangeLog
Date: Sat, 30 May 2015 20:11:23
Message-Id: 20150530201116.48486A17@oystercatcher.gentoo.org
1 mrueg 15/05/30 20:11:16
2
3 Modified: metadata.xml ChangeLog
4 Added: libfakekey-0.1-r2.ebuild
5 Log:
6 Upgrade EAPI, add kde herd.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.3 x11-libs/libfakekey/metadata.xml
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/metadata.xml?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/metadata.xml?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/metadata.xml?r1=1.2&r2=1.3
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfakekey/metadata.xml,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- metadata.xml 4 Mar 2012 11:36:43 -0000 1.2
24 +++ metadata.xml 30 May 2015 20:11:16 -0000 1.3
25 @@ -1,5 +1,6 @@
26 <?xml version="1.0" encoding="UTF-8"?>
27 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
28 <pkgmetadata>
29 -<herd>gpe</herd>
30 + <herd>gpe</herd>
31 + <herd>kde</herd>
32 </pkgmetadata>
33
34
35
36 1.15 x11-libs/libfakekey/ChangeLog
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/ChangeLog?rev=1.15&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/ChangeLog?rev=1.15&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/ChangeLog?r1=1.14&r2=1.15
41
42 Index: ChangeLog
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfakekey/ChangeLog,v
45 retrieving revision 1.14
46 retrieving revision 1.15
47 diff -u -r1.14 -r1.15
48 --- ChangeLog 10 Aug 2014 20:06:20 -0000 1.14
49 +++ ChangeLog 30 May 2015 20:11:16 -0000 1.15
50 @@ -1,6 +1,12 @@
51 # ChangeLog for x11-libs/libfakekey
52 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
53 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfakekey/ChangeLog,v 1.14 2014/08/10 20:06:20 slyfox Exp $
54 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
55 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfakekey/ChangeLog,v 1.15 2015/05/30 20:11:16 mrueg Exp $
56 +
57 +*libfakekey-0.1-r2 (30 May 2015)
58 +
59 + 30 May 2015; Manuel RĂ¼ger <mrueg@g.o> +libfakekey-0.1-r2.ebuild,
60 + metadata.xml:
61 + Upgrade EAPI, add kde herd.
62
63 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> libfakekey-0.1-r1.ebuild:
64 QA: drop trailing '.' from DESCRIPTION
65
66
67
68 1.1 x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
69
70 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild?rev=1.1&view=markup
71 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild?rev=1.1&content-type=text/plain
72
73 Index: libfakekey-0.1-r2.ebuild
74 ===================================================================
75 # Copyright 1999-2015 Gentoo Foundation
76 # Distributed under the terms of the GNU General Public License v2
77 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild,v 1.1 2015/05/30 20:11:16 mrueg Exp $
78
79 EAPI=5
80
81 inherit eutils autotools
82
83 DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
84 HOMEPAGE="http://matchbox-project.org/"
85 SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2"
86 LICENSE="GPL-2"
87 SLOT="0"
88
89 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
90 IUSE="debug doc"
91
92 RDEPEND="x11-libs/libXtst"
93
94 DEPEND="${RDEPEND}
95 doc? ( app-doc/doxygen )"
96
97 src_prepare() {
98 # Allow configure to use libtool-2
99 epatch "${FILESDIR}/${P}-ac.patch"
100
101 # Fix underlinking bug #367595
102 sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
103 tests/Makefile.am || die 'Cannot sed Makefile.am'
104 sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
105 eautoreconf
106 }
107
108 src_configure() {
109 # --with/without-x is ignored by configure script and X is used.
110 econf --with-x \
111 $(use_enable debug) \
112 $(use_enable doc doxygen-docs)
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install
117
118 dodoc AUTHORS ChangeLog INSTALL NEWS README
119 use doc && dohtml doc/html/*
120 }