blob: 8b4f541f7ddd28f1ebe7a6474057a5e8108b0cf8 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/darkstat/darkstat-3.0.707-r1.ebuild,v 1.8 2008/09/10 10:41:52 pva Exp $
inherit eutils
DESCRIPTION="darkstat is a network traffic analyzer"
HOMEPAGE="http://dmr.ath.cx/net/darkstat/"
SRC_URI="http://dmr.ath.cx/net/darkstat/${P}.tar.bz2"
KEYWORDS="amd64 ppc x86"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
DEPEND="net-libs/libpcap"
DARKSTAT_CHROOT_DIR=${DARKSTAT_CHROOT_DIR:-/var/lib/darkstat}
src_compile() {
econf --with-privdrop-user=darkstat \
--with-chroot-dir="${DARKSTAT_CHROOT_DIR}" || die "./configure failed"
emake || die "compilation failed."
}
src_install() {
emake DESTDIR="${D}" install || die "installation failed."
dodoc AUTHORS README THANKS NEWS
newinitd "${FILESDIR}"/darkstat-init.new darkstat
newconfd "${FILESDIR}"/darkstat-confd.new darkstat
sed -i -e "s:__CHROOT__:${DARKSTAT_CHROOT_DIR}:g" "${D}"/etc/conf.d/darkstat
sed -i -e "s:__CHROOT__:${DARKSTAT_CHROOT_DIR}:g" "${D}"/etc/init.d/darkstat
keepdir "${DARKSTAT_CHROOT_DIR}"
chown darkstat:0 "${D}${DARKSTAT_CHROOT_DIR}"
}
pkg_preinst() {
enewuser darkstat
}
pkg_postinst() {
# Workaround bug #141619
DARKSTAT_CHROOT_DIR=`sed -n 's/^#CHROOT=\(.*\)/\1/p' "${ROOT}"etc/conf.d/darkstat`
chown darkstat:0 "${ROOT}${DARKSTAT_CHROOT_DIR}"
elog "WARNING: the darkstat init script has changed"
elog "To start different darkstat instances which will listen on a different"
elog "interfaces create in /etc/init.d directory the 'darkstat.if' symlink to"
elog "darkstat script where 'if' is the name of the interface."
elog "Also in /etc/conf.d directory copy darkstat to darkstat.if"
elog "and edit it to change default values."
elog
elog "darkstat's default chroot directory is: \"${ROOT}${DARKSTAT_CHROOT_DIR}\""
}
|