Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lineakd/
Date: Tue, 08 Feb 2022 00:10:23
Message-Id: 1644278994.9f7d489a95e24a4c84c29119a434d98062feb841.sam@gentoo
1 commit: 9f7d489a95e24a4c84c29119a434d98062feb841
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 8 00:09:44 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 8 00:09:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7d489a
7
8 x11-misc/lineakd: drop 0.9.0-r2
9
10 Closes: https://bugs.gentoo.org/722372
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 x11-misc/lineakd/lineakd-0.9.0-r2.ebuild | 65 --------------------------------
14 1 file changed, 65 deletions(-)
15
16 diff --git a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild
17 deleted file mode 100644
18 index 82ba727c0440..000000000000
19 --- a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,65 +0,0 @@
22 -# Copyright 1999-2022 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=8
26 -
27 -inherit autotools
28 -
29 -MY_P=${P/.0/}
30 -DESCRIPTION="Linux support for Easy Access and Internet Keyboards"
31 -HOMEPAGE="http://lineak.sourceforge.net"
32 -SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz"
33 -S="${WORKDIR}"/${MY_P}
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 ppc sparc x86"
38 -IUSE="debug"
39 -
40 -RDEPEND="x11-libs/libICE
41 - x11-libs/libSM
42 - x11-libs/libX11
43 - x11-libs/libXext"
44 -DEPEND="${RDEPEND}
45 - x11-base/xorg-proto
46 - x11-libs/libxkbfile
47 - x11-libs/libXt
48 - x11-libs/libXtst"
49 -
50 -PATCHES=(
51 - "${FILESDIR}"/${P}-gcc43.patch
52 - "${FILESDIR}"/${P}-DELL-XPS-M1330-XOrg-1_5.patch
53 - "${FILESDIR}"/${P}-automake-linking-libdl.patch
54 -)
55 -
56 -src_prepare() {
57 - default
58 -
59 - eautoreconf
60 -}
61 -
62 -src_configure() {
63 - # admin/lineakd.m4.in contains Bashisms but fixes it causes a confusing
64 - # autotools avalanche, so workaround it with CONFIG_SHELL as bash.
65 - CONFIG_SHELL="${BROOT}/bin/bash" econf \
66 - $(use_enable debug) \
67 - --with-x
68 -}
69 -
70 -src_install() {
71 - sed -i -e 's:$(DESTDIR)${DESTDIR}:$(DESTDIR):' lineakd/Makefile || die
72 -
73 - dodir /usr/share/man/man8
74 -
75 - emake -j1 DESTDIR="${D}" install
76 -
77 - dodoc AUTHORS README TODO
78 -
79 - keepdir /usr/$(get_libdir)/lineakd/plugins
80 -
81 - insinto /etc/lineak
82 - doins lineakd.conf.example lineakd.conf.kde.example
83 -
84 - find "${ED}"/usr/share/man -name '*.bz2' -exec bunzip2 {} \; || die
85 - find "${ED}" -name '*.la' -delete || die
86 -}