summaryrefslogtreecommitdiffstats
path: root/net-im/gaim/Makefile
blob: bf12f71a9f9170e48451d83eb8fb27f108cab030 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# New ports collection makefile for:    gaim
# Date created:         26 Mar 1999
# Whom:             Jim Mock <jim@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   gaim
PORTVERSION=    1.5.0
PORTREVISION=   11
CATEGORIES?=    net-im
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER?=    marcus@FreeBSD.org
COMMENT=    Multi-protocol instant messaging client

LIB_DEPENDS=    startup-notification-1.0:${PORTSDIR}/x11/startup-notification

CONFLICTS?= ja-gaim-[0-9]* gaim-devel-2*

USE_AUTOTOOLS=  libtool:15
USE_XLIB=   yes
USE_GETTEXT=    yes
USE_GMAKE=  yes
USE_GNOME=  gnomeprefix gnomehack gtk20
WANT_GNOME= yes
USE_BZIP2=  yes
USE_LDCONFIG=   yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-static=yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \
        LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" \
        PTHREAD_LIB="${PTHREAD_LIBS}"

MAN1=       gaim.1 gaim-remote.1

OPTIONS=    BIG5 "With Big5 Chinese input fix" off \
        SILC "Secure Internet Live Conferencing support" off \
        GTKSPELL "spell checking support" on \
        AUDIO "audio support" on \
        GNUTLS "GNUTLS encryption support" off \
        NSS "Mozilla NSS encryption support" on \
        PERL "Perl scripting" off \
        TCLTK "Tcl/Tk scripting" off

.include <bsd.port.pre.mk>

.if ${HAVE_GNOME:Mevolutiondataserver}!=""
USE_GNOME+= evolutiondataserver
PLIST_SUB+= EVO=""
.else
CONFIGURE_ARGS+=--disable-gevolution
PLIST_SUB+= EVO="@comment "
.endif

.if defined(WITH_GNUTLS)
LIB_DEPENDS+=       gnutls.15:${PORTSDIR}/security/gnutls
.else
CONFIGURE_ARGS+=    --disable-gnutls
.endif

.if defined(WITH_SILC)
LIB_DEPENDS+=       silcclient-1.0.4:${PORTSDIR}/devel/silc-toolkit
CONFIGURE_ARGS+=    --with-silc-includes=${LOCALBASE}/include/silc
PLIST_SUB+=     SILC=""
.else
PLIST_SUB+=     SILC="@comment "
.endif

.if !defined(WITHOUT_NSS)
LIB_DEPENDS+=       nss3:${PORTSDIR}/security/nss
CONFIGURE_ARGS+=    --with-nspr-includes=${LOCALBASE}/include/nspr \
            --with-nspr-libs=${LOCALBASE}/lib \
            --with-nss-includes=${LOCALBASE}/include/nss/nss \
            --with-nss-libs=${LOCALBASE}/lib/nss
.else
CONFIGURE_ARGS+=    --disable-nss
.endif

.if defined(WITH_PERL) && ${PERL_LEVEL} >= 500800
USE_PERL5=      yes
CONFIGURE_ARGS+=    --with-perl-lib=site
PLIST_SUB+=     PERL:=""
MAN3PREFIX=     ${PREFIX}/lib/perl5/${PERL_VERSION}
MAN3+=          Gaim.3
.else
CONFIGURE_ARGS+=    --disable-perl
PLIST_SUB+=     PERL:="@comment "
.endif

.if !defined(WITHOUT_GTKSPELL)
LIB_DEPENDS+=   gtkspell.0:${PORTSDIR}/textproc/gtkspell
.else
CONFIGURE_ARGS+=    --disable-gtkspell
.endif

.if defined(WITH_TCLTK)
TCLTK_VER?=     8.4 # user can override it
TCLTK_VER_NODOT=    ${TCLTK_VER:S/.//}
.if ${TCLTK_VER} != 8.3 && ${TCLTK_VER} != 8.4
.   error Currently GAIM can only use Tcl/Tk 8.3 or 8.4
.endif
LIB_DEPENDS+=   tk${TCLTK_VER_NODOT}:${PORTSDIR}/x11-toolkits/tk${TCLTK_VER_NODOT}
CONFIGURE_ARGS+=--with-tclconfig=${LOCALBASE}/lib/tcl${TCLTK_VER} \
        --with-tkconfig=${LOCALBASE}/lib/tk${TCLTK_VER}
CFLAGS+=    -I${LOCALBASE}/include/tk${TCLTK_VER} -I${LOCALBASE}/include/tcl${TCLTK_VER}
PLIST_SUB+= TCL:=""
.else
PLIST_SUB+= TCL:="@comment "
.endif

.if !defined(WITHOUT_AUDIO)
LIB_DEPENDS+=   ao.3:${PORTSDIR}/audio/libao \
        audiofile.0:${PORTSDIR}/audio/libaudiofile
.else
CONFIGURE_ARGS+=    --disable-audio
.endif

pre-everything::
.if defined(WITH_PERL) && ${PERL_LEVEL} < 500800
    @${ECHO_MSG} "WARNING: Perl scripting disabled (Perl 5.8 requirement not met)."
.endif
.if defined(WITHOUT_GNUTLS) && defined(WITHOUT_NSS)
    @${ECHO_MSG} "WARNING: In order to use MSN, you must enable the GNUTLS and/or NSS options."
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \
        -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
        -e 's|-lpthread|${PTHREAD_LIBS:S/"//g}|g' \
        -e 's|-lsilc -lsilcclient ${PTHREAD_LIBS} -ldl|-lsilc -lsilcclient ${PTHREAD_LIBS} -liconv|' \
        -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${TCLTK_VER} required|g' \
        -e 's|echo aout|echo elf|g' \
        -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${TCLTK_VER:E}|' \
            ${WRKSRC}/configure
.if defined(WITH_BIG5)
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_gtkconv.c
.endif

.include <bsd.port.post.mk>