1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/net-p2p/qbittorrent/Makefile
Rusmir Dusko 5560eb92ea - Update to 3.1.9.2, Announce message:
OTHER: The v3.1.9.1 Windows build was broken

- Remove PORTSCOUT, issue 1713 is solved
2014-06-04 20:23:34 +00:00

74 lines
1.8 KiB
Makefile

# Created by: Doug Barton <dougb@FreeBSD.org>
# $FreeBSD$
PORTNAME= qbittorrent
PORTVERSION= 3.1.9.2
PORTREVISION?= 0
CATEGORIES= net-p2p ipv6
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
MAINTAINER= nemysis@FreeBSD.org
COMMENT?= Bittorrent client using Qt4 and libtorrent-rasterbar
LICENSE= GPLv2
# ABI versions specified on purpose for libtorrent-rasterbar
LIB_DEPENDS= libtorrent-rasterbar.so:${PORTSDIR}/net-p2p/libtorrent-rasterbar \
libexecinfo.so:${PORTSDIR}/devel/libexecinfo
USES= pkgconfig
USE_QT4= corelib network qmake_build linguist_build moc_build \
rcc_build uic_build
QT_NONSTANDARD= yes
DESTDIRNAME= INSTALL_ROOT
.if !defined(SLAVE_PORT)
LIB_DEPENDS+= libGeoIP.so:${PORTSDIR}/net/GeoIP
USES+= desktop-file-utils
USE_QT4+= gui xml
INSTALLS_ICONS= yes
OPTIONS_DEFINE= DBUS
.endif
SUB_FILES= pkg-message
PORTDOCS= AUTHORS Changelog README
OPTIONS_DEFINE= DEBUG DOCS DBUS
DEBUG_CONFIGURE_ENABLE= debug
DBUS_CONFIGURE_ENABLE= qt-dbus
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDBUS}
USE_QT4+= dbus
.endif
do-configure:
.if defined(SLAVE_PORT) && ${SLAVE_PORT:tl} == "no"
@cd ${WRKSRC} ; ${SETENV} ${CONFIGURE_ENV} \
./configure --prefix=${PREFIX}
.else
@cd ${WRKSRC} ; ${SETENV} ${CONFIGURE_ENV} \
./configure --prefix=${PREFIX} --disable-gui
.endif
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.endif
.if defined(SLAVE_PORT) && ${SLAVE_PORT:tl} == "no"
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qbittorrent
${INSTALL_MAN} ${WRKSRC}/doc/qbittorrent.1 \
${STAGEDIR}${MAN1PREFIX}/man/man1/
.else
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qbittorrent-nox
${INSTALL_MAN} ${WRKSRC}/doc/qbittorrent-nox.1 \
${STAGEDIR}${MAN1PREFIX}/man/man1/
.endif
.include <bsd.port.mk>