blob: 60523e7f301e22d59aaeceb778ea371754b340c9 (
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-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs udev
MY_P="linuxconsoletools-${PV}"
DESCRIPTION="Joystick testing utilities"
HOMEPAGE="https://sourceforge.net/projects/linuxconsole/"
SRC_URI="https://downloads.sourceforge.net/linuxconsole/files/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="sdl"
RDEPEND="sdl? ( media-libs/libsdl2[video] )"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-1.8.1-optional-ffmvforce.patch
)
src_configure() {
tc-export CC PKG_CONFIG
export PREFIX="${EPREFIX}"/usr
use sdl || export DISABLE_FFMVFORCE=1
}
src_install() {
default
[[ ! ${EPREFIX} ]] || mv {"${D}","${ED}"}/lib || die
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}
|