diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-05-07 20:09:48 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-05-07 20:09:48 +0000 |
commit | ee76096a6ae2930ad799369425f5938956bb6850 (patch) | |
tree | 9dc8b54a19c3f99e52ba48bae9648c2896e6f879 | |
parent | - Fixes problem when base has no openssl installed (diff) |
Disable NSS support in favor of OpenSSL. NSS support conflicts with libsoup,
and can cause Evo to hang if you're using imaps or SMTP with TLS.
Notes
Notes:
svn path=/head/; revision=80395
-rw-r--r-- | mail/evolution-devel/Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/mail/evolution-devel/Makefile b/mail/evolution-devel/Makefile index e30ae20a9a4e..48edbc78e2fb 100644 --- a/mail/evolution-devel/Makefile +++ b/mail/evolution-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= evolution PORTVERSION= 1.3.3 +PORTREVISION= 1 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} \ http://people.FreeBSD.org/~sobomax/:local @@ -19,8 +20,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= An integrated mail, calendar and address book distributed suite -LIB_DEPENDS= nss3.1:${PORTSDIR}/security/nss \ - soup-2.0.0:${PORTSDIR}/devel/libsoup \ +LIB_DEPENDS= soup-2.0.0:${PORTSDIR}/devel/libsoup \ gtkhtml-3.0.1:${PORTSDIR}/www/gtkhtml3 .if defined(WITH_LDAP) @@ -42,10 +42,8 @@ USE_OPENSSL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-db3-libs=${DB3_WRKSRC} \ --with-db3-includes=${DB3_WRKSRC} \ - --with-nspr-includes=${LOCALBASE}/include/nspr \ - --with-nspr-libs=${LOCALBASE}/lib \ - --with-nss-includes=${LOCALBASE}/include/nss/nss \ - --with-nss-libs=${LOCALBASE}/lib + --enable-nss=no \ + --enable-openssl=yes .if defined(WITH_LDAP) CONFIGURE_ARGS+= --with-openldap=${LOCALBASE} @@ -63,8 +61,6 @@ CONFIGURE_ENV= CPPFLAGS="-I${DB3_WRKSRC} -I${LOCALBASE}/include" \ PLIST_SUB+= VERSION="1.3" -#MAN1= evolution.1 - post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure |