summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-07-01 19:36:08 +0200
committerAaron Bauman <bman@gentoo.org>2020-07-03 19:22:41 -0400
commit720def6b74332ed8ee8d15425ff4dc45dc4e7ba5 (patch)
tree8c7793434b1626f0ec662c6b4c274bd0576a623e /app-misc/joymouse
parentnet-dns/maradns: remove unused patches (diff)
downloadgentoo-720def6b74332ed8ee8d15425ff4dc45dc4e7ba5.tar.gz
gentoo-720def6b74332ed8ee8d15425ff4dc45dc4e7ba5.tar.bz2
gentoo-720def6b74332ed8ee8d15425ff4dc45dc4e7ba5.zip
app-misc/joymouse: EAPI7, fix LICENSE
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/16537 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-misc/joymouse')
-rw-r--r--app-misc/joymouse/joymouse-0.5-r1.ebuild22
1 files changed, 22 insertions, 0 deletions
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 000000000000..1d3764620503
--- /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
+}