Diff kismet-2023.07.1 with a kismet-9999

/usr/portage/net-wireless/kismet/kismet-9999.ebuild 2023-10-09 14:52:34.784368484 +0300
18 18
	S=${WORKDIR}/${MY_P/BETA/beta}
19 19

  
20 20
	#normally we want an official release
21
	SRC_URI="https://www.kismetwireless.net/code/${MY_P}.tar.xz
22
		https://dev.gentoo.org/~zerochaos/distfiles/${P}-stdint-fix.patch"
21
	SRC_URI="https://www.kismetwireless.net/code/${MY_P}.tar.xz"
23 22

  
24 23
	#but sometimes we want a git commit
25 24
	#COMMIT="9ca7e469cf115469f392db7436816151867e1654"
26 25
	#SRC_URI="https://github.com/kismetwireless/kismet/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
27 26
	#S="${WORKDIR}/${PN}-${COMMIT}"
28 27

  
29
	PATCHES=( "${DISTDIR}/${P}-stdint-fix.patch" )
30

  
31 28
	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
32 29
fi
33 30

  
......
36 33

  
37 34
LICENSE="GPL-2"
38 35
SLOT="0/${PV}"
39
IUSE="libusb lm-sensors networkmanager +pcre rtlsdr selinux +suid ubertooth udev"
36
IUSE="libusb lm-sensors mqtt networkmanager +pcre rtlsdr selinux +suid ubertooth udev"
40 37
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
41 38

  
42 39
CDEPEND="
43 40
	${PYTHON_DEPS}
44 41
	acct-user/kismet
45 42
	acct-group/kismet
43
	mqtt? ( app-misc/mosquitto )
46 44
	networkmanager? ( net-misc/networkmanager )
47 45
	dev-libs/glib:2
48 46
	dev-libs/elfutils
......
117 115
	econf \
118 116
		$(use_enable libusb libusb) \
119 117
		$(use_enable libusb wifi-coconut) \
118
		$(use_enable mqtt mosquitto) \
120 119
		$(use_enable pcre) \
121 120
		$(use_enable pcre require-pcre2) \
122 121
		$(use_enable lm-sensors lmsensors) \
Thank you!