diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-12-17 20:00:22 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-12-17 20:00:22 +0000 |
commit | a154d93aef3e73b640525e5e968e7f7161d12db4 (patch) | |
tree | c57433fa06ef54a0218b381a7cd543deb08733bc | |
parent | outdated, use emu10k1 (diff) | |
download | gentoo-2-a154d93aef3e73b640525e5e968e7f7161d12db4.tar.gz gentoo-2-a154d93aef3e73b640525e5e968e7f7161d12db4.tar.bz2 gentoo-2-a154d93aef3e73b640525e5e968e7f7161d12db4.zip |
Initial imports
-rw-r--r-- | net-analyzer/argus/argus-2.0.5.ebuild | 42 | ||||
-rw-r--r-- | net-analyzer/argus/files/argus-2.0.5-gentoo.diff | 11 | ||||
-rw-r--r-- | net-analyzer/argus/files/digest-argus-2.0.5 | 1 | ||||
-rw-r--r-- | net-analyzer/dnstracer/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/dnstracer/dnstracer-1.6.ebuild | 21 | ||||
-rw-r--r-- | net-analyzer/dnstracer/files/digest-dnstracer-1.6 | 1 | ||||
-rw-r--r-- | net-analyzer/nsat/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/nsat/files/digest-nsat-1.43 | 1 | ||||
-rw-r--r-- | net-analyzer/nsat/nsat-1.43.ebuild | 47 | ||||
-rw-r--r-- | net-misc/jumpgate/ChangeLog | 8 | ||||
-rw-r--r-- | net-misc/jumpgate/files/digest-jumpgate-0.7 | 1 | ||||
-rw-r--r-- | net-misc/jumpgate/jumpgate-0.7.ebuild | 21 |
12 files changed, 170 insertions, 0 deletions
diff --git a/net-analyzer/argus/argus-2.0.5.ebuild b/net-analyzer/argus/argus-2.0.5.ebuild new file mode 100644 index 000000000000..3ce7723a7857 --- /dev/null +++ b/net-analyzer/argus/argus-2.0.5.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus/argus-2.0.5.ebuild,v 1.1 2002/12/17 20:00:22 aliz Exp $ + +DESCRIPTION="network Audit Record Generation and Utilization System" +HOMEPAGE="http://www.qosient.com/argus/" + +SRC_URI="ftp://ftp.qosient.com/pub/argus/src/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +RDEPEND="virtual/glibc + >=net-libs/libpcap-0.6.2" +DEPEND="${RDEPEND} + >=sys-devel/bison-1.28 + >=sys-devel/flex-2.4.6" + +src_unpack() { + unpack ${A} + cd ${S} + + # Fix hardcoded config file + patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die +} + +src_install () { + dodoc COPYING CREDITS INSTALL README + dodoc doc/FAQ doc/HOW-TO doc/CHANGES + + doman man/man1/* man/man5/* man/man8/* + + dolib lib/argus_common.a lib/argus_parse.a + + dobin bin/ra* + + newsbin bin/argus_linux argus + + insinto /etc/argus + doins support/Config/argus.conf +} + diff --git a/net-analyzer/argus/files/argus-2.0.5-gentoo.diff b/net-analyzer/argus/files/argus-2.0.5-gentoo.diff new file mode 100644 index 000000000000..d6047261acc3 --- /dev/null +++ b/net-analyzer/argus/files/argus-2.0.5-gentoo.diff @@ -0,0 +1,11 @@ +--- server/argus.c ++++ server/argus.c.new +@@ -243,7 +243,7 @@ + } + + if (!doconf) { +- snprintf (path, MAXPATHNAMELEN - 1, "/etc/argus.conf"); ++ snprintf (path, MAXPATHNAMELEN - 1, "/etc/argus/argus.conf"); + if (stat (path, &statbuf) == 0) { + ArgusParseResourceFile (path); + } else diff --git a/net-analyzer/argus/files/digest-argus-2.0.5 b/net-analyzer/argus/files/digest-argus-2.0.5 new file mode 100644 index 000000000000..ba3b1854ab39 --- /dev/null +++ b/net-analyzer/argus/files/digest-argus-2.0.5 @@ -0,0 +1 @@ +MD5 76ae6e86a59af2e7f61e746ad2df3e54 argus-2.0.5.tar.gz 495234 diff --git a/net-analyzer/dnstracer/ChangeLog b/net-analyzer/dnstracer/ChangeLog new file mode 100644 index 000000000000..8f6613de4ae0 --- /dev/null +++ b/net-analyzer/dnstracer/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-analyzer/dnstracer +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dnstracer/ChangeLog,v 1.1 2002/12/17 20:00:22 aliz Exp $ + +*dnstracer-1.6 (17 Dec 2002) + + 17 Dec 2002; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild contributed by Thomas Preissler <tomjohn@gmx.de> in #11785. diff --git a/net-analyzer/dnstracer/dnstracer-1.6.ebuild b/net-analyzer/dnstracer/dnstracer-1.6.ebuild new file mode 100644 index 000000000000..b37cef37af1a --- /dev/null +++ b/net-analyzer/dnstracer/dnstracer-1.6.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dnstracer/dnstracer-1.6.ebuild,v 1.1 2002/12/17 20:00:22 aliz Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Determines where a given nameserver gets its information from" +SRC_URI="http://www.mavetju.org/download/${P}.tar.gz" +HOMEPAGE="http://www.mavetju.org/unix/general.php" + +IUSE="" +KEYWORDS="~x86" +LICENSE="as-is" +SLOT="0" +DEPEND="virtual/glibc" +RDEPEND="" + +src_install () { + make DESTDIR=${D} install || die + dodoc README CHANGES +} + diff --git a/net-analyzer/dnstracer/files/digest-dnstracer-1.6 b/net-analyzer/dnstracer/files/digest-dnstracer-1.6 new file mode 100644 index 000000000000..8392cf2c8434 --- /dev/null +++ b/net-analyzer/dnstracer/files/digest-dnstracer-1.6 @@ -0,0 +1 @@ +MD5 1820c54cdfbb436516bd2de49324f7d4 dnstracer-1.6.tar.gz 69938 diff --git a/net-analyzer/nsat/ChangeLog b/net-analyzer/nsat/ChangeLog new file mode 100644 index 000000000000..6c9164eba49c --- /dev/null +++ b/net-analyzer/nsat/ChangeLog @@ -0,0 +1,8 @@ +# 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 $ + +*nsat-1.43 (17 Dec 2002) + + 17 Dec 2002; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild contributed by Kemal Akman <ka@leogic.com> in #11367. diff --git a/net-analyzer/nsat/files/digest-nsat-1.43 b/net-analyzer/nsat/files/digest-nsat-1.43 new file mode 100644 index 000000000000..23cf18e46d57 --- /dev/null +++ b/net-analyzer/nsat/files/digest-nsat-1.43 @@ -0,0 +1 @@ +MD5 9613f5bcc1a9bc7afd4016caeacb3739 nsat-1.43.tgz 422182 diff --git a/net-analyzer/nsat/nsat-1.43.ebuild b/net-analyzer/nsat/nsat-1.43.ebuild new file mode 100644 index 000000000000..0294c5ab97c6 --- /dev/null +++ b/net-analyzer/nsat/nsat-1.43.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.43.ebuild,v 1.1 2002/12/17 20:00:22 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 +} diff --git a/net-misc/jumpgate/ChangeLog b/net-misc/jumpgate/ChangeLog new file mode 100644 index 000000000000..7d152b3cc596 --- /dev/null +++ b/net-misc/jumpgate/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-misc/jumpgate +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/jumpgate/ChangeLog,v 1.1 2002/12/17 20:00:22 aliz Exp $ + +*jumpgate-0.7 (17 Dec 2002) + + 17 Dec 2002; Daniel Ahlberg <aliz@gentoo.org> : + Initial import. Ebuild contributed by Jon Portnoy <avenj@gentoo.org> in #11412. diff --git a/net-misc/jumpgate/files/digest-jumpgate-0.7 b/net-misc/jumpgate/files/digest-jumpgate-0.7 new file mode 100644 index 000000000000..ce4b67f169f7 --- /dev/null +++ b/net-misc/jumpgate/files/digest-jumpgate-0.7 @@ -0,0 +1 @@ +MD5 c6a520d560386c5ca2ffa12c0eaaa3d9 jumpgate-0.7.tar.gz 40789 diff --git a/net-misc/jumpgate/jumpgate-0.7.ebuild b/net-misc/jumpgate/jumpgate-0.7.ebuild new file mode 100644 index 000000000000..9ddb819bae07 --- /dev/null +++ b/net-misc/jumpgate/jumpgate-0.7.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/jumpgate/jumpgate-0.7.ebuild,v 1.1 2002/12/17 20:00:22 aliz Exp $ + +DESCRIPTION="An advanced TCP connection forwarder." +HOMEPAGE="http://jumpgate.sourceforge.net" +SRC_URI="http://jumpgate.sourceforge.net/${P}.tar.gz" +LICENSE="as-is" +S=${WORKDIR}/${P} + +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="" +RDEPEND="" + +src_install() { + make install install_prefix=${D} || die + dodoc README ChangeLog +} + |