diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-12-08 21:52:47 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-12-08 21:52:47 +0000 |
commit | 9669320df9e64430b7b6b779f9ec298ed4870da3 (patch) | |
tree | fcad9072d9240d4d1af5b2229d7c29fc6bbe9ec2 /net/tcpslice | |
parent | 307be3c442f83f2207c8fdf5281b0ff435f2ef5b (diff) | |
download | ports-9669320df9e64430b7b6b779f9ec298ed4870da3.tar.gz ports-9669320df9e64430b7b6b779f9ec298ed4870da3.zip |
Notes
Diffstat (limited to 'net/tcpslice')
-rw-r--r-- | net/tcpslice/Makefile | 2 | ||||
-rw-r--r-- | net/tcpslice/distinfo | 6 | ||||
-rw-r--r-- | net/tcpslice/files/patch-aa | 37 |
3 files changed, 4 insertions, 41 deletions
diff --git a/net/tcpslice/Makefile b/net/tcpslice/Makefile index 3c173cc32597..138caae0c834 100644 --- a/net/tcpslice/Makefile +++ b/net/tcpslice/Makefile @@ -6,7 +6,7 @@ # PORTNAME= tcpslice -PORTVERSION= 2006.04.17 +PORTVERSION= 2006.12.04 CATEGORIES= net MASTER_SITES= http://www.tcpdump.org/weekly/ diff --git a/net/tcpslice/distinfo b/net/tcpslice/distinfo index dc9812f18bb1..d211d3ee2c4e 100644 --- a/net/tcpslice/distinfo +++ b/net/tcpslice/distinfo @@ -1,3 +1,3 @@ -MD5 (tcpslice-2006.04.17.tar.gz) = a57c65c5b4427fa0e3da39033a78af99 -SHA256 (tcpslice-2006.04.17.tar.gz) = 8383ef1cbde5efd1826b5e718c5dbb8ed3ad2b78c20c2e84c9d582915f8ee675 -SIZE (tcpslice-2006.04.17.tar.gz) = 63809 +MD5 (tcpslice-2006.12.04.tar.gz) = 5ec119e563341d9f0687a2ff0a805b91 +SHA256 (tcpslice-2006.12.04.tar.gz) = 5e8b147a6d020754f315f43f1ab0b7afe9fa08130c62552436c380285a02fe17 +SIZE (tcpslice-2006.12.04.tar.gz) = 113474 diff --git a/net/tcpslice/files/patch-aa b/net/tcpslice/files/patch-aa deleted file mode 100644 index ff0b68751fc5..000000000000 --- a/net/tcpslice/files/patch-aa +++ /dev/null @@ -1,37 +0,0 @@ ---- Makefile.in.orig Mon Sep 3 15:01:12 2001 -+++ Makefile.in Mon Apr 15 16:54:29 2002 -@@ -27,9 +27,9 @@ - prefix = @prefix@ - exec_prefix = @exec_prefix@ - # Pathname of directory to install the binary --BINDEST = @sbindir@ -+BINDIR = @sbindir@ - # Pathname of directory to install the man page --MANDEST = @mandir@ -+MANDIR = @mandir@ - - # VPATH - srcdir = @srcdir@ -@@ -55,6 +55,8 @@ - LIBS = @LIBS@ - - INSTALL = @INSTALL@ -+INSTALL_PROGRAM=@INSTALL_PROGRAM@ -+INSTALL_DATA=@INSTALL_DATA@ - - # Explicitly define compilation rule since SunOS 4's make doesn't like gcc. - # Also, gcc does not remove the .o before forking 'as', which can be a -@@ -97,11 +99,8 @@ - sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@ - - install: force -- $(INSTALL) -m 555 -o bin -g bin tcpslice $(DESTDIR)$(BINDEST) -- --install-man: force -- $(INSTALL) -m 444 -o bin -g bin $(srcdir)/$(PROG).1 \ -- $(DESTDIR)$(MANDEST)/man1 -+ $(INSTALL_PROGRAM) -m 755 tcpslice $(DESTDIR)$(BINDIR) -+ $(INSTALL_DATA) tcpslice.1 $(DESTDIR)$(MANDIR)/man1 - - lint: $(GENSRC) force - lint -hbxn $(SRC) | \ |