1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/mail/imaputils/Makefile
Chris Rees 67009b92b1 - Update to 1.0.2
- Add OPTIONS for SSL and Unicode support

- Install with iu- prefix, thu removing conflict with imaptools

PR:		ports/166796
Submitted by:	"Mikhail T." <m.tsatsenko@gmail.com> (maintainer)
2012-04-17 18:04:43 +00:00

37 lines
790 B
Makefile

# Ports collection Makefile for: mail/imaputils
# Date created: 2012-04-08
# Whom: Mikhail T. (m.tsatsenko@gmail.com)
#
# $FreeBSD$
#
PORTNAME= imaputils
PORTVERSION= 1.0.2
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
MAINTAINER= m.tsatsenko@gmail.com
COMMENT= A number of tools and scripts for use with IMAP servers
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/COPYING
USE_PERL5_RUN= yes
NO_BUILD= yes
PERL_CONFIGURE= yes
OPTIONS= SSL "Enable SSL support" off \
UNICODE "Adds unicode support" off
.include <bsd.port.options.mk>
.if defined(WITH_SSL)
RUN_DEPENDS+= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL
.endif
.if defined(WITH_UNICODE)
RUN_DEPENDS+= p5-Unicode-IMAPUtf7>=0:${PORTSDIR}/converters/p5-Unicode-IMAPUtf7
.endif
.include <bsd.port.mk>