diff options
author | jlam <jlam@pkgsrc.org> | 2007-09-21 14:12:19 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-09-21 14:12:19 +0000 |
commit | 5950600b9cc8d7ad82b13d64d2ba851b236e7f59 (patch) | |
tree | f5c141baf5f3958e675aa4f102a93c9786a182f9 /net/couriertcpd/Makefile | |
parent | e791a44cd3313c2c8aacfd2484a8f4c8598fb7a0 (diff) | |
download | pkgsrc-5950600b9cc8d7ad82b13d64d2ba851b236e7f59.tar.gz |
Allow "inet6" as a package option for net/couriertcpd and
mail/courier-mta. Modify mail/courier-imap to build regardless of
the platforms IPv6 support and update meta-pkg/courier to the latest
versions of the Courier mail server suite. Bump the PKGREVISIONs
of the following packages:
mail/courier-mta --> 7
meta-pkgs/courier --> 3
net/couriertcpd --> 2
This fixes PR pkg/37013 by Aleksej Saushev.
Diffstat (limited to 'net/couriertcpd/Makefile')
-rw-r--r-- | net/couriertcpd/Makefile | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/net/couriertcpd/Makefile b/net/couriertcpd/Makefile index e1747b1be15..688c96cb242 100644 --- a/net/couriertcpd/Makefile +++ b/net/couriertcpd/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2007/09/17 15:28:03 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2007/09/21 14:12:19 jlam Exp $ DISTNAME= courier-${COURIER_VERSION} PKGNAME= ${DISTNAME:S/-/tcpd-/} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/} EXTRACT_SUFX= .tar.bz2 @@ -16,6 +16,18 @@ CONFLICTS= courier-imap<4.11 USE_TOOLS+= gmake USE_LANGUAGES= c c++ +PKG_OPTIONS_VAR= PKG_OPTIONS.couriertcpd +PKG_SUPPORTED_OPTIONS= inet6 +PKG_SUGGESTED_OPTIONS= inet6 + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Minet6) +CONFIGURE_ARGS+= --with-ipv6 +.else +CONFIGURE_ARGS+= --without-ipv6 +.endif + .include "../../mail/courier-mta/Makefile.common" # This package doesn't need to depend on courier-authlib -- just fake |