summaryrefslogtreecommitdiff
path: root/mail/dkimap4/Makefile
blob: 961ba651d2b027c96e2fd32ed4ad23589c67ec90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# New ports collection makefile for:	dkimap4
# Date created:		18 June 2001
# Whom:			Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#

PORTNAME=	dkimap4
PORTVERSION=	2.39
PORTREVISION=	1
CATEGORIES=	mail
MASTER_SITES=	http://www.dbox.handshake.de/download/ \
		http://www-2.cs.cmu.edu/~kroening/dbox/
EXTRACT_SUFX=	.tgz

MAINTAINER=	ports@FreeBSD.org
COMMENT=	IMAP4rev1 and POP3 server from the DBOX BBS package

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

DOCS=	README

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 500113
BROKEN=         "Does not compile (bad C++ code)"
.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:
.if !defined(NOPORTDOCS)
	${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/doc/${PORTNAME}
.for f in ${DOCS}
	${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME}
.endfor
.endif
	@${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>