diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-11-22 11:44:54 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-11-22 11:44:54 +0000 |
commit | a18efbaa2235aa1547644778ae5a6d14c6fe086c (patch) | |
tree | d0a0a8b60a42315897894c675a9f62164d9fc58e /mail/postfix-current/Makefile | |
parent | 32a98c56d9f4f4b57a661eea9df3f6b5bb8ba7c1 (diff) |
Notes
Diffstat (limited to 'mail/postfix-current/Makefile')
-rw-r--r-- | mail/postfix-current/Makefile | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index bf9ebc8156fe..57cbfaba2a63 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -6,10 +6,10 @@ # PORTNAME= postfix -PORTVERSION= 20001030 -PORTREVISION= 1 +PORTVERSION= 20001121 CATEGORIES= mail MASTER_SITES= ftp://ftp.merit.edu/postfix/experimental/ \ + ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/ \ ftp://ftp.tux.org/pub/net/postfix/experimental/ \ ftp://ftp.utoronto.ca/mirror/packages/postfix/experimental/ \ ftp://ftp.samurai.com/pub/postfix/experimental/ \ @@ -36,7 +36,7 @@ CONF1= access aliases canonical main.cf master.cf \ regexp_table relocated transport virtual CONF2= sample-aliases.cf sample-canonical.cf sample-debug.cf \ - sample-filter.cf sample-local.cf sample-misc.cf \ + sample-filter.cf sample-flush.cf sample-local.cf sample-misc.cf \ sample-rate.cf sample-regexp.cf sample-relocated.cf \ sample-resource.cf sample-rewrite.cf sample-smtp.cf \ sample-smtpd.cf sample-transport.cf sample-virtual.cf @@ -105,6 +105,19 @@ PLIST_SUB+= WITH_SASL="" PLIST_SUB+= WITH_SASL="@comment " .endif +.if defined(WITH_TLS) +CONF2+= sample-tls.cf +BIN1+= tlsmgr +POSTFIX_CCARGS+= -DHAS_SSL -I/usr/include/openssl +POSTFIX_AUXLIBS+= -lssl -lcrypto +DISTFILES+= ${DISTNAME}.tar.gz pfixtls-0.6.23-snap20001030-0.9.6.tar.gz +EXTRA_PATCHES+= ${WRKDIR}/pfixtls-0.6.23-snap20001030-0.9.6/pfixtls.diff +PATCH_STRIP= -p1 +PLIST_SUB+= WITH_TLS="" +.else +PLIST_SUB+= WITH_TLS="@comment " +.endif + post-patch: (cd ${WRKSRC} && make -f Makefile.init makefiles ${MAKEFILEFLAGS} \ CCARGS="${POSTFIX_CCARGS}" AUXLIBS="${POSTFIX_AUXLIBS}" && \ |