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 9E596138359 for ; Fri, 3 Jul 2020 23:23:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 817A4E0843; Fri, 3 Jul 2020 23:23:04 +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 69CEDE0843 for ; Fri, 3 Jul 2020 23:23:04 +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 6BD7C34F18C for ; Fri, 3 Jul 2020 23:23:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D992F2D6 for ; Fri, 3 Jul 2020 23:22:58 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1593818561.720def6b74332ed8ee8d15425ff4dc45dc4e7ba5.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/joymouse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/joymouse/joymouse-0.5-r1.ebuild X-VCS-Directories: app-misc/joymouse/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 720def6b74332ed8ee8d15425ff4dc45dc4e7ba5 X-VCS-Branch: master Date: Fri, 3 Jul 2020 23:22:58 +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: 1cf31741-6cf4-49a8-a016-cc799c37ff63 X-Archives-Hash: 2009ef21b5642cc6a7dda935f3053550 commit: 720def6b74332ed8ee8d15425ff4dc45dc4e7ba5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Jul 1 17:36:08 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Jul 3 23:22:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=720def6b app-misc/joymouse: EAPI7, fix LICENSE Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16537 Signed-off-by: Aaron Bauman gentoo.org> app-misc/joymouse/joymouse-0.5-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app-misc/joymouse/joymouse-0.5-r1.ebuild b/app-misc/joymouse/joymouse-0.5-r1.ebuild new file mode 100644 index 00000000000..1d376462050 --- /dev/null +++ b/app-misc/joymouse/joymouse-0.5-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="An application that translates joystick events to mouse events" +HOMEPAGE="https://sourceforge.net/projects/joymouse-linux" +SRC_URI="mirror://sourceforge/joymouse-linux/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXtst" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +src_prepare() { + default + sed -i 's/printf(message/fputs(message, stdout/g' src/joymouse.c || die +}