67088d05cb
- Convert to COPYTREE_SHARE - Drop unnecessary MKDIR before COPYTREE_SHARE - Drop bsd.port.options.mk if only DOCS requires it without dependencies - Use separate backup if several REINPLACE_CMD against the same file - audio/alsa-utils: convert to LIBS Differential Revision: https://reviews.freebsd.org/D1851 Approved by: bapt (mentor)
120 lines
3.2 KiB
Makefile
120 lines
3.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= transmission
|
|
PORTVERSION= 2.84
|
|
PORTREVISION?= 2
|
|
CATEGORIES?= net-p2p
|
|
#MASTER_SITES= http://download.m0k.org/${PORTNAME}/files/
|
|
MASTER_SITES= http://transmission.cachefly.net/
|
|
PKGNAMESUFFIX?= -cli
|
|
|
|
MAINTAINER?= jbeich@FreeBSD.org
|
|
COMMENT?= Lightweight CLI (command line) BitTorrent client and utilities
|
|
|
|
SLAVEPORT?= cli
|
|
|
|
# Odd arrangement here-- cli is MIT, everything else is GPL
|
|
.if ${SLAVEPORT} == cli
|
|
LICENSE= MIT
|
|
.else
|
|
LICENSE= GPLv2
|
|
.endif
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES+= cpe tar:xz
|
|
CPE_VENDOR= transmissionbt
|
|
|
|
CONFLICTS_INSTALL= ${PORTNAME}${PKGNAMESUFFIX}-2.5*
|
|
|
|
OPTIONS_DEFINE= LITE DOCS
|
|
EXTRACT_AFTER_ARGS=--no-same-owner --no-same-permissions --exclude third-party
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${SLAVEPORT} != web
|
|
LIB_DEPENDS?= ${GEN_LIB_DEPENDS}
|
|
|
|
# General dependencies
|
|
GEN_LIB_DEPENDS=libcurl.so:${PORTSDIR}/ftp/curl \
|
|
libdht.so:${PORTSDIR}/devel/jech-dht \
|
|
libminiupnpc.so:${PORTSDIR}/net/miniupnpc \
|
|
libnatpmp.so:${PORTSDIR}/net/libnatpmp \
|
|
libutp.so:${PORTSDIR}/net/libutp \
|
|
libevent.so:${PORTSDIR}/devel/libevent2
|
|
GEN_RUN_DEPENDS=${LOCALBASE}/share/transmission/web/index.html:${PORTSDIR}/www/transmission-web
|
|
|
|
# This is master port of transmission-*, so don't override USES definition
|
|
USES+= gmake iconv libtool pkgconfig
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include -DWITH_UTP=1
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
LIBS+= ${ICONV_LIB}
|
|
CONFIGURE_ARGS=--with-zlib=/usr \
|
|
--without-inotify \
|
|
--disable-utp \
|
|
--enable-external-natpmp \
|
|
${EXTRA_CONF_ARGS}
|
|
CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \
|
|
OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" \
|
|
DHT_CFLAGS=" " \
|
|
DHT_LIBS="-ldht" \
|
|
LIBUTP_CFLAGS=" " \
|
|
LIBUTP_LIBS="-lutp" \
|
|
LIBUTP_LIBS_QT="-lutp"
|
|
|
|
EXTRA_CONF_ARGS?=--enable-cli \
|
|
--disable-daemon \
|
|
--without-gtk \
|
|
--disable-mac \
|
|
--disable-nls
|
|
|
|
.if ${PORT_OPTIONS:MLITE}
|
|
CONFIGURE_ARGS+=--enable-lightweight
|
|
.endif
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/disable-web
|
|
.endif
|
|
|
|
USES+= tar:xz
|
|
|
|
DOCS= AUTHORS NEWS README
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
general-patch:
|
|
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|noinst_PROGRAMS = |noinst_PROGRAMS = #|g'
|
|
.if ${SLAVEPORT} != gtk
|
|
@${REINPLACE_CMD} -e '/#define DISABLE_GETTEXT/s,/\* \(.*\) \*/,\1,' \
|
|
${WRKSRC}/libtransmission/utils.h
|
|
.endif
|
|
@${REINPLACE_CMD} -e \
|
|
's|rt_clock_gettime=yes|rt_clock_gettime=no|g ; \
|
|
s|" == "|" = "|g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|doc \\| \\|g' \
|
|
${WRKSRC}/Makefile.in
|
|
.if ${SLAVEPORT} != cli
|
|
@${REINPLACE_CMD} -e 's|utils \\|\\|g' \
|
|
${WRKSRC}/Makefile.in
|
|
.endif
|
|
# Don't conflict with patches but force system libraries
|
|
@${REINPLACE_CMD} -e 's|third-party \\|\\|g' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -Ee '/^DHT_(CFLAGS|LIBS)=/d' \
|
|
-e 's|third-party/[^ ]*Makefile||g' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} \
|
|
-e 's,TRANSMISSION_TOP}/third-party/dht/libdht.a,DHT_LIBS},' \
|
|
${WRKSRC}/qt/qtr.pro
|
|
@${ECHO_CMD} 'DHT_LIBS = @DHT_LIBS@' >>${WRKSRC}/qt/config.pri.in
|
|
|
|
post-patch: general-patch
|
|
|
|
general-install:
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} \
|
|
"${DOCS}" ${STAGEDIR}${DOCSDIR})
|
|
|
|
post-install: general-install
|
|
|
|
.include <bsd.port.mk>
|