diff options
author | Michael Boman <mboman@gentoo.org> | 2004-03-29 13:46:38 +0000 |
---|---|---|
committer | Michael Boman <mboman@gentoo.org> | 2004-03-29 13:46:38 +0000 |
commit | a43545ad0c84486a1641c1f4774559dda2329a6d (patch) | |
tree | 1d7e76f497ddc1da8fc70b6d6ed2b73d4c049b5c /net-analyzer/nbtscan | |
parent | Added to ~ppc (diff) | |
download | historical-a43545ad0c84486a1641c1f4774559dda2329a6d.tar.gz historical-a43545ad0c84486a1641c1f4774559dda2329a6d.tar.bz2 historical-a43545ad0c84486a1641c1f4774559dda2329a6d.zip |
New upstream version. Closes #45372
Diffstat (limited to 'net-analyzer/nbtscan')
-rw-r--r-- | net-analyzer/nbtscan/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/nbtscan/Manifest | 4 | ||||
-rw-r--r-- | net-analyzer/nbtscan/files/digest-nbtscan-1.5.1 | 1 | ||||
-rw-r--r-- | net-analyzer/nbtscan/nbtscan-1.5.1.ebuild | 24 |
4 files changed, 35 insertions, 3 deletions
diff --git a/net-analyzer/nbtscan/ChangeLog b/net-analyzer/nbtscan/ChangeLog index 1a594e26a3ef..d3e722dd8580 100644 --- a/net-analyzer/nbtscan/ChangeLog +++ b/net-analyzer/nbtscan/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nbtscan -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/ChangeLog,v 1.5 2003/02/12 07:47:24 vapier Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nbtscan/ChangeLog,v 1.6 2004/03/29 13:46:38 mboman Exp $ + +*nbtscan-1.5.1 (29 Mar 2004) + + 29 Mar 2004; Michael Boman <mboman@gentoo.org> nbtscan-1.5.1.ebuild: + New upstream version. Closes #45372 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-analyzer/nbtscan/Manifest b/net-analyzer/nbtscan/Manifest index b04f9a0105fd..af3c7ffbfcd0 100644 --- a/net-analyzer/nbtscan/Manifest +++ b/net-analyzer/nbtscan/Manifest @@ -1,3 +1,5 @@ -MD5 16d86eb0248986d7e8f7de7a1c0e99ce ChangeLog 876 +MD5 3a1edc58f9d9611e0397b1cd10bb6ca6 ChangeLog 1016 MD5 2d6bcd071b0afb2f2dc56d5acf930e34 nbtscan-1.0.3.ebuild 696 +MD5 32277bbdf4a61c22ddd2e7db10aa689f nbtscan-1.5.1.ebuild 693 MD5 cf7eaedc7093ec3f2c0aca3848d73798 files/digest-nbtscan-1.0.3 64 +MD5 8e3778c37bb9f7f1e27633860cd1b2f2 files/digest-nbtscan-1.5.1 64 diff --git a/net-analyzer/nbtscan/files/digest-nbtscan-1.5.1 b/net-analyzer/nbtscan/files/digest-nbtscan-1.5.1 new file mode 100644 index 000000000000..651f8a7c4c2c --- /dev/null +++ b/net-analyzer/nbtscan/files/digest-nbtscan-1.5.1 @@ -0,0 +1 @@ +MD5 85bb085077c380b82a6ff73e0de0c154 nbtscan-1.5.1.tar.gz 82107 diff --git a/net-analyzer/nbtscan/nbtscan-1.5.1.ebuild b/net-analyzer/nbtscan/nbtscan-1.5.1.ebuild new file mode 100644 index 000000000000..4355560ce806 --- /dev/null +++ b/net-analyzer/nbtscan/nbtscan-1.5.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# 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.1 2004/03/29 13:46:38 mboman 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/glibc" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 sparc " + +src_compile() { + ./configure --host=${CHOST} --prefix=/usr || die + emake CFLAGS="${CFLAGS}" || die +} + +src_install () { + dobin nbtscan + dodoc COPYING ChangeLog README +} |