blob: aebf94e0f6b839388a8d22c3f679939761aa14ab (
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
|
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
# $FreeBSD$
# $MCom: ports/databases/evolution-data-server3/Makefile,v 1.29 2012/12/30 18:15:16 mezz Exp $
PORTNAME= evolution-data-server
PORTVERSION= 3.4.4
PORTREVISION= 1
CATEGORIES= databases gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3
MAINTAINER= gnome@FreeBSD.org
COMMENT= The data backends for the Evolution integrated mail/PIM suite
LICENSE= LGPL20
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection
LIB_DEPENDS= soup-gnome-2.4:${PORTSDIR}/devel/libsoup-gnome \
oauth:${PORTSDIR}/net/liboauth \
goa-1.0:${PORTSDIR}/net/gnome-online-accounts \
gdata.13:${PORTSDIR}/devel/libgdata \
ical:${PORTSDIR}/devel/libical \
nss3:${PORTSDIR}/security/nss \
tasn1:${PORTSDIR}/security/libtasn1 \
gnome-keyring:${PORTSDIR}/security/libgnome-keyring
CONFLICTS= evolution-data-server-2.[0-9]*
LATEST_LINK= evolution-data-server3
USE_XZ= yes
USE_GMAKE= yes
USE_BISON= build
USE_GETTEXT= yes
USE_GNOME= gnomeprefix gnomehack intlhack ltverhack ltasneededhack gconf2 \
libxml2 gtk30
USE_OPENLDAP= yes
USE_SQLITE= yes
USE_AUTOTOOLS= libtool
USE_BDB= 41+
USE_LDCONFIG= yes
CONFIGURE_ARGS= --enable-static \
--with-openldap=yes \
--with-libdb=${LOCALBASE}
CPPFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
GLIB_SCHEMAS= org.gnome.evolution.eds-shell.gschema.xml \
org.gnome.evolution.shell.network-config.gschema.xml
PLIST_SUB= VERSION="3.4" EVO_VERSION="1.2"
OPTIONS_DEFINE= WEATHER KERBEROS
OPTIONS_DEFAULT=WEATHER KERBEROS
WEATHER_DESC= Weather calendar backend
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MKERBEROS}
CONFIGURE_ARGS+= --with-krb5=/usr
KRB5_LIB= `/usr/bin/krb5-config gssapi --libs`
.endif
.if ${PORT_OPTIONS:MWEATHER}
LIB_DEPENDS+= gweather-3:${PORTSDIR}/net/libgweather3
CONFIGURE_ARGS+= --enable-weather
PLIST_SUB+= WEATHER=""
.else
CONFIGURE_ARGS+= --disable-weather
PLIST_SUB+= WEATHER="@comment "
.endif
EDS_BDB_MSG= "!!!WARNING!!!: Berkeley Database version is ${BDB_VER}. If this is an upgrade, you may experience problems if you or any other Evolution-data-server users were previously using BDB_VER 41."
pre-everything::
@if [ x"${BDB_VER}" != x"41" ]; then \
${ECHO_MSG} ${EDS_BDB_MSG} | ${FMT} 75 79 ; \
fi
post-patch:
@${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g ; \
s|heimlibs=".*"|heimlibs="${KRB5_LIB}"|g ; \
s|-Wl,--no-undefined||g ; \
s|-Wmissing-include-dirs||g' \
${WRKSRC}/configure
.include <bsd.port.mk>
|