summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild')
-rw-r--r--net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild b/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild
new file mode 100644
index 000000000000..d47b8b739629
--- /dev/null
+++ b/net-analyzer/nbtscan/nbtscan-1.5.1-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2005 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-r1.ebuild,v 1.1 2005/03/05 07:59:38 ka0ttic Exp $
+
+inherit eutils
+
+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 ~ppc-macos"
+IUSE=""
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ epatch ${FILESDIR}/${P}-script-whitespace.patch
+}
+
+src_compile() {
+ ./configure --host=${CHOST} --prefix=/usr || die
+ emake CFLAGS="${CFLAGS}" || die
+}
+
+src_install () {
+ dobin nbtscan
+ dodoc COPYING ChangeLog README
+}