blob: 01e594822647a904a4d7b7cc6addaaf63a3ed926 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/nbtscan-1.0.3.ebuild,v 1.3 2002/07/18 23:22:50 seemant Exp $
S=${WORKDIR}/${P}
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/glibc"
SLOT="0"
LICENSE="GPL"
KEYWORDS="x86"
src_compile() {
./configure --host=${CHOST} --prefix=/usr || die
emake CFLAGS="${CFLAGS}" || die
}
src_install () {
dobin nbtscan
dodoc COPYING ChangeLog README
}
|