(Readdition of net-p2p/btpd which was removed on 514600)
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: https://github.com/btpd/btpd/wiki PR: 1 Submitted by: mat@FreeBSD.org
This commit is contained in:
parent
aff0a46946
commit
06cdf3a430
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522474
6 changed files with 46 additions and 1 deletions
1
MOVED
1
MOVED
|
@ -13287,7 +13287,6 @@ net-mgmt/pixilate||2019-10-16|Has expired: Unfetchable, unmaintained
|
|||
net-mgmt/slate||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
net-mgmt/weplab||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
net-p2p/bnbt||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
net-p2p/btpd||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
net-p2p/gkremldk||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
news/newscache||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
news/nntpbtr||2019-10-16|Has expired: Unfetchable, unmaintained
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
SUBDIR += bitcoin-daemon
|
||||
SUBDIR += bitcoin-utils
|
||||
SUBDIR += bitflu
|
||||
SUBDIR += btpd
|
||||
SUBDIR += c-lightning
|
||||
SUBDIR += couchpotato
|
||||
SUBDIR += cpuminer
|
||||
|
|
27
net-p2p/btpd/Makefile
Normal file
27
net-p2p/btpd/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= btpd
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.16
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= net-p2p
|
||||
|
||||
MAINTAINER= mat@FreeBSD.org
|
||||
COMMENT= Bittorrent client consisting of a daemon and client commands
|
||||
|
||||
LICENSE= BSD2CLAUSE BSD3CLAUSE
|
||||
LICENSE_COMB= multi
|
||||
|
||||
USE_GITHUB= yes
|
||||
|
||||
USES= autoreconf ssl
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE}
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
3
net-p2p/btpd/distinfo
Normal file
3
net-p2p/btpd/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1578560355
|
||||
SHA256 (btpd-btpd-v0.16_GH0.tar.gz) = 9cda656f67edb2cdc3b51d43b7f0510c4e65a0f55cd1317a7113051429d6c9e5
|
||||
SIZE (btpd-btpd-v0.16_GH0.tar.gz) = 77413
|
8
net-p2p/btpd/pkg-descr
Normal file
8
net-p2p/btpd/pkg-descr
Normal file
|
@ -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: https://github.com/btpd/btpd/wiki
|
7
net-p2p/btpd/pkg-plist
Normal file
7
net-p2p/btpd/pkg-plist
Normal file
|
@ -0,0 +1,7 @@
|
|||
bin/btcli
|
||||
bin/btinfo
|
||||
bin/btpd
|
||||
man/man1/btcli.1.gz
|
||||
man/man1/btinfo.1.gz
|
||||
man/man1/btpd.1.gz
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
Loading…
Reference in a new issue