summaryrefslogtreecommitdiff
path: root/mail/exim
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-07-02 14:41:20 +0000
committerwiz <wiz@pkgsrc.org>2002-07-02 14:41:20 +0000
commitac37be73b0e87d8041623d86d8f1617646d75d12 (patch)
tree05f24f89e1b9522fa56446be87b14828b3d74263 /mail/exim
parenta4904542d4691512f7b114a640f7306c21734e1f (diff)
downloadpkgsrc-ac37be73b0e87d8041623d86d8f1617646d75d12.tar.gz
Use INTERACTIVE_STAGE instead of IS_INTERACTIVE (should be fixed to
create a user semi-automatically instead); some command -> ${COMMAND} changes, and replace USE_SSL by openssl buildlink.
Diffstat (limited to 'mail/exim')
-rw-r--r--mail/exim/Makefile21
1 files changed, 11 insertions, 10 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile
index a4c77b836c0..2352a315d69 100644
--- a/mail/exim/Makefile
+++ b/mail/exim/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2002/06/19 16:02:26 ad Exp $
+# $NetBSD: Makefile,v 1.29 2002/07/02 14:41:20 wiz Exp $
DISTNAME= exim-4.05
CATEGORIES= mail net
@@ -11,9 +11,9 @@ MAINTAINER= ad@netbsd.org
HOMEPAGE= http://www.exim.org/
COMMENT= The Exim mail transfer agent, a replacement for sendmail
-USE_SSL= yes
USE_PERL5= yes
-IS_INTERACTIVE= yes
+INTERACTIVE_STAGE= build # actually, needs "mail" user
+ # before configure step, see below
pre-patch:
${MKDIR} ${WRKSRC}/Local
@@ -25,13 +25,13 @@ pre-configure:
> ${WRKSRC}/Local/Makefile
pre-build:
- @(if ! id mail 2>/dev/null >/dev/null; then\
- echo "!! ";\
- echo "!! Use vipw to add the following to master.passwd:";\
- echo "!! ";\
- echo "!! mail:*:8:6::0:0:Electronic Mail:/var/mail:/sbin/nologin";\
- echo "!! ";\
- false;\
+ @(if ! ${ID} mail 2>/dev/null >/dev/null; then\
+ ${ECHO} "!! ";\
+ ${ECHO} "!! Use vipw to add the following to master.passwd:";\
+ ${ECHO} "!! ";\
+ ${ECHO} "!! mail:*:8:6::0:0:Electronic Mail:/var/mail:/sbin/nologin";\
+ ${ECHO} "!! ";\
+ ${FALSE};\
fi)
pre-install:
@@ -57,4 +57,5 @@ post-install:
${FILESDIR}/mailer.conf.exim \
> ${PREFIX}/etc/exim/mailer.conf.exim
+.include "../../security/openssl/buildlink.mk"
.include "../../mk/bsd.pkg.mk"