diff options
author | Sam James <sam@gentoo.org> | 2022-08-18 01:31:28 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-18 01:31:28 +0100 |
commit | 174ae76957f2baae81aa0985d53c7037d0f5113c (patch) | |
tree | 1d6b2ee6b80a3b1dcac7c4a7a3fde3f670233dc9 /net-libs/nDPI | |
parent | net-analyzer/pmacct: drop 1.7.6-r2, 1.7.6-r3 (diff) | |
download | gentoo-174ae76957f2baae81aa0985d53c7037d0f5113c.tar.gz gentoo-174ae76957f2baae81aa0985d53c7037d0f5113c.tar.bz2 gentoo-174ae76957f2baae81aa0985d53c7037d0f5113c.zip |
net-libs/nDPI: drop 4.0-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/nDPI')
-rw-r--r-- | net-libs/nDPI/Manifest | 2 | ||||
-rw-r--r-- | net-libs/nDPI/nDPI-4.0-r1.ebuild | 66 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-libs/nDPI/Manifest b/net-libs/nDPI/Manifest index b74a4f2bad03..eaf6229a8f6a 100644 --- a/net-libs/nDPI/Manifest +++ b/net-libs/nDPI/Manifest @@ -1,4 +1,2 @@ -DIST nDPI-4.0-patches.tar.bz2 8744 BLAKE2B 48bfb2cf240823b64ab15a3f8a21acece878102ebb4cc807648b264ef091107a05d66fc672cccd1bc721ad3ea0edde786a1f133dfc84c91422604a9929e327ed SHA512 99a780c18c048ceec29c42828c420fe3f9624906eaef70f92af6abdbf7bc29133e048d7f8de85d8b73aa6667066e7ab5843fa293221d5ec8bbe87803dde83db6 -DIST nDPI-4.0.tar.gz 120053617 BLAKE2B ea0f333bd62622c1ab792137f9bbf2e35cb3790aae191c5caeaea36c7ce376bfa84633e99e321c16bcfbe5812d6674b825bdc4197297cee76064ed88f344a577 SHA512 2526041bc02a210e65bad31323a66167d79a37d14697cf4459054cc54715e53f9673b0000cefa6b452bbe3b3e6c25f0bafcf59d24323d210e2ce6782d9153f81 DIST nDPI-4.2.tar.gz 126559327 BLAKE2B 079267939083e788ce8b13e89b194504031e4c3e628df335ece7aab72cc80b8d8538badd45dac9fdaeeed8cd5dd19a81fece9c1157cba9a91dfa130abef61473 SHA512 c58b228b7de2b5fa111234bb065f9be259cd0282d0058f5985180aab6567c9a18e3453ce9062bd3c057a096ec3dfdc21b7c9680e0148e34af10f707530d853b8 DIST nDPI-4.4.tar.gz 151062073 BLAKE2B fca968c0d0abcf18a6895dc6066b754925a2aa3cb3f395383f9add25066adf14bb95444a30950e13f7f22223ff203b16e7373c875841f33d8c885be83ed0bb6d SHA512 c5e3d38f7b6533bd4b9f96520c1d965bf0a8e3ec7e2d514bc42683bdb73d8331e28ed695f5d3972ace9e35f1af23359f5a25c0f5a20f7a8cc7a6b5446d592468 diff --git a/net-libs/nDPI/nDPI-4.0-r1.ebuild b/net-libs/nDPI/nDPI-4.0-r1.ebuild deleted file mode 100644 index 4be4dd426cc0..000000000000 --- a/net-libs/nDPI/nDPI-4.0-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Open Source Deep Packet Inspection Software Toolkit" -HOMEPAGE="https://www.ntop.org/" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/ntop/${PN}" - inherit git-r3 -else - SRC_URI="https://github.com/ntop/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-patches.tar.bz2" - - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="LGPL-3+" -SLOT="0/$(ver_cut 1)" - -DEPEND="dev-libs/json-c:= - dev-libs/libgcrypt:= - dev-libs/libgpg-error - net-libs/libpcap" -RDEPEND="${DEPEND}" - -PATCHES=( - "${WORKDIR}"/${P}-patches/ -) - -# Also sent a patch upstream https://github.com/ntop/nDPI/pull/1392 for -# AR/CC etc but doesn't apply cleanly (at all) to 4.0. - -src_prepare() { - default - - sed -i \ - -e "s%^libdir\s*=\s*\${prefix}/lib\s*$%libdir = \${prefix}/$(get_libdir)%" \ - src/lib/Makefile.in || die - - eautoreconf - - # Should be able to drop in next version. - # Taken from autogen.sh (bug #704074): - sed -i \ - -e "s/#define PACKAGE/#define NDPI_PACKAGE/g" \ - -e "s/#define VERSION/#define NDPI_VERSION/g" \ - configure || die -} - -src_test() { - pushd tests || die - - ./do.sh || die "Failed tests" - ./do-unit.sh || die "Failed unit tests" - - popd || die -} - -src_install() { - default - - rm "${ED}/usr/$(get_libdir)"/lib${PN,,}.a || die -} |