diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim-devel/Makefile | 13 | ||||
-rw-r--r-- | mail/exim-old/Makefile | 13 | ||||
-rw-r--r-- | mail/exim/Makefile | 13 |
3 files changed, 30 insertions, 9 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index 968fcc3..e74bffa 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION= 3.22 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \ http://www.exim.org/ftp/ \ @@ -60,6 +60,9 @@ LDAP_LIB_TYPE=UMICHIGAN #WITHOUT_MAILDIR= yes #WITHOUT_MAILSTORE= yes #WITHOUT_MBX= yes +# +# Disable support for CDB-style lookups. +#WITHOUT_CDB= yes # You should not need to fiddle with anything below this point. @@ -139,14 +142,18 @@ SEDLIST+= -e 's,^LOOKUP_LIBS,\#LOOKUP_LIBS,' \ SEDLIST+= -e 's,^\# SUPPORT_MAILDIR=,SUPPORT_MAILDIR=,' .endif -.if !defined(WITH_MAILSTORE) +.if !defined(WITHOUT_MAILSTORE) SEDLIST+= -e 's,^\# SUPPORT_MAILSTORE=,SUPPORT_MAILSTORE=,' .endif -.if !defined(WITH_MAILMBX) +.if !defined(WITHOUT_MBX) SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,' .endif +.if !defined(WITHOUT_CDB) +SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,' +.endif + do-configure: ${MKDIR} ${WRKSRC}/Local ${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index 968fcc3..e74bffa 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION= 3.22 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \ http://www.exim.org/ftp/ \ @@ -60,6 +60,9 @@ LDAP_LIB_TYPE=UMICHIGAN #WITHOUT_MAILDIR= yes #WITHOUT_MAILSTORE= yes #WITHOUT_MBX= yes +# +# Disable support for CDB-style lookups. +#WITHOUT_CDB= yes # You should not need to fiddle with anything below this point. @@ -139,14 +142,18 @@ SEDLIST+= -e 's,^LOOKUP_LIBS,\#LOOKUP_LIBS,' \ SEDLIST+= -e 's,^\# SUPPORT_MAILDIR=,SUPPORT_MAILDIR=,' .endif -.if !defined(WITH_MAILSTORE) +.if !defined(WITHOUT_MAILSTORE) SEDLIST+= -e 's,^\# SUPPORT_MAILSTORE=,SUPPORT_MAILSTORE=,' .endif -.if !defined(WITH_MAILMBX) +.if !defined(WITHOUT_MBX) SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,' .endif +.if !defined(WITHOUT_CDB) +SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,' +.endif + do-configure: ${MKDIR} ${WRKSRC}/Local ${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 968fcc3..e74bffa 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION= 3.22 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \ http://www.exim.org/ftp/ \ @@ -60,6 +60,9 @@ LDAP_LIB_TYPE=UMICHIGAN #WITHOUT_MAILDIR= yes #WITHOUT_MAILSTORE= yes #WITHOUT_MBX= yes +# +# Disable support for CDB-style lookups. +#WITHOUT_CDB= yes # You should not need to fiddle with anything below this point. @@ -139,14 +142,18 @@ SEDLIST+= -e 's,^LOOKUP_LIBS,\#LOOKUP_LIBS,' \ SEDLIST+= -e 's,^\# SUPPORT_MAILDIR=,SUPPORT_MAILDIR=,' .endif -.if !defined(WITH_MAILSTORE) +.if !defined(WITHOUT_MAILSTORE) SEDLIST+= -e 's,^\# SUPPORT_MAILSTORE=,SUPPORT_MAILSTORE=,' .endif -.if !defined(WITH_MAILMBX) +.if !defined(WITHOUT_MBX) SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,' .endif +.if !defined(WITHOUT_CDB) +SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,' +.endif + do-configure: ${MKDIR} ${WRKSRC}/Local ${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile |