summaryrefslogtreecommitdiff
path: root/games-util/joystick/joystick-1.7.1.ebuild
blob: 2f1e8014e508c6cbdfe0039f589dadd80b0d74bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit toolchain-funcs

MY_P="linuxconsoletools-${PV}"

DESCRIPTION="Joystick testing utilities"
HOMEPAGE="https://sourceforge.net/projects/linuxconsole/"
SRC_URI="mirror://sourceforge/linuxconsole/files/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="sdl udev"

DEPEND="sdl? ( media-libs/libsdl2[video] )"
RDEPEND="
	${DEPEND}
	udev? ( virtual/udev )"
BDEPEND="virtual/pkgconfig"

PATCHES=(
	"${FILESDIR}"/${PN}-1.6.0-build.patch
)

src_configure() {
	tc-export CC PKG_CONFIG
	export PREFIX="${EPREFIX}"/usr
	export USE_SDL=$(usex sdl)
}

src_install() {
	default

	if ! use udev; then
		rm "${ED}"/usr/bin/jscal-{re,}store || die
	fi

	if [[ ${EPREFIX} ]]; then
		mv {"${D}","${ED}"}/lib || die
	fi
}