blob: 8fe00f28ed2a0abb83ec33212b197b4a3553a276 (
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
113
114
115
116
117
118
119
120
|
# New ports collection makefile for: kvirc
# Date created: 05 January 2004
# Whom: Michael Ranner
#
# $FreeBSD$
#
PORTNAME= kvirc
PORTVERSION= 4.0.4
PORTREVISION= 1
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 KDE4
.if !defined(PKGNAMESUFFIX)
CONFLICTS= kvirc-qt4-4.*
.endif
USE_BZIP2= yes
USE_GETTEXT= yes
USE_OPENSSL= yes
USE_PERL5_BUILD= yes
USE_QT_VER= 4
QT_COMPONENTS= moc_build qmake_build rcc_build uic_build \
dbus gui network sql xml
USE_CMAKE= yes
CMAKE_ARGS= -DWITHOUT_ESD=yes -DWITHOUT_DOXYGEN=yes \
-DMANDIR=${MANPREFIX}
INSTALLS_ICONS= yes
USE_LDCONFIG= yes
MAKE_JOBS_SAFE= yes
MAN1= kvirc.1
MANLANG= "" de fr it
OPTIONS= AUDIOFILE "Support for various audio formats" off \
DEBUG "Build with debug support" off \
GSM "u-law to gsm audio converter support" off \
PERL "Perl scripting support" off \
PYTHON "Python scripting support" off
.if defined(PKGNAMESUFFIX)
OPTIONS+= PHONON "Build with Phonon support" off \
WEBKIT "Build with QtWebkit support" off
.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 defined(WITH_PHONON)
QT_COMPONENTS+= phonon
. else
CMAKE_ARGS+= -DWITHOUT_PHONON=yes
. endif
. if defined(WITH_WEBKIT)
QT_COMPONENTS+= webkit
. else
CMAKE_ARGS+= -DWITHOUT_QTWEBKIT=yes
. endif
.else #defined(PKGNAMESUFFIX)
USE_KDE4= kdelibs automoc4 kdeprefix
PLIST_SUB+= QT="@comment " KDE=""
.endif #defined(PKGNAMESUFFIX)
.if defined(WITH_DEBUG)
CMAKE_ARGS+= -DWITH_DEBUG=yes -DVERBOSE=yes
.endif
#audio support
.if defined(WITH_AUDIOFILE)
LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile
.else
CMAKE_ARGS+= -DWITHOUT_AUDIOFILE=yes
.endif
.if defined(WITH_GSM)
LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm
.else
CMAKE_ARGS+= -DWITHOUT_GSM=yes
.endif
#scripting support
.if defined(WITH_PYTHON)
USE_PYTHON= yes
PLIST_SUB+= PYTHON=""
.else
CMAKE_ARGS+= -DWITHOUT_PYTHON=yes
PLIST_SUB+= PYTHON="@comment "
.endif
.if defined(WITH_PERL)
USE_PERL5_RUN= yes
PLIST_SUB+= PERL=""
.else
CMAKE_ARGS+= -DWITHOUT_PERL=yes
PLIST_SUB+= PERL="@comment "
.endif
.if defined(WITH_PERL)
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>
|