blob: 5ccdff9433d7c53293fd9f1af64091a86093b21a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils
DESCRIPTION="Cisco netflow probe from libpcap, ULOG, tee/divert sources"
HOMEPAGE="https://sourceforge.net/projects/ndsad"
SRC_URI="mirror://sourceforge/ndsad/ndsad-${PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=net-libs/libpcap-0.8"
RDEPEND="${DEPEND}"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-conf_path.patch \
"${FILESDIR}"/${P}-gentoo.patch \
"${FILESDIR}"/${P}-getpid.patch \
"${FILESDIR}"/${P}-log-path.patch \
"${FILESDIR}"/${P}-strncpy-overflow.patch
eautoreconf
}
src_configure() {
econf --with-ulog=yes
}
DOCS=( ChangeLog AUTHORS README )
src_install() {
default
doman ndsad.conf.5
insinto /etc
newins ndsad.conf ndsad.conf
newinitd "${FILESDIR}"/ndsad.init ndsad
newconfd "${FILESDIR}"/ndsad.conf.d ndsad
}
|