mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Done via: ``` git grep -l 'virtual/zlib"' | xargs sed -i -e 's@virtual/zlib"@virtual/zlib:="@' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
42 lines
940 B
Bash
42 lines
940 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
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"
|
|
}
|