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: Mon, 28 Nov 2016 18:30:07
Message-Id: 1480357786.725d5fd492146167fd0b22ff3912909efa90396a.johu@gentoo
1 commit: 725d5fd492146167fd0b22ff3912909efa90396a
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 28 18:29:20 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 28 18:29:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725d5fd4
7
8 x11-libs/libfakekey: Drop invalid file
9
10 Regression in commit 0978999c9e9f59141c39b037946556fcd2429754.
11
12 Thanks-to: robbat2
13
14 Package-Manager: portage-2.3.2
15
16 x11-libs/libfakekey/@ | 46 ----------------------------------------------
17 1 file changed, 46 deletions(-)
18
19 diff --git a/x11-libs/libfakekey/@ b/x11-libs/libfakekey/@
20 deleted file mode 100644
21 index 90a07a3..00000000
22 --- a/x11-libs/libfakekey/@
23 +++ /dev/null
24 @@ -1,46 +0,0 @@
25 -# Copyright 1999-2015 Gentoo Foundation
26 -# Distributed under the terms of the GNU General Public License v2
27 -# $Id$
28 -
29 -EAPI=5
30 -
31 -inherit eutils autotools
32 -
33 -DESCRIPTION="Helper library for the x11-misc/matchbox-keyboard package"
34 -HOMEPAGE="http://matchbox-project.org/"
35 -SRC_URI="http://matchbox-project.org/sources/${PN}/${PV}/${P}.tar.bz2"
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -
39 -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
40 -IUSE="debug doc"
41 -
42 -RDEPEND="x11-libs/libXtst"
43 -
44 -DEPEND="${RDEPEND}
45 - doc? ( app-doc/doxygen )"
46 -
47 -src_prepare() {
48 - # Allow configure to use libtool-2
49 - epatch "${FILESDIR}/${P}-ac.patch"
50 -
51 - # Fix underlinking bug #367595
52 - sed -i -e 's/^fakekey_test_LDADD=/fakekey_test_LDADD=-lX11 /' \
53 - tests/Makefile.am || die 'Cannot sed Makefile.am'
54 - sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
55 - eautoreconf
56 -}
57 -
58 -src_configure() {
59 - # --with/without-x is ignored by configure script and X is used.
60 - econf --with-x \
61 - $(use_enable debug) \
62 - $(use_enable doc doxygen-docs)
63 -}
64 -
65 -src_install() {
66 - emake DESTDIR="${D}" install
67 -
68 - dodoc AUTHORS ChangeLog INSTALL NEWS README
69 - use doc && dohtml doc/html/*
70 -}