summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-11-15 21:38:38 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-11-15 21:38:38 +0000
commit3f339aeb0ac1dee633ce21a3f6ac60c9472e847d (patch)
treef7743e58f6b5aa41f4239b4f90456c409881dd8d
parentmpdas is an AudioScrobbler client for MPD written in C++. (diff)
BTPD is a bittorrent client consisting of a daemon and client commands, which
can be used to read and/or manipulate the daemon state. The daemon is capable of running several torrents simultaneously and only uses one tcp port. It's fairly low on resource usage and should be perfect for file distribution sites. Efficient downloads and ease of use makes this client a good choice for the casual user as well. WWW: http://www.murmeldjur.se/btpd/ PR: ports/128865 Submitted by: bapt <baptiste.daroussin at gmail.com>
-rw-r--r--net-p2p/Makefile1
-rw-r--r--net-p2p/btpd/Makefile29
-rw-r--r--net-p2p/btpd/distinfo3
-rw-r--r--net-p2p/btpd/pkg-descr8
4 files changed, 41 insertions, 0 deletions
diff --git a/net-p2p/Makefile b/net-p2p/Makefile
index c5920a6d1b09..67db4e5d4b53 100644
--- a/net-p2p/Makefile
+++ b/net-p2p/Makefile
@@ -10,6 +10,7 @@
SUBDIR += bitflu
SUBDIR += bittyrant
SUBDIR += bnbt
+ SUBDIR += btpd
SUBDIR += btpeer
SUBDIR += btqueue
SUBDIR += cdonkey
diff --git a/net-p2p/btpd/Makefile b/net-p2p/btpd/Makefile
new file mode 100644
index 000000000000..73f325a30f22
--- /dev/null
+++ b/net-p2p/btpd/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: btpd
+# Date created: 2008-11-14
+# Whom: bapt <baptiste.daroussin@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= btpd
+PORTVERSION= 0.13
+CATEGORIES= net-p2p
+MASTER_SITES= http://www.murmeldjur.se/btpd/
+
+MAINTAINER= baptiste.daroussin@gmail.com
+COMMENT= Bittorrent client consisting of a daemon and client commands
+
+GNU_CONFIGURE= yes
+PLIST_FILES= bin/btcli \
+ bin/btinfo \
+ bin/btpd
+
+PORTDOCS= README
+
+post-install:
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+ @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
+.endif
+
+.include <bsd.port.mk>
diff --git a/net-p2p/btpd/distinfo b/net-p2p/btpd/distinfo
new file mode 100644
index 000000000000..6094a2786f6d
--- /dev/null
+++ b/net-p2p/btpd/distinfo
@@ -0,0 +1,3 @@
+MD5 (btpd-0.13.tar.gz) = 0d9c4a672eea6f298fa6e44d94da1657
+SHA256 (btpd-0.13.tar.gz) = 4409ec8e34eaba5d51e53bf94ce8551e438a4b2c5a55924299edf012c189ebfc
+SIZE (btpd-0.13.tar.gz) = 273814
diff --git a/net-p2p/btpd/pkg-descr b/net-p2p/btpd/pkg-descr
new file mode 100644
index 000000000000..bfcb18868d49
--- /dev/null
+++ b/net-p2p/btpd/pkg-descr
@@ -0,0 +1,8 @@
+BTPD is a bittorrent client consisting of a daemon and client commands, which
+can be used to read and/or manipulate the daemon state. The daemon is capable of
+running several torrents simultaneously and only uses one tcp port. It's fairly
+low on resource usage and should be perfect for file distribution sites.
+Efficient downloads and ease of use makes this client a good choice for the
+casual user as well.
+
+WWW: http://www.murmeldjur.se/btpd/