Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libfakekey/
Date: Mon, 26 Feb 2018 22:46:37
Message-Id: 1519685174.edff81ca8f46be88e7688874dc5c2cbdb4d95e28.asturm@gentoo
1 commit: edff81ca8f46be88e7688874dc5c2cbdb4d95e28
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 26 22:45:13 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 22:46:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edff81ca
7
8 x11-libs/libfakekey: Drop old
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 x11-libs/libfakekey/libfakekey-0.1-r2.ebuild | 45 ----------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild b/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
16 deleted file mode 100644
17 index cfbc9fdf891..00000000000
18 --- a/x11-libs/libfakekey/libfakekey-0.1-r2.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit eutils autotools
27 -
28 -DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
29 -HOMEPAGE="http://matchbox-project.org/"
30 -SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2"
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -
34 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
35 -IUSE="debug doc"
36 -
37 -RDEPEND="x11-libs/libXtst"
38 -
39 -DEPEND="${RDEPEND}
40 - doc? ( app-doc/doxygen )"
41 -
42 -src_prepare() {
43 - # Allow configure to use libtool-2
44 - epatch "${FILESDIR}/${P}-ac.patch"
45 -
46 - # Fix underlinking bug #367595
47 - sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
48 - tests/Makefile.am || die 'Cannot sed Makefile.am'
49 - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - # --with/without-x is ignored by configure script and X is used.
55 - econf --with-x \
56 - $(use_enable debug) \
57 - $(use_enable doc doxygen-docs)
58 -}
59 -
60 -src_install() {
61 - emake DESTDIR="${D}" install
62 -
63 - dodoc AUTHORS ChangeLog INSTALL NEWS README
64 - use doc && dohtml doc/html/*
65 -}