diff options
author | Sam James <sam@gentoo.org> | 2021-03-17 09:01:58 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-17 09:08:37 +0000 |
commit | 15b61c6f37f12831567fc51f5a1ef463691ea895 (patch) | |
tree | 8deca90b5c2863a7c4f882eea5cf102698d839f1 /x11-misc/lineakd | |
parent | app-misc/banner: drop 1.3.3, 1.3.4 (diff) | |
download | gentoo-15b61c6f37f12831567fc51f5a1ef463691ea895.tar.gz gentoo-15b61c6f37f12831567fc51f5a1ef463691ea895.tar.bz2 gentoo-15b61c6f37f12831567fc51f5a1ef463691ea895.zip |
x11-misc/lineakd: drop 0.9.0-r2
Bug: https://bugs.gentoo.org/776448
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-misc/lineakd')
-rw-r--r-- | x11-misc/lineakd/lineakd-0.9.0-r2.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild deleted file mode 100644 index b1d571e4369a..000000000000 --- a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit multilib - -MY_P=${P/.0/} - -DESCRIPTION="Linux support for Easy Access and Internet Keyboards" -HOMEPAGE="http://lineak.sourceforge.net" -SRC_URI="mirror://sourceforge/lineak/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="debug" - -RDEPEND=" - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXext -" -DEPEND=" - ${RDEPEND} - x11-base/xorg-proto - x11-libs/libxkbfile - x11-libs/libXt - x11-libs/libXtst -" - -S=${WORKDIR}/${MY_P} -PATCHES=( - "${FILESDIR}"/${P}-gcc43.patch - "${FILESDIR}"/${P}-DELL-XPS-M1330-XOrg-1_5.patch -) - -src_configure() { - econf \ - $(use_enable debug) \ - --with-x \ - --disable-static -} - -src_install() { - sed -i -e 's:$(DESTDIR)${DESTDIR}:$(DESTDIR):' lineakd/Makefile - - dodir /usr/share/man/man8 - - emake -j1 DESTDIR="${D}" install - - dodoc AUTHORS README TODO - - keepdir /usr/$(get_libdir)/lineakd/plugins - - insinto /etc/lineak - doins lineakd.conf.example lineakd.conf.kde.example - - find "${ED}" -name '*.la' -delete || die -} |