diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-05-31 16:42:21 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2024-06-18 00:35:59 +0200 |
commit | 5c73209d40812dc6f5233976bcf5b29a065f1ebb (patch) | |
tree | b4ee269e398660cf5f4f0cf86521d5e6bfec9ed7 /x11-misc/lineakd | |
parent | x11-misc/lineakd: use HTTPS, fix LICENSE (diff) | |
download | gentoo-5c73209d40812dc6f5233976bcf5b29a065f1ebb.tar.gz gentoo-5c73209d40812dc6f5233976bcf5b29a065f1ebb.tar.bz2 gentoo-5c73209d40812dc6f5233976bcf5b29a065f1ebb.zip |
x11-misc/lineakd: drop old
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36922
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'x11-misc/lineakd')
-rw-r--r-- | x11-misc/lineakd/lineakd-0.9.0-r3.ebuild | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild deleted file mode 100644 index dfab8288f667..000000000000 --- a/x11-misc/lineakd/lineakd-0.9.0-r3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit multilib - -MY_P=${P/.0/} - -DESCRIPTION="Linux support for Easy Access and Internet Keyboards" -HOMEPAGE="http://lineak.sourceforge.net" -SRC_URI="https://downloads.sourceforge.net/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}"/usr/share/man -name '*.bz2' -exec bunzip2 {} \; || die - find "${ED}" -name '*.la' -delete || die -} |