21 lines
697 B
Bash
21 lines
697 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arptools/arptools-1.0.2.ebuild,v 1.2 2013/03/07 09:44:35 pinkbyte Exp $
|
|
|
|
DESCRIPTION="a collection of libnet and libpcap based ARP utilities."
|
|
HOMEPAGE="http://www.burghardt.pl/wiki/software/arptools"
|
|
SRC_URI="http://www.burghardt.pl/wiki/_media/software/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="net-libs/libnet
|
|
net-libs/libpcap"
|
|
|
|
src_install() {
|
|
# BUG: the tools are installed under /usr/sbin
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
|
dodoc AUTHORS ChangeLog NEWS README TODO
|
|
}
|