diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-19 11:11:28 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-19 11:11:28 +0000 |
commit | eaaacfa441e173db9cabefc74977924b51031491 (patch) | |
tree | a4808720729ade49acc7b1a73837562d0627c1a3 /mail/evolution | |
parent | 3ba6025a4d46039f5cce3890e39c54ac035a8cbd (diff) | |
download | ports-eaaacfa441e173db9cabefc74977924b51031491.tar.gz ports-eaaacfa441e173db9cabefc74977924b51031491.zip |
Enable SSL support. Bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=51823
Diffstat (limited to 'mail/evolution')
-rw-r--r-- | mail/evolution/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 0b673beaa439..0cfb5e6fc6a6 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -7,7 +7,7 @@ PORTNAME= evolution PORTVERSION= 1.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= mail gnome MASTER_SITES= http://www.sleepycat.com/update/3.1.17/ \ ${MASTER_SITE_GNOME} @@ -17,7 +17,8 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ MAINTAINER= gnome@FreeBSD.org -LIB_DEPENDS= bonobo_conf.0:${PORTSDIR}/devel/bonobo-conf +LIB_DEPENDS= bonobo_conf.0:${PORTSDIR}/devel/bonobo-conf \ + nss3.1:${PORTSDIR}/security/nss # ldap.2:${PORTSDIR}/net/openldap2 .if !defined(WITHOUT_PILOT) BUILD_DEPENDS= ${X11BASE}/lib/gnome-pilot/conduits/libemail_conduit.so:${PORTSDIR}/palm/gnomepilot-conduits @@ -35,8 +36,10 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-db3-libs=${DB3_WRKSRC} \ --with-db3-includes=${DB3_WRKSRC} \ --with-html-dir=${PREFIX}/share/gnome/html \ - --with-openssl-includes=${OPENSSLBASE}/include \ - --with-openssl-libs=${OPENSSLBASE}/lib + --with-nspr-includes=${LOCALBASE}/include/nspr \ + --with-nspr-libs=${LOCALBASE}/lib \ + --with-nss-includes=${LOCALBASE}/include/nss/security \ + --with-nss-libs=${LOCALBASE}/lib # --with-openldap=${LOCALBASE} .if !defined(WITHOUT_PILOT) CONFIGURE_ARGS+= --with-pisock=${LOCALBASE}/pilot \ |