summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2003-09-29 15:09:31 +0000
committerMarius Mauch <genone@gentoo.org>2003-09-29 15:09:31 +0000
commit9a161d7d2d77a6f3697e24288ae69bfad70690e3 (patch)
tree9967a56899104a9661e4ce7fba13e5e860bcd4c4 /net-analyzer/netwatch/netwatch-1.0a.ebuild
parentinitial commit (diff)
downloadgentoo-2-9a161d7d2d77a6f3697e24288ae69bfad70690e3.tar.gz
gentoo-2-9a161d7d2d77a6f3697e24288ae69bfad70690e3.tar.bz2
gentoo-2-9a161d7d2d77a6f3697e24288ae69bfad70690e3.zip
initial commit
Diffstat (limited to 'net-analyzer/netwatch/netwatch-1.0a.ebuild')
-rw-r--r--net-analyzer/netwatch/netwatch-1.0a.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/net-analyzer/netwatch/netwatch-1.0a.ebuild b/net-analyzer/netwatch/netwatch-1.0a.ebuild
new file mode 100644
index 000000000000..d8fe30575f97
--- /dev/null
+++ b/net-analyzer/netwatch/netwatch-1.0a.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/netwatch-1.0a.ebuild,v 1.1 2003/09/29 15:09:19 genone Exp $
+
+SRC_URI="http://www.slctech.org/~mackay/${P}.src.tgz"
+DESCRIPTION="a ncurses based network monitoring program"
+HOMEPAGE="http://www.slctech.org/~mackay/netwatch.html"
+
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+IUSE=""
+SLOT="0"
+
+DEPEND="sys-libs/ncurses
+ >=sys-apps/sed-4.0.7"
+
+src_unpack() {
+ unpack ${A}
+ sed -i "s:<sys/time.h>:<sys/time.h>\n#include <time.h>:" "${S}/netwatch.c"
+ #sed -i "s:/usr/man:${D}/usr/man:" "${S}/Makefile.in"
+}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install() {
+ exeinto /usr/sbin
+ doexe netwatch netresolv
+ doman netwatch.1
+ dodoc BUGS CHANGES COPYING README README.performance TODO
+}