33 lines
706 B
Makefile
33 lines
706 B
Makefile
# Created by: 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= Number of tools and scripts for use with IMAP servers
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= configure
|
|
NO_BUILD= yes
|
|
SHEBANG_FILES= bin/*
|
|
|
|
OPTIONS_DEFINE= SSL UNICODE
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSSL}
|
|
RUN_DEPENDS+= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MUNICODE}
|
|
RUN_DEPENDS+= p5-Unicode-IMAPUtf7>=0:${PORTSDIR}/converters/p5-Unicode-IMAPUtf7
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|