blob: f4f3a85e83c408025b548d9ad8f0af8d349d6faf (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Created by: Michael Ranner
# $FreeBSD$
PORTNAME= kvirc
PORTVERSION= 4.2.0
CATEGORIES= irc kde
MASTER_SITES= ftp://ftp.kvirc.de/pub/kvirc/%SUBDIR%/ \
http://kvirc.gmake.de/pub/kvirc/%SUBDIR%/ \
http://kvirc-ftp.visualscripts.com/%SUBDIR%/ \
ftp://dedimarbo.ath.cx/pub/kvirc/%SUBDIR%/ \
ftp://kvirc.eban-meban.com/%SUBDIR%/ \
http://kvirc.tradebit.com/%SUBDIR%/ \
http://kvirc.imsam.info/%SUBDIR%/ \
http://kvirc.bcoos.net/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTVERSION}/source
MAINTAINER= makc@FreeBSD.org
COMMENT?= IRC client for KDE 4
.if !defined(PKGNAMESUFFIX)
CONFLICTS_INSTALL= kvirc-qt4-4.*
.endif
USE_BZIP2= yes
USE_OPENSSL= yes
USE_PERL5= build
USE_QT4= moc_build qmake_build rcc_build uic_build \
dbus gui network sql xml
USES= cmake gettext perl5
CMAKE_ARGS= -DWANT_ESD=no -DWANT_DOXYGEN=no \
-DMANDIR=${MANPREFIX}
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
OPTIONS_DEFINE= AUDIOFILE GSM PERL PYTHON DEBUG
AUDIOFILE_DESC= Support for various audio formats
GSM_DESC= u-law to gsm audio converter support
PERL_DESC= Perl scripting support
PYTHON_DESC= Python scripting support
.if defined(PKGNAMESUFFIX)
OPTIONS_DEFINE+= PHONON WEBKIT
PHONON_DESC= Build with Phonon support
WEBKIT_DESC= Build with QtWebkit support
.endif
PLIST_SUB+= VER="${PORTVERSION:R}"
.include <bsd.port.options.mk>
.if defined(PKGNAMESUFFIX)
CMAKE_ARGS+= -DWITHOUT_KDE4=yes
PLIST_SUB+= QT="" KDE="@comment "
. if ${PORT_OPTIONS:MPHONON}
USE_QT4+= phonon
. else
CMAKE_ARGS+= -DWITHOUT_PHONON=yes
. endif
. if ${PORT_OPTIONS:MWEBKIT}
USE_QT4+= webkit
. else
CMAKE_ARGS+= -DWITHOUT_QTWEBKIT=yes
. endif
.else #defined(PKGNAMESUFFIX)
USE_KDE4= kdelibs automoc4 kdeprefix sharedmime
PLIST_SUB+= QT="@comment " KDE=""
.endif #defined(PKGNAMESUFFIX)
.if ${PORT_OPTIONS:MDEBUG}
CMAKE_ARGS+= -DWITH_DEBUG=yes -DVERBOSE=yes
.endif
#audio support
.if ${PORT_OPTIONS:MAUDIOFILE}
LIB_DEPENDS+= libaudiofile.so:${PORTSDIR}/audio/libaudiofile
.else
CMAKE_ARGS+= -DWITHOUT_AUDIOFILE=yes
.endif
.if ${PORT_OPTIONS:MGSM}
LIB_DEPENDS+= libgsm.so:${PORTSDIR}/audio/gsm
.else
CMAKE_ARGS+= -DWANT_GSM=no
.endif
#scripting support
.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON= yes
PLIST_SUB+= PYTHON=""
.else
CMAKE_ARGS+= -DWANT_PYTHON=no
PLIST_SUB+= PYTHON="@comment "
.endif
.if ${PORT_OPTIONS:MPERL}
USE_PERL5+= run
PLIST_SUB+= PERL=""
.else
CMAKE_ARGS+= -DWANT_PERL=no
PLIST_SUB+= PERL="@comment "
.endif
.if ${PORT_OPTIONS:MPERL}
pre-everything::
@${ECHO_CMD} "====================================================="
@${ECHO_CMD} " To enable perl scripting you need to rebuild"
@${ECHO_CMD} " perl with multiplicity support!"
@${ECHO_CMD} "====================================================="
.endif
.include <bsd.port.mk>
|