diff options
author | nemoliu <nemoliu@FreeBSD.org> | 2010-02-03 21:50:50 +0800 |
---|---|---|
committer | nemoliu <nemoliu@FreeBSD.org> | 2010-02-03 21:50:50 +0800 |
commit | 285346043588bc981518e79ca43792ceb0b25453 (patch) | |
tree | c33732623e27001489f5f8f3a8c5d6aae1bc3b61 /net-p2p | |
parent | 5d479315cc047acbc7caa4063332b9b205f2592f (diff) | |
download | freebsd-ports-gnome-285346043588bc981518e79ca43792ceb0b25453.tar.gz freebsd-ports-gnome-285346043588bc981518e79ca43792ceb0b25453.tar.zst freebsd-ports-gnome-285346043588bc981518e79ca43792ceb0b25453.zip |
- Update to 0.8.1
- Change maintainer from ports@ to yashin.dm@gmail.com
PR: ports/143480
Submitted by: Dmitry Yashin <yashin.dm@gmail.com>
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/opendchub/Makefile | 7 | ||||
-rw-r--r-- | net-p2p/opendchub/distinfo | 6 | ||||
-rw-r--r-- | net-p2p/opendchub/files/patch-buffer_overflow_fix | 11 |
3 files changed, 8 insertions, 16 deletions
diff --git a/net-p2p/opendchub/Makefile b/net-p2p/opendchub/Makefile index 11e188d1ff5e..f65ee8b3b836 100644 --- a/net-p2p/opendchub/Makefile +++ b/net-p2p/opendchub/Makefile @@ -6,11 +6,11 @@ # PORTNAME= opendchub -PORTVERSION= 0.7.16 +PORTVERSION= 0.8.1 CATEGORIES= net-p2p MASTER_SITES= SF/${PORTNAME}/Open%20DC%20Hub/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= yashin.dm@gmail.com COMMENT= Unofficial Unix version of the Direct Connect Hub software USE_PERL5= yes @@ -25,6 +25,9 @@ PLIST_FILES= bin/${PORTNAME} CPPFLAGS= -I${LOCALBASE}/include LDFLAGS= -L${LOCALBASE}/lib +pre-install: + @${CHMOD} a+rx ${WRKSRC}/install-sh + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} diff --git a/net-p2p/opendchub/distinfo b/net-p2p/opendchub/distinfo index ceb70637a3a2..5ff792e321b2 100644 --- a/net-p2p/opendchub/distinfo +++ b/net-p2p/opendchub/distinfo @@ -1,3 +1,3 @@ -MD5 (opendchub-0.7.16.tar.gz) = 81231a770b5fe2cb9360d0c03f004ce7 -SHA256 (opendchub-0.7.16.tar.gz) = 009e0c87e37f2840d40f82edd46cbffed9f3c3ac057b0d0b6b9c254587fbb31b -SIZE (opendchub-0.7.16.tar.gz) = 234982 +MD5 (opendchub-0.8.1.tar.gz) = 51f3610dddc380d515a34b446bad92ef +SHA256 (opendchub-0.8.1.tar.gz) = b7c18dda4b63e817519241c6e36fd7b6eac10f0240ad5fbb3ba731b82de7b833 +SIZE (opendchub-0.8.1.tar.gz) = 186255 diff --git a/net-p2p/opendchub/files/patch-buffer_overflow_fix b/net-p2p/opendchub/files/patch-buffer_overflow_fix deleted file mode 100644 index 305b6c5d9558..000000000000 --- a/net-p2p/opendchub/files/patch-buffer_overflow_fix +++ /dev/null @@ -1,11 +0,0 @@ ---- src/commands.c.orig Sun Feb 13 17:16:37 2005 -+++ src/commands.c Sun Feb 13 17:17:18 2005 -@@ -2842,7 +2842,7 @@ - { - char move_string[MAX_HOST_LEN+20]; - -- sprintf(move_string, "$ForceMove %s", buf); -+ snprintf(move_string, MAX_HOST_LEN, "$ForceMove %s", buf); - - send_to_humans(move_string, REGULAR | REGISTERED | OP, user); - remove_all(UNKEYED | NON_LOGGED | REGULAR | REGISTERED | OP, 1, 1); |