mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rtorrent
|
|
PORTVERSION= 0.9.6
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-p2p
|
|
MASTER_SITES= http://rtorrent.net/downloads/
|
|
|
|
MAINTAINER= pipfstarrd@openmailbox.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+= -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>
|
|
|
|
# Workaround to build on >= 10.x
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
|
|
USE_CXXSTD= c++11
|
|
EXTRA_PATCHES+= ${FILESDIR}/extra-clang
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-O3|${CFLAGS}|' ${WRKSRC}/configure
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
|
|
@${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>
|