blob: 1ac1500005305bd21578fae06e05b89357b65ba0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/darkstat/darkstat-3.0.540.ebuild,v 1.2 2006/08/09 17:34:24 blubb 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 ~ppc-macos ~x86"
IUSE="nls"
LICENSE="GPL-2"
SLOT="0"
DEPEND="net-libs/libpcap
nls? ( sys-devel/gettext )"
RDEPEND="nls? ( virtual/libintl )"
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 AUTHORS README THANKS
newinitd "${FILESDIR}"/darkstat-init2 darkstat
newconfd "${FILESDIR}"/darkstat-confd2 darkstat
}
|