summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2021-11-19 13:00:03 +0100
committerMarek Szuba <marecki@gentoo.org>2021-11-19 15:58:51 +0100
commitba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4 (patch)
tree6490aac2835ac7d63b3ade19e4da6877915a103f /net-libs/libhtp/libhtp-0.5.38.ebuild
parentnet-analyzer/suricata: add 6.0.4, drop 6.0.3-r2 (diff)
downloadgentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.tar.gz
gentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.tar.bz2
gentoo-ba693f3ad42e5d8ff0f6bd91c13b8429c842a3a4.zip
net-libs/libhtp: drop 0.5.38
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs/libhtp/libhtp-0.5.38.ebuild')
-rw-r--r--net-libs/libhtp/libhtp-0.5.38.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/net-libs/libhtp/libhtp-0.5.38.ebuild b/net-libs/libhtp/libhtp-0.5.38.ebuild
deleted file mode 100644
index fb42824c9846..000000000000
--- a/net-libs/libhtp/libhtp-0.5.38.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools multilib-minimal
-
-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 static-libs"
-
-RDEPEND="sys-libs/zlib[static-libs?]"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-multilib_src_configure() {
- # The debug configure logic is broken.
- ECONF_SOURCE=${S} \
- econf \
- $(usex debug '--enable-debug' '') \
- $(use_enable static-libs static)
-}
-
-multilib_src_install_all() {
- if ! use static-libs; then
- find "${ED}" -name '*.la' -delete || die "Failed to remove .la files"
- fi
-}