Files
gentoo/net-libs/libhtp/libhtp-0.5.53.ebuild
Marek Szuba 4cda12b63b net-libs/libhtp: add 0.5.53
Fixes CVE-2025-53537.

Should any of CVE-2026-31935, CVE-2026-31933, CVE-2026-31932
and CVE-2026-31937 prove relevant to libhtp rather than
net-analyzer/suricata (upstream only publishes combined release notes
for both, and the details of the latter four CVEs have not been released
yet), fixes those as well.

Bug: https://bugs.gentoo.org/971362
Signed-off-by: Marek Szuba <marek.szuba@genequark.eu>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/351
Signed-off-by: Sam James <sam@gentoo.org>
2026-03-20 19:21:49 +00:00

42 lines
940 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=9
inherit autotools
DESCRIPTION="Security-aware parser for the HTTP protocol and the related bits and pieces"
HOMEPAGE="https://github.com/OISF/libhtp"
SRC_URI="https://github.com/OISF/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
IUSE="debug"
RDEPEND="virtual/zlib:="
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-0.5.48-configure_fortify_source.patch
)
# false positive -- function specific to dev-libs/libiconv, which is only used
# in Windows-based Prefix installations
QA_CONFIG_IMPL_DECL_SKIP=( iconvctl )
src_prepare() {
default
eautoreconf
}
src_configure() {
# The debug configure logic is broken.
econf $(usev debug '--enable-debug')
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die "Failed to remove .la files"
}