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>
This commit is contained in:
Michael Mair-Keimberger
2020-07-01 19:36:08 +02:00
committed by Aaron Bauman
parent bfea4b6b34
commit 720def6b74

View File

@@ -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
}