# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 #P_="disco-1.0" S=${WORKDIR}/disco At="${P}.tar.gz" DESCRIPTION="Passive IP discovery and fingerprinting utility" HOMEPAGE="http://www.altmode.com/disco/" SRC_URI="" LICENSE="GPL-2" KEYWORDS="x86" SLOT=0 IUSE="" DEPEND="virtual/glibc net-libs/libpcap" src_unpack() { if [ ! -f ${DISTDIR}/${At} ] ; then die "Please download ${At} from http://prdownloads.sourceforge.net/discoipd/disco-1.0.tar.gz?download" fi tar xvzf ${DISTDIR}/${At} } src_compile() { econf || die "configure failed" emake || die "make failed" } src_install () { einstall dodoc AUTHORS COPYING README ChangeLog }