forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
72 lines (56 loc) · 1.76 KB
/
Makefile
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Created by: Doug Barton <[email protected]>
# $FreeBSD$
PORTNAME= qbittorrent
PORTVERSION= 3.1.12
PORTREVISION?= 0
CATEGORIES= net-p2p ipv6
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
MAINTAINER= [email protected]
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
USES= execinfo pkgconfig tar:xz
USE_QT4= corelib network qmake_build linguisttools_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.md
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>