blob: 41949cd8049eec326d42d8a35cc4ea41c22df0fb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/darkstat/darkstat-2.6.ebuild,v 1.5 2005/01/29 05:12:50 dragonheart Exp $
DESCRIPTION="darkstat is a network traffic analyzer"
HOMEPAGE="http://dmr.ath.cx/net/darkstat/"
SRC_URI="http://dmr.ath.cx/net/darkstat/${P}.tar.gz"
KEYWORDS="x86 ~ppc"
IUSE="nls"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/libpcap
nls? ( sys-devel/gettext ) "
RDEPEND=""
src_compile() {
use nls && myconf="`use_with nls`"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
${myconf} || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodir /var/spool/darkstat
dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL ISSUES NEWS README TODO
exeinto /etc/init.d ; newexe ${FILESDIR}/darkstat-init darkstat
insinto /etc/conf.d ; newins ${FILESDIR}/darkstat-confd darkstat
}
|