# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/darkstat/darkstat-2.6-r1.ebuild,v 1.4 2004/09/16 02:08:46 pvdabeel 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.gz" KEYWORDS="x86 ~ppc macos ppc-macos" IUSE="nls" LICENSE="GPL-2" SLOT="0" DEPEND=">=net-libs/libpcap-0.7.1 nls? ( sys-devel/gettext ) " RDEPEND="" src_compile() { epatch ${FILESDIR}/ipcheck.patch 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 }