blob: c7542c0746d3834fefb64d38020c6df6b6cced98 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.5.1.ebuild,v 1.9 2004/09/16 02:09:48 pvdabeel Exp $
S=${WORKDIR}/${P}a
DESCRIPTION="NBTscan is a program for scanning IP networks for NetBIOS name information"
SRC_URI="http://www.inetcat.org/software/${P}.tar.gz"
HOMEPAGE="http://www.inetcat.org/software/nbtscan.html"
DEPEND="virtual/libc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ~amd64 macos ppc-macos"
IUSE=""
src_compile() {
./configure --host=${CHOST} --prefix=/usr || die
emake CFLAGS="${CFLAGS}" || die
}
src_install () {
dobin nbtscan
dodoc COPYING ChangeLog README
}
|