summaryrefslogtreecommitdiff
path: root/mail/dkimap4/Makefile
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-07-07 03:16:39 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-07-07 03:16:39 +0000
commit1a77e6a7d7c831915aef99fd1e9f82aeb8b65779 (patch)
tree8cd09e9036fe9a3204d396cf6e4053b5811f39e2 /mail/dkimap4/Makefile
parentadd p5-Config-Ini (diff)
add dkimap4
IMAP4rev1 and POP3 server from the DBOX BBS package PR: 28244 Submitted by: Anders Nordby <anders@fix.no>
Notes
Notes: svn path=/head/; revision=44851
Diffstat (limited to 'mail/dkimap4/Makefile')
-rw-r--r--mail/dkimap4/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/mail/dkimap4/Makefile b/mail/dkimap4/Makefile
new file mode 100644
index 000000000000..6508107eb267
--- /dev/null
+++ b/mail/dkimap4/Makefile
@@ -0,0 +1,40 @@
+# New ports collection makefile for: dkimap4
+# Date created: 18 June 2001
+# Whom: Anders Nordby <anders@fix.no>
+#
+# $FreeBSD$
+#
+
+PORTNAME= dkimap4
+PORTVERSION= 2.35
+CATEGORIES= mail
+MASTER_SITES= http://www.dbox.handshake.de/download/ \
+ http://www.cs.cmu.edu/~kroening/dbox/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= anders@fix.no
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+# dkimap will look for incoming mail folders (mbox format) here instead of
+# the default from paths.h (/var/mail/) if you uncomment it:
+#SPOOLDIR?= /var/mail/foo/
+# dkimap message store:
+DKIMAPSPOOL?= /var/spool/dkimap/
+# remember to use a slash in the end of these directories
+
+MAKE_ARGS+= BIN_DIR="${PREFIX}/bin" DKIMAPSPOOL="${DKIMAPSPOOL}"
+.if defined(SPOOLDIR)
+MAKE_ARGS+= SPOOLDIR="${SPOOLDIR}"
+.endif
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/movemail/movemail ${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/dkimap4/dkimap4 ${PREFIX}/libexec
+ ${INSTALL_PROGRAM} ${WRKSRC}/dkpop3/dkpop3 ${PREFIX}/libexec
+
+post-install:
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>