diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-21 20:36:01 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-21 20:36:01 +0000 |
commit | 0fe0830849e60cda0c0ecb56545eb707bbaa9faa (patch) | |
tree | 4ea54d18420a76a4bc0056aaf198e88529c2d717 /mail/postfix23/scripts | |
parent | f15f0ac4bede7b413cc7e6c7f4c057b3d7cd518f (diff) |
- Add VDA (Virtual Delivery Agent) patch
PR: ports/70637
Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=116978
Diffstat (limited to 'mail/postfix23/scripts')
-rw-r--r-- | mail/postfix23/scripts/configure.postfix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/postfix23/scripts/configure.postfix b/mail/postfix23/scripts/configure.postfix index 3153357008d5..a0efbaa03111 100644 --- a/mail/postfix23/scripts/configure.postfix +++ b/mail/postfix23/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.52 2004-08-18 15:33:08 mat Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix23/scripts/Attic/configure.postfix,v 1.53 2004-08-21 20:36:01 pav Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -37,6 +37,7 @@ PgSQL "PostgreSQL v7.4 map lookups" "$status_PgSQL" \ PgSQL73 "PostgreSQL v7.3 map lookups" "$status_PgSQL73" \ PgSQL72 "PostgreSQL v7.2 map lookups" "$status_PgSQL72" \ OpenLDAP "OpenLDAP map lookups (choose ver. with WITH_OPENLDAP_VER)" "$status_OpenLDAP" \ +VDA "VDA (Virtual Delivery Agent)" "$status_VDA" \ Test "SMTP/LMTP test server and generator" "$status_Test" \ 2> $tempfile @@ -250,6 +251,11 @@ while [ "$1" ]; do SUB_TLS="" SUB_IPV6="" ;; + VDA) + echo "PATCH_SITES+= http://web.onda.com.br/nadal/postfix/VDA/" + echo "PATCHFILES+= postfix-2.1.4-trash.patch.gz" + echo "PATCH_DIST_STRIP= -p1" + ;; *) echo "Unknown option(s): $*" > /dev/stderr rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc |