blob: 45d32a30fc3355f3bc3b38d8b378068f25afb707 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
PORTNAME= rtorrent
PORTVERSION= 0.9.8
CATEGORIES= net-p2p
MASTER_SITES= https://rtorrent.net/downloads/
MAINTAINER= dbaio@FreeBSD.org
COMMENT= BitTorrent Client written in C++
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
LIB_DEPENDS= libcurl.so:ftp/curl \
libtorrent.so:net-p2p/libtorrent
USES= compiler:c++11-lang ncurses pkgconfig
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-debug
LDFLAGS+= -lexecinfo -pthread
PLIST_FILES= bin/rtorrent
PORTDOCS= README
PORTEXAMPLES= rtorrent.rc
SUB_FILES= pkg-message
OPTIONS_DEFINE= DOCS EXAMPLES IPV6 XMLRPC
OPTIONS_DEFAULT=XMLRPC
XMLRPC_DESC= Compile with xmlrpc-c support
IPV6_CONFIGURE_ENABLE= ipv6
XMLRPC_CONFIGURE_OFF= --with-xmlrpc-c=no
XMLRPC_CONFIGURE_ON= --with-xmlrpc-c
XMLRPC_LIB_DEPENDS= libxmlrpc.so:net/xmlrpc-c
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|' ${WRKSRC}/configure
.if ${OPSYS} == FreeBSD
@${FIND} ${WRKSRC} \( -name '*.h' -o -name '*.cc' \) -type f \
-exec ${REINPLACE_CMD} -e 's/tr1::/std::/g' {} \; \
-exec ${REINPLACE_CMD} -e 's/std::std::/std::/g' {} \; \
-exec ${REINPLACE_CMD} -e '/namespace tr1/d' {} \; \
-exec ${REINPLACE_CMD} -e '/include/s,tr1/,,' {} \;
.endif
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
post-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/doc/rtorrent.rc ${STAGEDIR}${EXAMPLESDIR}/
.include <bsd.port.mk>
|