aboutsummaryrefslogtreecommitdiffstats
path: root/chinese/qterm/Makefile
blob: 50dc5ec674667ee67f250270367f3fc7e2b77135 (plain) (blame)
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: Shen Chuan-Hsing
# $FreeBSD$

PORTNAME=   qterm
PORTVERSION=    0.5.12
CATEGORIES= chinese
MASTER_SITES=   SF/qterm/qterm/${PORTVERSION}

MAINTAINER= kaiwang27@gmail.com
COMMENT=    BBS client for BSD/Linux

USE_BZIP2=  yes
USES=       cmake
USE_PERL5_BUILD=    yes
USE_QT4=    codecs-cn_run codecs-tw_run gui help-tools_build \
        linguist_build moc_build network qt3support_build \
        qmake_build rcc_build uic_build xml
USE_XORG=   x11 ice
MAKE_JOBS_SAFE= yes
INSTALLS_ICONS= yes

CONFLICTS_INSTALL=  torque-[0-9]*

OPTIONS_DEFINE= DBUS OPENSSL PHONON QTSCRIPT KDE
OPTIONS_DEFAULT=    DBUS OPENSSL PHONON QTSCRIPT

PHONON_DESC=    Multimedia support via Phonon
QTSCRIPT_DESC=  Scripting support via QtScript Bindings
KDE_DESC=   Password management via KWallet

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MOPENSSL}
USE_OPENSSL=    yes
CMAKE_ARGS+=    -DQTERM_ENABLE_SSH:BOOL=TRUE
.else
CMAKE_ARGS+=    -DQTERM_ENABLE_SSH:BOOL=FALSE
.endif

.if ${PORT_OPTIONS:MDBUS}
USE_QT4+=   dbus
CMAKE_ARGS+=    -DQTERM_ENABLE_DBUS:BOOL=TRUE
.else
CMAKE_ARGS+=    -DQTERM_ENABLE_DBUS:BOOL=FALSE
.endif

.if ${PORT_OPTIONS:MPHONON}
USE_QT4+=   phonon
CMAKE_ARGS+=    -DQTERM_ENABLE_PHONON:BOOL=TRUE
.else
CMAKE_ARGS+=    -DQTERM_ENABLE_PHONON:BOOL=FALSE
.endif

.if ${PORT_OPTIONS:MQTSCRIPT}
USE_QT4+=   script
RUN_DEPENDS+=   ${QT_PLUGINDIR}/script/libqtscript_core.so:${PORTSDIR}/devel/qtscriptgenerator
CMAKE_ARGS+=    -DQTERM_ENABLE_SCRIPT:BOOL=TRUE
.else
CMAKE_ARGS+=    -DQTERM_ENABLE_SCRIPT:BOOL=FALSE
.endif

.if ${PORT_OPTIONS:MKDE}
USE_KDE4=   kdelibs automoc4
.endif

post-patch:
.if !${PORT_OPTIONS:MKDE}
    ${REINPLACE_CMD} -e "/^find_package(KDE4)/d" ${WRKSRC}/CMakeLists.txt
.endif
    ${REINPLACE_CMD} -e "/^set(QT_MIN_VERSION/d" ${WRKSRC}/CMakeLists.txt

.include <bsd.port.mk>