Diff libprotoident-2.0.14_p1 with a libprotoident-9999

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

  
4 4
EAPI=7
5
inherit autotools
5
inherit autotools git-r3
6 6

  
7 7
DESCRIPTION="A library that performs application layer protocol identification for flows"
8 8
HOMEPAGE="https://research.wand.net.nz/software/libprotoident.php"
9
SRC_URI="https://github.com/wanduow/${PN}/archive/${PV/_p/-}.tar.gz"
9
EGIT_REPO_URI="https://github.com/wanduow/libprotoident"
10
EGIT_BRANCH="develop"
10 11

  
11 12
LICENSE="LGPL-3+"
12 13
SLOT="0/2"
13
KEYWORDS="~amd64 ~x86"
14
IUSE="static-libs tools"
14
KEYWORDS=""
15
IUSE="static-libs +tools"
15 16

  
16 17
DEPEND="
17 18
	>=net-libs/libtrace-4.0.1
......
20 21
RDEPEND="
21 22
	${DEPEND}
22 23
"
23
S=${WORKDIR}/${P/_p/-}
24 24

  
25 25
src_prepare() {
26 26
	default
27 27

  
28
	sed -i \
29
		-e '/-Werror/d' \
30
		lib/Makefile.am || die
28
	sed -i -e '/-Werror/d' lib/Makefile.am || die
31 29

  
32 30
	eautoreconf
33 31
}
Thank you!