aboutsummaryrefslogtreecommitdiffstats
path: root/net-p2p
diff options
context:
space:
mode:
authoraz <az@FreeBSD.org>2008-12-22 16:22:42 +0800
committeraz <az@FreeBSD.org>2008-12-22 16:22:42 +0800
commitc75984e99467b3aafbf8a587603548d70cd31ee9 (patch)
treed223e4c872f1c39244bd82358816ac67bcb046c9 /net-p2p
parent245dd635d34ae9d5fe605ef38f29853691b06219 (diff)
downloadfreebsd-ports-c75984e99467b3aafbf8a587603548d70cd31ee9.tar.gz
freebsd-ports-c75984e99467b3aafbf8a587603548d70cd31ee9.tar.zst
freebsd-ports-c75984e99467b3aafbf8a587603548d70cd31ee9.zip
Update to version 1.1.0
Drop 5.x support.
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/dcd/Makefile6
-rw-r--r--net-p2p/dcd/distinfo6
-rw-r--r--net-p2p/dcd/files/extra-src-net.h15
3 files changed, 4 insertions, 23 deletions
diff --git a/net-p2p/dcd/Makefile b/net-p2p/dcd/Makefile
index 5b3713fdf1db..c6bffa04bd93 100644
--- a/net-p2p/dcd/Makefile
+++ b/net-p2p/dcd/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= dcd
-PORTVERSION= 1.0.1
+PORTVERSION= 1.1.0
CATEGORIES= net-p2p
MASTER_SITES= http://www.dc.ds.pg.gda.pl/download/sources/stable/
@@ -31,10 +31,6 @@ SUB_LIST= CONF_FILES="${CONF_FILES}" CONF_DIR="${PREFIX}/etc/dcd"
.include <bsd.port.pre.mk>
-.if ${OSVERSION} < 600020
-EXTRA_PATCHES= ${PATCHDIR}/extra-src-net.h
-.endif
-
post-patch:
.for f in dcd dcd.console
@${MV} ${WRKSRC}/doc/${f}.2 ${WRKSRC}/doc/${f}.8
diff --git a/net-p2p/dcd/distinfo b/net-p2p/dcd/distinfo
index 36a094f2bd3b..6a30001da18b 100644
--- a/net-p2p/dcd/distinfo
+++ b/net-p2p/dcd/distinfo
@@ -1,3 +1,3 @@
-MD5 (dcd-1.0.1.tar.bz2) = fb3f772f25d3bbcdb5c31d66e04d8773
-SHA256 (dcd-1.0.1.tar.bz2) = ba7188d82f37a455a823f70a25cfbf11780da2f6279d445bfdd9656940f05d68
-SIZE (dcd-1.0.1.tar.bz2) = 354235
+MD5 (dcd-1.1.0.tar.bz2) = ab2c014c063f3adc14d19d3c5a96ac45
+SHA256 (dcd-1.1.0.tar.bz2) = 2e393cc6b75f24d5554d2620d9550e0ab1f7cb0791de4b145efafd1bad7df325
+SIZE (dcd-1.1.0.tar.bz2) = 362045
diff --git a/net-p2p/dcd/files/extra-src-net.h b/net-p2p/dcd/files/extra-src-net.h
deleted file mode 100644
index ae45b9910aad..000000000000
--- a/net-p2p/dcd/files/extra-src-net.h
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/net.h.orig Wed Aug 30 22:09:02 2006
-+++ src/net.h Wed Apr 25 00:25:29 2007
-@@ -13,6 +13,12 @@
- #if !defined( __vXhz__NET_H__INCLUDED__ )
- #define __vXhz__NET_H__INCLUDED__
-
-+// Prior 600020 where no MSG_NOSIGNAL, so we will use SO_NOSIGPIPE
-+#if defined (__FreeBSD__)
-+ #ifndef MSG_NOSIGNAL
-+ #define MSG_NOSIGNAL SO_NOSIGPIPE
-+ #endif
-+#endif
-
-
- void disttcp(userrec_t *usr, char *msg);