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 9D9B7139083 for ; Wed, 13 Sep 2017 16:59:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC534E0CA4; Wed, 13 Sep 2017 16:59:58 +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 B744FE0CA4 for ; Wed, 13 Sep 2017 16:59:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C737F33BEBE for ; Wed, 13 Sep 2017 16:59:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 439588B95 for ; Wed, 13 Sep 2017 16:59:56 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1505321749.7a8317434887850fa33561c213ae5dc7daee0594.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/joy2key/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/joy2key/joy2key-1.6.3-r1.ebuild X-VCS-Directories: app-misc/joy2key/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: 7a8317434887850fa33561c213ae5dc7daee0594 X-VCS-Branch: master Date: Wed, 13 Sep 2017 16:59:56 +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: de3f9440-6695-412a-a71d-b300a6b816c1 X-Archives-Hash: ef8d3d48f348076223ed1415c28a5030 commit: 7a8317434887850fa33561c213ae5dc7daee0594 Author: Amy Liffey gentoo org> AuthorDate: Wed Sep 13 10:59:20 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Wed Sep 13 16:55:49 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a831743 app-misc/joy2key: EAPI 6 bump Package-Manager: Portage-2.3.6, Repoman-2.3.1 app-misc/joy2key/joy2key-1.6.3-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app-misc/joy2key/joy2key-1.6.3-r1.ebuild b/app-misc/joy2key/joy2key-1.6.3-r1.ebuild new file mode 100644 index 00000000000..38c8331331c --- /dev/null +++ b/app-misc/joy2key/joy2key-1.6.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="An application that translates joystick events to keyboard events" +HOMEPAGE="https://sourceforge.net/projects/joy2key" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="X" + +RDEPEND="X? ( x11-libs/libX11 + x11-apps/xwininfo )" +DEPEND="${RDEPEND} + X? ( x11-proto/xproto )" + +src_configure() { + econf --disable-dependency-tracking $(use_enable X) +} + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog joy2keyrc.sample rawscancodes README TODO +}