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 093AB139694 for ; Tue, 30 May 2017 08:02:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 363B721C03C; Tue, 30 May 2017 08:02:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11E8C21C03C for ; Tue, 30 May 2017 08:02:57 +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 41742341756 for ; Tue, 30 May 2017 08:02:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06EF37459 for ; Tue, 30 May 2017 08:02:55 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1496131372.9cb12bf8e5d1d2f709ff61d4fcfd11fa8cb62f93.jer@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: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 9cb12bf8e5d1d2f709ff61d4fcfd11fa8cb62f93 X-VCS-Branch: master Date: Tue, 30 May 2017 08:02:55 +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-Archives-Salt: 4fd1bd4f-e597-4088-9ea5-0cc7716c5713 X-Archives-Hash: 84225a24410802c9a1c727f3c2deef7e commit: 9cb12bf8e5d1d2f709ff61d4fcfd11fa8cb62f93 Author: Jeroen Roovers gentoo org> AuthorDate: Tue May 30 08:02:34 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Tue May 30 08:02:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb12bf8 x11-misc/lineakd: EAPI bump for user patches. Package-Manager: Portage-2.3.6, Repoman-2.3.2 x11-misc/lineakd/lineakd-0.9.0-r2.ebuild | 59 ++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild new file mode 100644 index 00000000000..7b74d25c19e --- /dev/null +++ b/x11-misc/lineakd/lineakd-0.9.0-r2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils 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-libs/libxkbfile + x11-libs/libXt + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xproto + 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 +} + +src_install() { + sed -i -e 's:$(DESTDIR)${DESTDIR}:$(DESTDIR):' lineakd/Makefile + + dodir /usr/share/man/man8 + + emake -j1 DESTDIR="${D}" install + + prune_libtool_files + + dodoc AUTHORS README TODO + + keepdir /usr/$(get_libdir)/lineakd/plugins + + insinto /etc/lineak + doins lineakd.conf.example lineakd.conf.kde.example +}