summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaik Schreiber <blizzy@gentoo.org>2002-08-04 05:55:02 +0000
committerMaik Schreiber <blizzy@gentoo.org>2002-08-04 05:55:02 +0000
commit151dd101650e59579c57c216c833f24821547d27 (patch)
treefb50bed500361c94bb0d3c4320fac27110a300c6 /net-misc/netstat-nat
parentdoh (diff)
downloadgentoo-2-151dd101650e59579c57c216c833f24821547d27.tar.gz
gentoo-2-151dd101650e59579c57c216c833f24821547d27.tar.bz2
gentoo-2-151dd101650e59579c57c216c833f24821547d27.zip
initial import
Diffstat (limited to 'net-misc/netstat-nat')
-rw-r--r--net-misc/netstat-nat/ChangeLog8
-rw-r--r--net-misc/netstat-nat/files/digest-netstat-nat-1.31
-rw-r--r--net-misc/netstat-nat/netstat-nat-1.3.ebuild34
3 files changed, 43 insertions, 0 deletions
diff --git a/net-misc/netstat-nat/ChangeLog b/net-misc/netstat-nat/ChangeLog
new file mode 100644
index 000000000000..2c37494cd20d
--- /dev/null
+++ b/net-misc/netstat-nat/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-misc/netstat-nat
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netstat-nat/ChangeLog,v 1.1 2002/08/04 05:55:02 blizzy Exp $
+
+*netstat-nat-1.3 (04 Aug 2002)
+
+ 04 Aug 2002; Maik Schreiber <blizzy@gentoo.org> : Initial import.
+ ebuild was written by me (blizzy).
diff --git a/net-misc/netstat-nat/files/digest-netstat-nat-1.3 b/net-misc/netstat-nat/files/digest-netstat-nat-1.3
new file mode 100644
index 000000000000..a9f9642371f9
--- /dev/null
+++ b/net-misc/netstat-nat/files/digest-netstat-nat-1.3
@@ -0,0 +1 @@
+MD5 8a67d7b92d8b53437965e1677e15e211 netstat-nat-1.3.tar.gz 12136
diff --git a/net-misc/netstat-nat/netstat-nat-1.3.ebuild b/net-misc/netstat-nat/netstat-nat-1.3.ebuild
new file mode 100644
index 000000000000..8a5224a795ef
--- /dev/null
+++ b/net-misc/netstat-nat/netstat-nat-1.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netstat-nat/netstat-nat-1.3.ebuild,v 1.1 2002/08/04 05:55:02 blizzy Exp $
+
+DESCRIPTION="Display NAT connections"
+HOMEPAGE="http://tweegy.demon.nl/projects/netstat-nat/index.html"
+SRC_URI="http://tweegy.demon.nl/download/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="x86"
+
+RDEPEND="virtual/glibc"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P}"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ mv Makefile Makefile.orig
+ sed <Makefile.orig >Makefile \
+ -e "s|CC = gcc -O2|CC = gcc ${CFLAGS}|"
+}
+
+src_compile() {
+ emake || die "compile problem"
+}
+
+src_install () {
+ into /usr
+ dosbin netstat-nat
+ doman netstat-nat.1
+ dodoc COPYING README
+}