summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorjlam <jlam>2003-11-21 16:07:13 +0000
committerjlam <jlam>2003-11-21 16:07:13 +0000
commita751e8d787cad76e544a7d7b693dc1f08b19fa9d (patch)
treeeafd525990b3a561c498e196c98835e64c8c3f4c /mail
parent8e346f9ba2415ee52aea30162bf246ee56245f91 (diff)
downloadpkgsrc-a751e8d787cad76e544a7d7b693dc1f08b19fa9d.tar.gz
A few more whitespace nits.
Diffstat (limited to 'mail')
-rw-r--r--mail/postfix/Makefile26
1 files changed, 13 insertions, 13 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile
index 580ea78381b..0611b1cd89d 100644
--- a/mail/postfix/Makefile
+++ b/mail/postfix/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.108 2003/11/21 15:54:40 jlam Exp $
+# $NetBSD: Makefile,v 1.109 2003/11/21 16:07:13 jlam Exp $
DISTNAME= postfix-2.0.16
CATEGORIES= mail
@@ -29,7 +29,7 @@ CCARGS+= -DDEF_DAEMON_DIR=\"${LIBEXECDIR}\"
FIX_RPATH+= AUXLIBS
.if defined(POSTFIX_USE_INET6) && ${POSTFIX_USE_INET6} == "YES"
-.include "../../security/openssl/buildlink2.mk"
+. include "../../security/openssl/buildlink2.mk"
PATCHFILES+= tls+ipv6-1.18a-pf-2.0.16.patch.gz
PATCH_SITES+= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.18/
PATCH_DIST_STRIP= -p1
@@ -46,7 +46,7 @@ MESSAGE_SRC+= ${PKGDIR}/MESSAGE.tls
.endif
.if defined(POSTFIX_USE_PCRE) && ${POSTFIX_USE_PCRE} == "YES"
-.include "../../devel/pcre/buildlink2.mk"
+. include "../../devel/pcre/buildlink2.mk"
CCARGS+= -DHAS_PCRE
AUXLIBS+= -L${BUILDLINK_PREFIX.pcre}/lib \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.pcre}/lib \
@@ -57,7 +57,7 @@ CCARGS+= -DNO_PCRE
.endif
.if defined(POSTFIX_USE_LDAP) && ${POSTFIX_USE_LDAP} == "YES"
-.include "../../databases/openldap/buildlink2.mk"
+. include "../../databases/openldap/buildlink2.mk"
CCARGS+= -DHAS_LDAP
AUXLIBS+= -L${BUILDLINK_PREFIX.openldap}/lib \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.openldap}/lib \
@@ -66,7 +66,7 @@ BUILD_DEFS+= POSTFIX_USE_LDAP
.endif
.if defined(POSTFIX_USE_MYSQL) && ${POSTFIX_USE_MYSQL} == "YES"
-.include "../../databases/mysql-client/buildlink2.mk"
+. include "../../databases/mysql-client/buildlink2.mk"
CCARGS+= -DHAS_MYSQL -I${BUILDLINK_PREFIX.mysql-client}/include/mysql
AUXLIBS+= -L${BUILDLINK_PREFIX.mysql-client}/lib/mysql \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.mysql-client}/lib/mysql \
@@ -76,7 +76,7 @@ BUILD_DEFS+= POSTFIX_USE_MYSQL
.if defined(USE_SASL2) && ${USE_SASL2} == "YES"
USING_SASL=YES
-.include "../../security/cyrus-sasl2/buildlink2.mk"
+. include "../../security/cyrus-sasl2/buildlink2.mk"
CCARGS+= -DUSE_SASL2_AUTH
AUXLIBS+= -L${BUILDLINK_PREFIX.cyrus-sasl}/lib \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.cyrus-sasl}/lib \
@@ -84,7 +84,7 @@ AUXLIBS+= -L${BUILDLINK_PREFIX.cyrus-sasl}/lib \
BUILD_DEFS+= USE_SASL2
.elif defined(USE_SASL) && ${USE_SASL} == "YES"
USING_SASL=YES
-.include "../../security/cyrus-sasl/buildlink2.mk"
+. include "../../security/cyrus-sasl/buildlink2.mk"
CCARGS+= -DUSE_SASL_AUTH
AUXLIBS+= -L${BUILDLINK_PREFIX.cyrus-sasl}/lib \
-Wl,${RPATH_FLAG}${BUILDLINK_PREFIX.cyrus-sasl}/lib \
@@ -121,11 +121,11 @@ SHAREDIR= ${PREFIX}/share/examples/${PKGBASE}
CONF_FILES= ${SHAREDIR}/main.cf ${PKG_SYSCONFDIR}/main.cf
CONF_FILES+= ${SHAREDIR}/master.cf ${PKG_SYSCONFDIR}/master.cf
.if defined(USING_SASL)
-.if defined(USE_SASL2)
+. if defined(USE_SASL2)
CONF_FILES+= ${SHAREDIR}/smtpd.conf ${PREFIX}/lib/sasl2/smtpd.conf
-.else
+. else
CONF_FILES+= ${SHAREDIR}/smtpd.conf ${PREFIX}/lib/sasl/smtpd.conf
-.endif
+. endif
.endif
CONF_FILES_PERMS= # empty
.for confscr in post-install postfix-files postfix-script
@@ -163,11 +163,11 @@ pre-install:
${CHMOD} 755 ${SHAREDIR} ${LIBEXECDIR}
-${RM} -f ${WRKSRC}/conf/*.orig
.if defined(USING_SASL)
-.if defined(USE_SASL2)
+. if defined(USE_SASL2)
${ECHO} "pwcheck_method: auxprop" > ${WRKDIR}/smtpd.conf
-.else
+. else
${ECHO} "pwcheck_method: sasldb" > ${WRKDIR}/smtpd.conf
-.endif
+. endif
.endif
${INSTALL_DATA} ${WRKDIR}/smtpd.conf ${SHAREDIR}
${INSTALL_SCRIPT} ${WRKSRC}/conf/post-install ${SHAREDIR}