aboutsummaryrefslogtreecommitdiff
path: root/net-p2p
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-07-07 18:30:40 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-07-07 18:30:40 +0000
commitf3a4a652604c6c2afdf68a568241e246fd5c2d2a (patch)
tree06af6dc5b6885526c9464f7c7a8299090f24f966 /net-p2p
parent61919f4581ec0a57883d251e1ff05bcf5d1d4eef (diff)
downloadports-f3a4a652604c6c2afdf68a568241e246fd5c2d2a.tar.gz
ports-f3a4a652604c6c2afdf68a568241e246fd5c2d2a.zip
CTorrent Control Server (CTCS) is an interface for monitoring and managing
Enhanced CTorrent clients. It can manage allocation of bandwidth, provide status information, and allow changes to the running configuration of each client. Communication with CTorrent is via a TCP connection, and the user interface is a web browser. WWW: http://www.rahul.net/dholmes/ctorrent/ctcs.html PR: ports/136399 Submitted by: Dereckson <dereckson at gmail.com>
Notes
Notes: svn path=/head/; revision=237354
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/Makefile1
-rw-r--r--net-p2p/ctcs/Makefile29
-rw-r--r--net-p2p/ctcs/distinfo3
-rw-r--r--net-p2p/ctcs/pkg-descr7
4 files changed, 40 insertions, 0 deletions
diff --git a/net-p2p/Makefile b/net-p2p/Makefile
index 4388b1940adc..c09e705ffee3 100644
--- a/net-p2p/Makefile
+++ b/net-p2p/Makefile
@@ -15,6 +15,7 @@
SUBDIR += btqueue
SUBDIR += cdonkey
SUBDIR += createtorrent
+ SUBDIR += ctcs
SUBDIR += ctorrent
SUBDIR += dcd
SUBDIR += dclib
diff --git a/net-p2p/ctcs/Makefile b/net-p2p/ctcs/Makefile
new file mode 100644
index 000000000000..7576b7216c5a
--- /dev/null
+++ b/net-p2p/ctcs/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: ctcs
+# Date created: 7 July 2009
+# Whom: Dereckson <dereckson@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= ctcs
+PORTVERSION= 1.4.1
+CATEGORIES= net-p2p
+MASTER_SITES= SF/dtorrent
+
+MAINTAINER= dereckson@gmail.com
+COMMENT= CTorrent monitoring and managing interface
+
+NO_BUILD= #
+USE_PERL5_RUN= yes
+PLIST_FILES= bin/ctcs share/doc/ctcs/readme.txt
+PLIST_DIRS= share/doc/ctcs
+WRKSRC= ${WRKDIR}/ctcs-${PORTVERSION}
+
+do-install:
+ ${INSTALL} -o ${SHAREOWN} -g ${SHAREGRP} -m 0755 \
+ ${WRKSRC}/ctcs ${PREFIX}/bin/ctcs
+ ${MKDIR} ${PREFIX}/share/doc/ctcs
+ ${INSTALL} -o ${SHAREOWN} -g ${SHAREGRP} -m 0644 \
+ ${WRKSRC}/readme.txt ${PREFIX}/share/doc/ctcs/readme.txt
+
+.include <bsd.port.mk>
diff --git a/net-p2p/ctcs/distinfo b/net-p2p/ctcs/distinfo
new file mode 100644
index 000000000000..407c18cbda8e
--- /dev/null
+++ b/net-p2p/ctcs/distinfo
@@ -0,0 +1,3 @@
+MD5 (ctcs-1.4.1.tar.gz) = 7dfe725e558eb75258a2199f2aa9fdbc
+SHA256 (ctcs-1.4.1.tar.gz) = 9614e88d07c6b128677d4d2638a4a05ae00812ec5157ae0788012abed3172355
+SIZE (ctcs-1.4.1.tar.gz) = 27384
diff --git a/net-p2p/ctcs/pkg-descr b/net-p2p/ctcs/pkg-descr
new file mode 100644
index 000000000000..a6ee2ffadeed
--- /dev/null
+++ b/net-p2p/ctcs/pkg-descr
@@ -0,0 +1,7 @@
+CTorrent Control Server (CTCS) is an interface for monitoring and managing
+Enhanced CTorrent clients. It can manage allocation of bandwidth, provide
+status information, and allow changes to the running configuration of each
+client. Communication with CTorrent is via a TCP connection, and the user
+interface is a web browser.
+
+WWW: http://www.rahul.net/dholmes/ctorrent/ctcs.html