Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xkeycaps/
Date: Sat, 25 Feb 2017 14:15:38
Message-Id: 1488032068.19aa64095e84bffe6c51d877a7f420b9674f8aaa.soap@gentoo
1 commit: 19aa64095e84bffe6c51d877a7f420b9674f8aaa
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Wed Feb 22 15:51:39 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 25 14:14:28 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19aa6409
7
8 x11-misc/xkeycaps: EAPI bump 0 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/4057
12
13 x11-misc/xkeycaps/xkeycaps-2.47-r2.ebuild | 46 +++++++++++++++++++++++++++++++
14 1 file changed, 46 insertions(+)
15
16 diff --git a/x11-misc/xkeycaps/xkeycaps-2.47-r2.ebuild b/x11-misc/xkeycaps/xkeycaps-2.47-r2.ebuild
17 new file mode 100644
18 index 0000000000..67fe820635
19 --- /dev/null
20 +++ b/x11-misc/xkeycaps/xkeycaps-2.47-r2.ebuild
21 @@ -0,0 +1,46 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="GUI frontend to xmodmap"
31 +HOMEPAGE="http://packages.qa.debian.org/x/xkeycaps.html"
32 +SRC_URI="mirror://debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz"
33 +
34 +LICENSE="HPND"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="x11-misc/xbitmaps
40 + x11-libs/libX11
41 + x11-libs/libXmu
42 + x11-libs/libXt
43 + x11-libs/libXaw
44 + x11-libs/libXext"
45 +DEPEND="${RDEPEND}
46 + x11-proto/xproto
47 + x11-misc/imake
48 + >=sys-apps/sed-4"
49 +
50 +DOCS=( README defining.txt hierarchy.txt sgi-microsoft.txt )
51 +PATCHES=(
52 + "${FILESDIR}"/${P}-Imakefile.patch
53 + "${FILESDIR}"/${P}-man.patch
54 +)
55 +
56 +src_compile() {
57 + xmkmf || die
58 + sed -i -e "s,all:: xkeycaps.\$(MANSUFFIX).html,all:: ,g" \
59 + Makefile || die
60 + emake EXTRA_LDOPTIONS="${LDFLAGS}" CC="$(tc-getCC)" \
61 + CDEBUGFLAGS="${CFLAGS}"
62 +}
63 +
64 +src_install () {
65 + default
66 + newman ${PN}.man ${PN}.1
67 +}