blob: fce4cf0f22d722a7c6be5ffd5c42ba9d256938b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# New ports collection makefile for: btpd
# Date created: 2008-11-14
# Whom: bapt <baptiste.daroussin@gmail.com>
#
# $FreeBSD$
#
PORTNAME= btpd
PORTVERSION= 0.16
PORTREVISION= 1
CATEGORIES= net-p2p
MASTER_SITES= http://cloud.github.com/downloads/btpd/btpd/
MAINTAINER= bapt@FreeBSD.org
COMMENT= Bittorrent client consisting of a daemon and client commands
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
USE_AUTOTOOLS= autoconf:267 aclocal:110
GNU_CONFIGURE= yes
USE_OPENSSL= yes
PLIST_FILES= bin/btcli \
bin/btinfo \
bin/btpd
MAN1= btcli.1 \
btinfo.1 \
btpd.1
PORTDOCS= README
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|