Diff horst-5.1 with a horst-9999

/usr/portage/net-wireless/horst/horst-9999.ebuild 2023-10-09 14:52:34.780368483 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=6
5
inherit toolchain-funcs vcs-snapshot
5
inherit git-r3 toolchain-funcs
6 6

  
7 7
DESCRIPTION="Small 802.11 wireless LAN analyzer"
8 8
HOMEPAGE="https://github.com/br101/horst/"
9
SRC_URI="https://github.com/br101/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
9
EGIT_REPO_URI="https://github.com/br101/${PN}/"
10 10

  
11 11
LICENSE="GPL-2"
12 12
SLOT="0"
13
KEYWORDS="~amd64 ~x86"
13
KEYWORDS=""
14 14
IUSE="debug +pcap test"
15 15

  
16 16
RDEPEND="
......
28 28
"
29 29
RESTRICT=test #just semantic tests, no functional tests
30 30
PATCHES=(
31
	"${FILESDIR}"/${PN}-5.1-CC.patch
32
	"${FILESDIR}"/${PN}-5.1-pcap_bufsize.patch
33
	"${FILESDIR}"/${PN}-5.1-tinfo.patch
31
	"${FILESDIR}"/${PN}-9999-tinfo.patch
34 32
)
35 33

  
36 34
src_compile() {
......
42 40
	dosbin ${PN}{,.sh}
43 41
	dodoc README.md
44 42
	doman ${PN}.8
43
	insinto /etc
44
	doins ${PN}.conf
45 45
}
Thank you!