aboutsummaryrefslogtreecommitdiff
path: root/mail/up-imapproxy/Makefile
blob: 8586be3d0537b036b69218530c57ef8b1b8d7a65 (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
57
# Created by: Martin Blapp
# $FreeBSD$

PORTNAME=	imapproxy
PORTVERSION=	1.2.7
PORTREVISION=	2
CATEGORIES=	mail
MASTER_SITES=	SF/squirrelmail/imap_proxy/${PORTVERSION}
PKGNAMEPREFIX=	up-
DISTNAME=	squirrelmail-imap_proxy-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Caching IMAP proxy server

LICENSE=	GPLv2 # (or later)

OPTIONS_DEFINE=	DOVECOT DOCS
DOVECOT_DESC=	Use with dovecot2

USE_BZIP2=	yes
USES=	pathfix
USE_OPENSSL=	yes
USE_AUTOTOOLS=	autoheader
CONFIGURE_ARGS=	--with-openssl=${OPENSSLBASE}
MAKE_JOBS_SAFE=	yes

USE_RC_SUBR=	imapproxyd

SUB_FILES=	pkg-message

DOCS=		ChangeLog README README.debian README.known_issues README.ssl
SBIN=		in.imapproxyd pimpstat

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MDOVECOT}
SUB_LIST+=	DOVECOT="dovecot"
RUN_DEPENDS+=	dovecot>=1.0:${PORTSDIR}/mail/dovecot2
.else
SUB_LIST+=	DOVECOT=""
.endif

do-install:
.for i in ${SBIN}
	(cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} ${i} ${PREFIX}/sbin)
.endfor
	(cd ${WRKSRC}/scripts && ${INSTALL_DATA} imapproxy.conf \
		${PREFIX}/etc/imapproxyd.conf.sample)
.if ${PORT_OPTIONS:MDOCS}
	@${MKDIR} ${DOCSDIR}
.for i in ${DOCS}
	(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${DOCSDIR})
.endfor
.endif
	@${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>