summaryrefslogtreecommitdiff
path: root/net/opendchub
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-01-30 21:36:28 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-01-30 21:36:28 +0000
commitfbab09fee302574e578e4f0d1b6082cdae4defb4 (patch)
tree2e89197b88b8a883c56aef7a5d0d89dc5d374850 /net/opendchub
parentUpgrade to 1.63.0. (diff)
Populate newly create net-p2p category with these ports:
ftp/jigdo net/amule1 net/amule2 net/apollon net/azureus net/bnbt net/btpeer net/btqueue net/cdonkey net/ctorrent net/dcd net/dclib net/dctc net/dctc-gui net/dctc-gui-qt net/edonkey-gui-gtk net/edonkey-gui-gtk-urlslave net/fcptools net/fidelio net/freenet net/frost net/giftcurs net/giftoxic net/giftui net/gift net/gift-fasttrack net/gift-gnutella net/gift-openft net/gkrellm-gift net/gnewtellium net/gnome-btdownload net/gnunet net/gtkhx net/gtk-gnutella net/gtorrentviewer net/hagelslag net/hx net/i2p net/javadc net/kmldonkey net/ktorrent net/libbt net/liberator net/libfreenet net/libpdtp net/libtorrent net/limewire net/linux-agsatellite net/linux-edonkey-core net/linux-edonkey-server net/linux-jigdo net/linux-overnet-core net/minder net/mldonkey net/mldonkey-core net/mldonkey-core-devel net/mldonkey-devel net/mldonkey-gui net/mldonkey-gui-devel net/mldonkey-perlreactor net/mldonkey-sancho net/mldonkey-serverspy net/mldonkey-urlslave net/mutella net/mute-net net/mute-net-gui net/mute-net-text net/napshare net/nicotine net/opendchub net/peercast net/phex net/pyslsk net/py-bittornado net/py-bittornado-core net/py-bittorrent net/py-bittorrent-core net/py-bittorrent-core-devel net/py-bittorrent-devel net/py-fngrab net/py-kenosis net/py-kenosis-bittorrent net/py-py2play net/p5-pdonkey net/qtella net/qtorrent net/rtorrent net/squall net/torrentflux net/torrentsniff net/trackerbt net/transmission net/valknut net/verlihub net/verlihub-plugins net/xmule net/xnap misc/ed2k misc/edonkey-tool-hash misc/linux-edonkey-tool-recovermet Repocopies by: marcus
Notes
Notes: svn path=/head/; revision=154851
Diffstat (limited to 'net/opendchub')
-rw-r--r--net/opendchub/Makefile37
-rw-r--r--net/opendchub/distinfo3
-rw-r--r--net/opendchub/files/patch-buffer_overflow_fix11
-rw-r--r--net/opendchub/files/patch-telnet_chat_fix11
-rw-r--r--net/opendchub/pkg-descr9
-rw-r--r--net/opendchub/pkg-plist6
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%%