94 lines
3.3 KiB
Makefile
94 lines
3.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.14 2010/11/19 07:23:06 espie Exp $
|
|
|
|
# No NTLM support in OpenLDAP; Plaintext password authentication will be
|
|
# used when connecting to the Global Catalog server. Consider installing
|
|
# the evo-openldap package, or building OpenLDAP with the patch in
|
|
# docs/openldap-ntlm.diff
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= Evolution connector for MS Exchange
|
|
|
|
GNOME_PROJECT= evolution-exchange
|
|
GNOME_VERSION= 2.32.1
|
|
|
|
CATEGORIES= mail
|
|
|
|
EVO_VERSION= 2.32
|
|
SUBST_VARS= EVO_VERSION
|
|
|
|
HOMEPAGE= http://projects.gnome.org/evolution/
|
|
|
|
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
|
|
Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += ICE ORBit-2 SM X11 Xau Xcomposite Xcursor Xdamage Xdmcp
|
|
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender asn1
|
|
WANTLIB += atk-1.0 c cairo camel-1.2 camel-provider-1.2 canberra
|
|
WANTLIB += canberra-gtk com_err crypto db dbus-1 dbus-glib-1 ebackend-1.2
|
|
WANTLIB += ebook-1.2 ecal-1.2 edata-book-1.2 edata-cal-1.2 edataserver-1.2
|
|
WANTLIB += edataserverui-1.2 egroupwise-1.2 enchant
|
|
WANTLIB += execinfo expat fontconfig freetype gailutil gcrypt
|
|
WANTLIB += gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0
|
|
WANTLIB += gnome-desktop-2 gnome-keyring gnutls
|
|
WANTLIB += gobject-2.0 gpg-error gssapi gthread-2.0 gtk-x11-2.0
|
|
WANTLIB += gtkhtml-3.14 ical icalss icalvcal krb5
|
|
WANTLIB += ltdl m nspr4 nss3 ogg pango-1.0 pangocairo-1.0
|
|
WANTLIB += pangoft2-1.0 pcre pixman-1 plc4 plds4 png pthread pthread-stubs
|
|
WANTLIB += sasl2 smime3 soup-2.4 sqlite3 ssl ssl3 startup-notification-1
|
|
WANTLIB += stdc++ tasn1 unique-1.0 vorbis vorbisfile xcb xcb-atom
|
|
WANTLIB += xcb-aux xcb-event xcb-render xml2 z
|
|
WANTLIB += gdata gtkhtml-editor-3.14 lber-2.3 ldap-2.3 nssutil3
|
|
WANTLIB += proxy soup-gnome-2.4 GL Xxf86vm drm softokn3 xcb-shm
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/art_lgpl
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/gnomecanvas
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/essmime
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/emformat
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/evolution-mail
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/evolution-smime
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/filter
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/menus
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/eabutil
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/econtacteditor
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/econtactlisteditor
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/composer
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/eshell
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/etable
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/etext
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/evolution-a11y
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/emiscwidgets
|
|
WANTLIB += lib/evolution/${EVO_VERSION}/eutil
|
|
|
|
MODULES= devel/gettext \
|
|
x11/gnome \
|
|
devel/gconf2
|
|
|
|
LIB_DEPENDS= mail/evolution,-main>=2.32.0
|
|
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
|
|
MODGCONF2_SCHEMAS_DIR= evolution-exchange
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--disable-gtk-doc \
|
|
--disable-static \
|
|
--with-krb5=/usr \
|
|
--with-krb5-includes=/usr/include/kerberosV \
|
|
--with-static-ldap=no \
|
|
--with-openldap=${LOCALBASE} \
|
|
--with-libdb=${LOCALBASE}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/db4" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
pre-configure:
|
|
perl -pi -e 's,-lpthread,-pthread,g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|