Gentoo Archives: gentoo-commits

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