71 lines
2.2 KiB
Makefile
71 lines
2.2 KiB
Makefile
# New ports collection makefile for: evolution-exchange
|
|
# Date created: 28 April, 2005
|
|
# Whom: Adam Weinberger, based off kiesel's ximian-exchange port
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/mail/evolution-exchange/Makefile,v 1.166 2010/11/16 09:52:36 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= evolution-exchange
|
|
PORTVERSION= 2.32.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= mail gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Evolution plugin to connect to Microsoft Exchange servers
|
|
|
|
EVO_PC_FILE= ${LOCALBASE}/libdata/pkgconfig/evolution-mail.pc
|
|
BUILD_DEPENDS= ${EVO_PC_FILE}:${PORTSDIR}/mail/evolution
|
|
RUN_DEPENDS= ${EVO_PC_FILE}:${PORTSDIR}/mail/evolution
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GMAKE= yes
|
|
USE_BDB= 41
|
|
USE_OPENLDAP= yes
|
|
USE_GNOME= gnomeprefix intlhack gnomehack ltasneededhack
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR}
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --with-openldap=${LOCALBASE} \
|
|
--with-static-ldap=no \
|
|
--with-libdb=${LOCALBASE}
|
|
|
|
EVO_VERSION= 2.32
|
|
VERSION= 2.32
|
|
PLIST_SUB= VERSION=${VERSION} EVO_VERSION=${EVO_VERSION} \
|
|
EDS_VERSION="1.2"
|
|
|
|
GCONF_SCHEMAS= apps_exchange_addressbook-${VERSION}.schemas
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(HEIMDAL_HOME) || defined(WITH_HEIMDAL) || defined(NO_KERBEROS)
|
|
HEIMDAL_HOME?= ${LOCALBASE}
|
|
LIB_DEPENDS+= krb5:${PORTSDIR}/security/heimdal
|
|
CONFIGURE_ARGS+= --with-krb5=${HEIMDAL_HOME} \
|
|
--with-krb5-includes=${HEIMDAL_HOME}/include
|
|
KRB5_LIB= `${HEIMDAL_HOME}/bin/krb5-config gssapi --libs`
|
|
.elif !defined(NO_KERBEROS)
|
|
CONFIGURE_ARGS+= --with-krb5=/usr
|
|
KRB5_LIB= `/usr/bin/krb5-config gssapi --libs`
|
|
.endif
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
.if exists(${LOCALBASE}/include/mapi.h)
|
|
IGNORE= build fails when ${LOCALBASE}/include/mapi.h exists in system, run pkg_info -W ${LOCALBASE}/include/mapi.h to find the offending port and uninstall it, then install ${PORTNAME} and reinstall the port that installed mapi.h
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-ldb|-l${BDB_LIB_NAME}|g' \
|
|
-e 's|-lkrb5 -lcrypto -lasn1 -lcom_err -lroken -lgssapi|${KRB5_LIB}|g' \
|
|
-e 's|-DGTK_DISABLE_DEPRECATED||g' \
|
|
-e 's|-Wmissing-include-dirs||g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.post.mk>
|