blob: 93c9ae3b00fbc67531807aeedf24dea312e1f715 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit python-single-r1 xdg
DESCRIPTION="Actions gestures on your touchpad using libinput"
HOMEPAGE="https://github.com/bulletmark/libinput-gestures"
if [[ ${PV} == *9999 ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/bulletmark/${PN}.git"
else
SRC_URI="https://github.com/bulletmark/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
# This is completely broken
RESTRICT="test"
RDEPEND="${PYTHON_DEPS}
dev-libs/libinput
x11-misc/wmctrl
x11-misc/xdotool
"
DEPEND="
dev-libs/libinput
dev-util/desktop-file-utils
"
PATCHES=(
"${FILESDIR}/${P}-python-39-tests.patch"
)
src_prepare() {
default
# Fix docdir installation path
sed -i "/^DOCDIR/s@\$NAME@${PF}@" libinput-gestures-setup \
|| die "sed failed for libinput-gestures-setup"
}
src_test() {
emake test
}
src_install() {
default
# Actually respect the python target setting
python_doscript "${PN}"
}
pkg_postinst() {
xdg_icon_cache_update
elog "You must be in the input group to read the touchpad device."
if ! has_version x11-libs/gtk+:3 ; then
elog "${PN}-setup script supports GNOME via x11-libs/gtk+:3."
fi
if ! has_version kde-plasma/kde-cli-tools:5 ; then
elog "${PN}-setup script supports Plasma 5 via kde-plasma/kde-cli-tools:5."
fi
}
|