Diff htp-1.19 with a htp-1.19-r1

/usr/portage/app-text/htp/htp-1.19-r1.ebuild 2023-10-09 14:52:28.880368335 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=6
4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs
7 7

  
......
13 13
SLOT="0"
14 14
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
15 15

  
16
RESTRICT="test"
17

  
18
QA_PRESTRIPPED="/usr/bin/htp"
16
PATCHES=(
17
	"${FILESDIR}"/${PN}-1.19-no-prestrip.patch
18
	"${FILESDIR}"/${PN}-1.19-parallel-make.patch
19
	"${FILESDIR}"/${PN}-1.19-fix-perl-5.26.patch
20
)
19 21

  
20 22
src_compile() {
23
	# TOOD: Tests are always run by the Makefile right now
21 24
	emake \
22 25
		CCOPT="-c ${CFLAGS} ${CPPFLAGS} -DHAVE_SNPRINTF -DHAVE_VASPRINTF -DHAVE_ASPRINTF" \
23 26
		CC="$(tc-getCC)" \
Thank you!