summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-08-15 19:26:04 +0000
committerJeroen Roovers <jer@gentoo.org>2014-08-15 19:26:04 +0000
commit34318fed6851414a08fbcca624971248eab2a7d5 (patch)
tree2a71a1133e60d7f0e367c2f9464fc15ab2889020 /net-analyzer/ndsad
parentOld. (diff)
downloadgentoo-2-34318fed6851414a08fbcca624971248eab2a7d5.tar.gz
gentoo-2-34318fed6851414a08fbcca624971248eab2a7d5.tar.bz2
gentoo-2-34318fed6851414a08fbcca624971248eab2a7d5.zip
Old.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/ndsad')
-rw-r--r--net-analyzer/ndsad/ChangeLog5
-rw-r--r--net-analyzer/ndsad/ndsad-1.33.ebuild53
2 files changed, 4 insertions, 54 deletions
diff --git a/net-analyzer/ndsad/ChangeLog b/net-analyzer/ndsad/ChangeLog
index adcb6670014d..97441cda0967 100644
--- a/net-analyzer/ndsad/ChangeLog
+++ b/net-analyzer/ndsad/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/ndsad
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ndsad/ChangeLog,v 1.12 2014/08/10 20:58:57 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ndsad/ChangeLog,v 1.13 2014/08/15 19:26:04 jer Exp $
+
+ 15 Aug 2014; Jeroen Roovers <jer@gentoo.org> -ndsad-1.33.ebuild:
+ Old.
10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> ndsad-1.33-r1.ebuild,
ndsad-1.33.ebuild:
diff --git a/net-analyzer/ndsad/ndsad-1.33.ebuild b/net-analyzer/ndsad/ndsad-1.33.ebuild
deleted file mode 100644
index ea681841eeab..000000000000
--- a/net-analyzer/ndsad/ndsad-1.33.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ndsad/ndsad-1.33.ebuild,v 1.8 2014/08/10 20:58:57 slyfox Exp $
-
-inherit autotools
-
-DESCRIPTION="Cisco netflow probe from libpcap, ULOG, tee/divert sources"
-HOMEPAGE="http://sourceforge.net/projects/ndsad"
-SRC_URI="mirror://sourceforge/ndsad/ndsad-${PV}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND=">=net-libs/libpcap-0.8"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Put ndsad binary in sbin.
- sed -i "s/bin_PROGRAMS = ndsad/sbin_PROGRAMS = ndsad/" Makefile.am || \
- die "Can not change bin->sbin in Makefile.am... sed failed"
-
- sed -i \
- "s:^#define conf_path \"/netup/utm5/ndsad.cfg\":#define conf_path \"/etc/ndsad.conf\":" \
- ndsad.cc || die "Can not change default config path... sed failed"
-
- sed -i "s:log /tmp/ndsad.log:log /var/log/ndsad.log:" ndsad.conf || \
- die "Can not fix logging path in ndsad.conf... sed failed"
-
- eautoreconf
-}
-
-src_compile() {
- econf --with-ulog=yes
- emake || die "compilation failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
-
- doman ndsad.conf.5 || die
-
- insinto /etc
- newins ndsad.conf ndsad.conf || die
-
- newinitd "${FILESDIR}"/ndsad.init ndsad || die
- newconfd "${FILESDIR}"/ndsad.conf.d ndsad || die
-
- dodoc ChangeLog AUTHORS README
-}