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: Sat, 30 May 2020 08:37:59
Message-Id: 1590827865.4368f569fecbb031d5094913b2dcf642baae4b85.asturm@gentoo
1 commit: 4368f569fecbb031d5094913b2dcf642baae4b85
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 30 08:36:38 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 30 08:37:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4368f569
7
8 x11-libs/libfakekey: Drop 0.3 (r0)
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-libs/libfakekey/libfakekey-0.3.ebuild | 46 -------------------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/x11-libs/libfakekey/libfakekey-0.3.ebuild b/x11-libs/libfakekey/libfakekey-0.3.ebuild
17 deleted file mode 100644
18 index 02a258f0146..00000000000
19 --- a/x11-libs/libfakekey/libfakekey-0.3.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
30 -HOMEPAGE="https://www.yoctoproject.org/tools-resources/projects/matchbox"
31 -SRC_URI="https://git.yoctoproject.org/cgit/cgit.cgi/${PN}/snapshot/${P}.tar.bz2"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ~ppc64 x86"
36 -IUSE="debug doc"
37 -
38 -BDEPEND="doc? ( app-doc/doxygen )"
39 -DEPEND="x11-libs/libXtst"
40 -RDEPEND="${DEPEND}"
41 -
42 -PATCHES=( "${FILESDIR}/${P}-ac.patch" ) # Allow configure to use libtool-2
43 -
44 -src_prepare() {
45 - default
46 -
47 - # Fix underlinking bug #367595
48 - sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
49 - tests/Makefile.am || die 'Cannot sed Makefile.am'
50 - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
51 - eautoreconf
52 -}
53 -
54 -src_configure() {
55 - local myeconfargs=(
56 - # --with/without-x is ignored by configure script and X is used.
57 - --with-x
58 - $(use_enable debug)
59 - $(use_enable doc doxygen-docs)
60 - )
61 - econf "${myeconfargs[@]}"
62 -}
63 -
64 -src_install() {
65 - use doc && local HTML_DOCS=( doc/html/. )
66 - default
67 -}