diff options
author | dinoex <dinoex@FreeBSD.org> | 2001-03-13 06:44:50 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2001-03-13 06:44:50 +0000 |
commit | 8c0906ab26e2f61c50d46529c843929da639a3b8 (patch) | |
tree | f23a2a3703fc7ac8c6df64c762e2f4466a9c6a2b /mail/sendmail-old | |
parent | 950b91ea9d937c9a22d9ca92d9997b295aa8de50 (diff) | |
download | FreeBSD-ports-8c0906ab26e2f61c50d46529c843929da639a3b8.zip FreeBSD-ports-8c0906ab26e2f61c50d46529c843929da639a3b8.tar.gz |
- Listed an overview of options
- Added support for optional configuraion in files/site.config.m4.local
Diffstat (limited to 'mail/sendmail-old')
-rw-r--r-- | mail/sendmail-old/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/sendmail-old/Makefile b/mail/sendmail-old/Makefile index 55174e3..c9205f7 100644 --- a/mail/sendmail-old/Makefile +++ b/mail/sendmail-old/Makefile @@ -19,6 +19,13 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} WCONF= ${WRKSRC}/devtools/Site PLIST= ${WRKDIR}/.PLIST.more +# Options to define Features: +# +# SENDMAIL_WITH_TLS=YES +# SENDMAIL_WITH_SASL=YES +# SENDMAIL_WITH_SFIO=YES +# SENDMAIL_WITH_MILTER=YES + .if defined(SENDMAIL_WITH_TLS) USE_OPENSSL= yes .endif @@ -52,6 +59,10 @@ pre-configure: ${SED} -e "s=%%LOCALBASE%%=${LOCALBASE}=" \ ${FILESDIR}/site.config.m4.ssl >> ${WCONF}/site.config.m4 .endif +.if exists(${FILESDIR}/site.config.m4.local) + ${SED} -e "s=%%LOCALBASE%%=${LOCALBASE}=" \ + ${FILESDIR}/site.config.m4.local >> ${WCONF}/site.config.m4 +.endif PREFIX?= ${DESTDIR}/usr MANPREFIX?= ${DESTDIR}/usr/share |