From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2BEF513835A for ; Wed, 17 Mar 2021 09:09:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BFE5E0841; Wed, 17 Mar 2021 09:09:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64F01E0841 for ; Wed, 17 Mar 2021 09:09:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D561340F44 for ; Wed, 17 Mar 2021 09:09:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 118595A7 for ; Wed, 17 Mar 2021 09:09:01 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615972117.15b61c6f37f12831567fc51f5a1ef463691ea895.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/lineakd/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/lineakd/lineakd-0.9.0-r2.ebuild X-VCS-Directories: x11-misc/lineakd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 15b61c6f37f12831567fc51f5a1ef463691ea895 X-VCS-Branch: master Date: Wed, 17 Mar 2021 09:09:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 42f34171-bc90-452b-ae1e-bcf3ea6eb135 X-Archives-Hash: 352c51cd11ad8cb153ab31bc95fb3d12 commit: 15b61c6f37f12831567fc51f5a1ef463691ea895 Author: Sam James gentoo org> AuthorDate: Wed Mar 17 09:01:58 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 17 09:08:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b61c6f x11-misc/lineakd: drop 0.9.0-r2 Bug: https://bugs.gentoo.org/776448 Signed-off-by: Sam James gentoo.org> x11-misc/lineakd/lineakd-0.9.0-r2.ebuild | 60 -------------------------------- 1 file changed, 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 b1d571e4369..00000000000 --- 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 -}