diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-10-09 13:35:59 +0200 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-10-09 13:40:55 +0200 |
commit | ced5cf24a5b9cde5d4b19283370840e529f2cf66 (patch) | |
tree | ba1f3bb0632b146870f779221e6c796a2c11bae3 /net-libs | |
parent | net-analyzer/suricata: bump to 5.0.4 (diff) | |
download | gentoo-ced5cf24a5b9cde5d4b19283370840e529f2cf66.tar.gz gentoo-ced5cf24a5b9cde5d4b19283370840e529f2cf66.tar.bz2 gentoo-ced5cf24a5b9cde5d4b19283370840e529f2cf66.zip |
net-libs/libhtp: remove old
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libhtp/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libhtp/libhtp-0.5.33.ebuild | 37 |
2 files changed, 0 insertions, 38 deletions
diff --git a/net-libs/libhtp/Manifest b/net-libs/libhtp/Manifest index 60a6d999856d..012f450e37d7 100644 --- a/net-libs/libhtp/Manifest +++ b/net-libs/libhtp/Manifest @@ -1,2 +1 @@ -DIST libhtp-0.5.33.tar.gz 496010 BLAKE2B 9648632e9f37c20a3efa5edf9b5ee5ed97b5ba767faf6b276c4d38760422b601f9443cfaf30e60c6e6dd555d259a3b5613f0370040753d7336f6ef5e94b32d55 SHA512 52bbb72710fd0f5fc917d62f5a2b659092669eda0553586e75c17c558e3f6559dcf8eb7707db931045af532592cbad691461af2dd5362f95e2a4884e7475bf94 DIST libhtp-0.5.35.tar.gz 496852 BLAKE2B 21ee020f94ea351f408eb3d0d2f99b01f054341a390c9cc42c44a1f2237a1fe965e12797ecc04cf9a519e34fcf495fae4b4119bca6c38ef1d1fa0a9d35c243fe SHA512 d88a8b5f93759a348d0cb039dd95c5504b09b6ff577138cebbaaccf06a6e7ab682e8b61d904e005af67ea4887492d949cdb466d1cbbd9b970a94a30e8b26564e diff --git a/net-libs/libhtp/libhtp-0.5.33.ebuild b/net-libs/libhtp/libhtp-0.5.33.ebuild deleted file mode 100644 index 4c0e8229142d..000000000000 --- a/net-libs/libhtp/libhtp-0.5.33.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 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 ~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 -} |