summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-04-16 09:34:24 +0200
committerMichał Górny <mgorny@gentoo.org>2019-04-16 09:36:34 +0200
commite452308bfef9842a5fa61de7cf823d30d31d3701 (patch)
treedcaef93570e7620fbceff2989ba02d3455245960 /net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild
parentdev-vcs/bzr-fastimport: Remove last-rited pkg (diff)
downloadgentoo-e452308bfef9842a5fa61de7cf823d30d31d3701.tar.gz
gentoo-e452308bfef9842a5fa61de7cf823d30d31d3701.tar.bz2
gentoo-e452308bfef9842a5fa61de7cf823d30d31d3701.zip
net-analyzer/netsniff-ng: Remove last-rited pkg
Closes: https://bugs.gentoo.org/610966 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild')
-rw-r--r--net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild b/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild
deleted file mode 100644
index e2787720d544..000000000000
--- a/net-analyzer/netsniff-ng/netsniff-ng-0.6.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="high performance network sniffer for packet inspection"
-HOMEPAGE="http://netsniff-ng.org/"
-SRC_URI="http://pub.${PN}.org/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/geoip
- dev-libs/libcli
- dev-libs/libnl:3
- dev-libs/userspace-rcu:=
- net-libs/libnet:1.1
- net-libs/libnetfilter_conntrack
- net-libs/libpcap
- sys-libs/ncurses:0
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- sys-devel/flex
- sys-devel/bison
- =net-libs/nacl-0_p20110221*
- virtual/pkgconfig"
-
-src_prepare() {
- sed -e '/CFLAGS/s:?=:+=:' \
- -e '/CPPFLAGS/s:?=:+=:' \
- -e '/CFLAGS/s:\(-g\|-O2\|-O3\|-m\(arch\|tune\)=native\)::g' \
- -i.bak Makefile || die
-
- if ! grep nacl-20110221 curvetun/nacl_build.sh >/dev/null ; then
- die "have nacl-20110221, expected $(grep ${MY_NACL_P} curvetun/nacl_build.sh)"
- fi
-
- export NACL_INC_DIR="${EROOT}usr/include/nacl"
- export NACL_LIB_DIR="${EROOT}usr/$(get_libdir)/nacl"
-
- epatch_user
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" LD="$(tc-getCC)" CCACHE="" \
- LEX=lex YAAC=bison STRIP=true \
- Q= HARDENING=1
-}
-
-src_install() {
- emake PREFIX="${ED}usr" ETCDIR="${ED}etc" install
-
- dodoc AUTHORS README REPORTING-BUGS
-}