1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/mail/up-imapproxy/Makefile
Adam Weinberger 871f113e9b Rename dovecot2/dovecot2-pigeonhole to dovecot/dovecot-pigeonhole.
It might be necessary to manually remove and reinstall the package under
the new name.

Discussed with:	ler
2017-08-07 21:44:00 +00:00

55 lines
1.2 KiB
Makefile

# Created by: Martin Blapp
# $FreeBSD$
PORTNAME= imapproxy
PORTVERSION= 1.2.7
PORTREVISION= 4
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+
LICENSE_FILE= ${WRKSRC}/COPYING
OPTIONS_DEFINE= DOVECOT DOCS
DOVECOT_DESC= Use with dovecot2
USES= autoreconf tar:bzip2 ncurses pathfix ssl
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE}
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:mail/dovecot
.else
SUB_LIST+= DOVECOT=""
.endif
do-install:
.for i in ${SBIN}
(cd ${WRKSRC}/bin && ${INSTALL_PROGRAM} ${i} ${STAGEDIR}${PREFIX}/sbin)
.endfor
(cd ${WRKSRC}/scripts && ${INSTALL_DATA} imapproxy.conf \
${STAGEDIR}${PREFIX}/etc/imapproxyd.conf.sample)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for i in ${DOCS}
(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
.endfor
.endif
.include <bsd.port.mk>