diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-07 16:05:34 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-01-07 16:05:34 +0000 |
commit | 594bed7cdbb04a8e239841e7630ee69b793d4924 (patch) | |
tree | 1cab566adedc15524c38c357699ceeacdb69b4ed /net-analyzer/nsat | |
parent | Updated dependencies, cloes #13332 (diff) | |
download | historical-594bed7cdbb04a8e239841e7630ee69b793d4924.tar.gz historical-594bed7cdbb04a8e239841e7630ee69b793d4924.tar.bz2 historical-594bed7cdbb04a8e239841e7630ee69b793d4924.zip |
Versionbump
Diffstat (limited to 'net-analyzer/nsat')
-rw-r--r-- | net-analyzer/nsat/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/nsat/files/digest-nsat-1.5 | 1 | ||||
-rw-r--r-- | net-analyzer/nsat/nsat-1.5.ebuild | 47 |
3 files changed, 54 insertions, 1 deletions
diff --git a/net-analyzer/nsat/ChangeLog b/net-analyzer/nsat/ChangeLog index 6c9164eba49c..a047a658fadb 100644 --- a/net-analyzer/nsat/ChangeLog +++ b/net-analyzer/nsat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/nsat # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nsat/ChangeLog,v 1.1 2002/12/17 20:00:22 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nsat/ChangeLog,v 1.2 2003/01/07 16:05:34 aliz Exp $ + +*nsat-1.5 (07 Jan 2003) + + 07 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> nsat-1.5.ebuild : + Version bump. Found by Kemal Akman <ka@leogic.com> in #13327. *nsat-1.43 (17 Dec 2002) diff --git a/net-analyzer/nsat/files/digest-nsat-1.5 b/net-analyzer/nsat/files/digest-nsat-1.5 new file mode 100644 index 000000000000..9db18a51dd60 --- /dev/null +++ b/net-analyzer/nsat/files/digest-nsat-1.5 @@ -0,0 +1 @@ +MD5 ba7f5bbc476bc937c16e3654a8e0a666 nsat-1.5.tgz 410603 diff --git a/net-analyzer/nsat/nsat-1.5.ebuild b/net-analyzer/nsat/nsat-1.5.ebuild new file mode 100644 index 000000000000..e478135200c9 --- /dev/null +++ b/net-analyzer/nsat/nsat-1.5.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nsat/nsat-1.5.ebuild,v 1.1 2003/01/07 16:05:34 aliz Exp $ + +IUSE="pcap X" + +S=${WORKDIR}/${PN} +DESCRIPTION="Network Security Analysis Tool, an application-level network security scanner" +SRC_URI="mirror://sourceforge/nsat/${P}.tgz" +HOMEPAGE="http://nsat.sourceforge.net/" + +DEPEND="pcap? ( >=net-libs/libpcap-0.7.1-r1 ) + X? ( virtual/x11 )" +RDEPEND=${DEPEND} + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +src_unpack() { + unpack ${A} + cd ${S} + mv nsat.conf nsat.conf.orig + sed "s:^#CGIFile /usr/local/share/nsat/nsat.cgi$:#CGIFile /usr/share/nsat/nsat.cgi:" \ + nsat.conf.orig > nsat.conf +} + +src_compile() { + econf || die + + # Parallel make doesn't work. + make || die "compile problem" +} + +src_install () { + dobin nsat smb-ns + use X && dobin tools/xnsat + + insinto /usr/share/nsat + doins nsat.cgi + + insinto /etc/nsat + doins nsat.conf + + dodoc README doc/LICENSE doc/CHANGES + doman doc/nsat.8 +} |