Diff xkbd-0.8.18 with a xkbd-999999

/usr/portage/x11-misc/xkbd/xkbd-999999.ebuild 2023-10-09 14:52:35.956368513 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5
inherit autotools flag-o-matic
5
inherit autotools flag-o-matic git-r3
6 6

  
7 7
DESCRIPTION="onscreen soft keyboard for X11"
8 8
HOMEPAGE="https://github.com/mahatma-kaganovich/xkbd"
9
SRC_URI="https://github.com/mahatma-kaganovich/${PN}/archive/${P}.tar.gz"
9
EGIT_REPO_URI="https://github.com/mahatma-kaganovich/xkbd"
10 10

  
11 11
LICENSE="GPL-2"
12 12
SLOT="0"
13
KEYWORDS="amd64 ~arm ~ppc x86"
14
IUSE="debug +xft +xpm"
13
KEYWORDS=""
14
IUSE="debug +evdev +xft +xi +xpm +xrandr +xscreensaver"
15 15

  
16 16
RDEPEND="
17 17
	x11-libs/libX11
18
	x11-libs/libXScrnSaver
19
	x11-libs/libXfixes
20
	x11-libs/libXi
18 21
	x11-libs/libXtst
22
	evdev? ( dev-libs/libevdev )
19 23
	xft? ( x11-libs/libXft )
20 24
	xpm? ( x11-libs/libXpm )
25
	xrandr? ( x11-libs/libXrandr )
21 26
"
22 27
DEPEND="
23 28
	${RDEPEND}
24 29
	x11-base/xorg-proto
25 30
"
26 31
DOCS=( AUTHORS )
27
S=${WORKDIR}/${PN}-${P}
32
PATCHES=(
33
	"${FILESDIR}"/${PN}-999999-evdev.patch
34
	"${FILESDIR}"/${PN}-999999-xft.patch
35
)
28 36

  
29 37
src_prepare() {
30 38
	default
......
34 42
src_configure() {
35 43
	use debug && append-cppflags -DDEBUG
36 44
	econf \
45
		$(use_enable evdev) \
37 46
		$(use_enable xft) \
47
		$(use_enable xi) \
38 48
		$(use_enable xpm) \
49
		$(use_enable xrandr) \
50
		$(use_enable xscreensaver ss) \
39 51
		--disable-debug
40 52
}
Thank you!