diff options
Diffstat (limited to 'net/opendchub')
-rw-r--r-- | net/opendchub/Makefile | 37 | ||||
-rw-r--r-- | net/opendchub/distinfo | 3 | ||||
-rw-r--r-- | net/opendchub/files/patch-buffer_overflow_fix | 11 | ||||
-rw-r--r-- | net/opendchub/files/patch-telnet_chat_fix | 11 | ||||
-rw-r--r-- | net/opendchub/pkg-descr | 9 | ||||
-rw-r--r-- | net/opendchub/pkg-plist | 6 |
6 files changed, 0 insertions, 77 deletions
diff --git a/net/opendchub/Makefile b/net/opendchub/Makefile deleted file mode 100644 index 418101c52d92..000000000000 --- a/net/opendchub/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# New ports collection makefile for: opendchub -# Date created: May 29, 2002 -# Whom: Munish Chopra <mchopra@engmail.uwaterloo.ca> -# -# $FreeBSD$ -# - -PORTNAME= opendchub -PORTVERSION= 0.7.14 -PORTREVISION= 2 -CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Unofficial Unix version of the Direct Connect Hub software - -USE_PERL5= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Documentation/* ${DOCSDIR} -.endif - -.include <bsd.port.pre.mk> - -.if ${PERL_LEVEL} < 500601 -IGNORE= "needs at least perl 5.6.1 to build" -.endif - -.include <bsd.port.post.mk> diff --git a/net/opendchub/distinfo b/net/opendchub/distinfo deleted file mode 100644 index 0e20a19ba5f2..000000000000 --- a/net/opendchub/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (opendchub-0.7.14.tar.gz) = 6121347154820e2b307a5aecafa86ce8 -SHA256 (opendchub-0.7.14.tar.gz) = a313ff89ca8fcef265179b320be9b42b32c8e7747c12b4b86c6665146c22ce15 -SIZE (opendchub-0.7.14.tar.gz) = 187739 diff --git a/net/opendchub/files/patch-buffer_overflow_fix b/net/opendchub/files/patch-buffer_overflow_fix deleted file mode 100644 index 305b6c5d9558..000000000000 --- a/net/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); diff --git a/net/opendchub/files/patch-telnet_chat_fix b/net/opendchub/files/patch-telnet_chat_fix deleted file mode 100644 index 79ade0c6ef26..000000000000 --- a/net/opendchub/files/patch-telnet_chat_fix +++ /dev/null @@ -1,11 +0,0 @@ ---- src/main.c.orig Sun Feb 13 16:54:21 2005 -+++ src/main.c Sun Feb 13 16:55:31 2005 -@@ -1056,7 +1056,7 @@ - /* The chat command, starts with <nick> */
- else if(*temp == '<')
- {
-- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0)
-+ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0)
- chat(temp, user);
- }
-
diff --git a/net/opendchub/pkg-descr b/net/opendchub/pkg-descr deleted file mode 100644 index 0e6012fa9833..000000000000 --- a/net/opendchub/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -Open DC Hub is a Unix/Linux version of the Hub software for the -Direct Connect network. Direct Connect is a file sharing network -made up by hubs, to which clients can connect. - -Once connected to a hub, the user can search for files on the hub -or the network, or browse files of other users connected to the -hub. - -WWW: http://opendchub.sourceforge.net/ diff --git a/net/opendchub/pkg-plist b/net/opendchub/pkg-plist deleted file mode 100644 index 95e46e251163..000000000000 --- a/net/opendchub/pkg-plist +++ /dev/null @@ -1,6 +0,0 @@ -bin/opendchub -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/configfiles -%%PORTDOCS%%%%DOCSDIR%%/general -%%PORTDOCS%%%%DOCSDIR%%/scriptdoc -%%PORTDOCS%%@dirrm %%DOCSDIR%% |