diff options
author | miwi <miwi@FreeBSD.org> | 2009-07-08 04:25:03 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-07-08 04:25:03 +0800 |
commit | 8feed72a1486e4c4441409fe91838b884bccff0b (patch) | |
tree | b61f948fa419f5219f1a816a87f468ad7be73442 /net/tcpillust | |
parent | 59bd16addce0077df3d850f572d689324641c653 (diff) | |
download | freebsd-ports-gnome-8feed72a1486e4c4441409fe91838b884bccff0b.tar.gz freebsd-ports-gnome-8feed72a1486e4c4441409fe91838b884bccff0b.tar.zst freebsd-ports-gnome-8feed72a1486e4c4441409fe91838b884bccff0b.zip |
- Update to 2.01
PR: 135707
Submitted by: Florian Smeets <flo@kasimir.com>
Approved by: maintainer timeout
Diffstat (limited to 'net/tcpillust')
-rw-r--r-- | net/tcpillust/Makefile | 12 | ||||
-rw-r--r-- | net/tcpillust/distinfo | 6 | ||||
-rw-r--r-- | net/tcpillust/files/patch-binread.c | 16 |
3 files changed, 22 insertions, 12 deletions
diff --git a/net/tcpillust/Makefile b/net/tcpillust/Makefile index 125e92e5bb67..51758c5e6ccd 100644 --- a/net/tcpillust/Makefile +++ b/net/tcpillust/Makefile @@ -6,8 +6,8 @@ # PORTNAME= tcpillust -PORTVERSION= 2.01a -PORTREVISION= 1 +PORTVERSION= 2.01 +PORTEPOCH= 1 CATEGORIES= net tcl tk MASTER_SITES= http://www.jp.nishida.org/tcpillust/ @@ -50,10 +50,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/sample/* ${DOCSDIR} .endif -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 800064 -BROKEN= does not build -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/net/tcpillust/distinfo b/net/tcpillust/distinfo index 0fa8ec480d7c..c5cef09bf042 100644 --- a/net/tcpillust/distinfo +++ b/net/tcpillust/distinfo @@ -1,3 +1,3 @@ -MD5 (tcpillust-2.01a.tar.gz) = 316da48755e6fdac5c2652d54964e935 -SHA256 (tcpillust-2.01a.tar.gz) = c8124986317971dbe0c5e15d4c4c61a58d9645a7bed84f17e5fb54961673e433 -SIZE (tcpillust-2.01a.tar.gz) = 101794 +MD5 (tcpillust-2.01.tar.gz) = 316da48755e6fdac5c2652d54964e935 +SHA256 (tcpillust-2.01.tar.gz) = c8124986317971dbe0c5e15d4c4c61a58d9645a7bed84f17e5fb54961673e433 +SIZE (tcpillust-2.01.tar.gz) = 101794 diff --git a/net/tcpillust/files/patch-binread.c b/net/tcpillust/files/patch-binread.c new file mode 100644 index 000000000000..d9040998905b --- /dev/null +++ b/net/tcpillust/files/patch-binread.c @@ -0,0 +1,16 @@ +--- binread.c.orig 2009-06-18 16:05:29.000000000 +0200 ++++ binread.c 2009-06-18 16:06:26.000000000 +0200 +@@ -35,8 +35,13 @@ + #if defined (linux) || defined(__APPLE__) + #define __FAVOR_BSD + #else ++#if defined(__FreeBSD__) ++#include <osreldate.h> ++#if __FreeBSD_version < 800064 + #include <net/slip.h> + #endif ++#endif ++#endif + #include <netinet/in.h> + #include <netinet/in_systm.h> + #include <net/if.h> |