mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
8d6597e0bb
With hat: portmgr Sponsored by: Absolight
35 lines
667 B
Makefile
35 lines
667 B
Makefile
# Created by: Mikhail T. (m.tsatsenko@gmail.com)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= imaputils
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= mail
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Number of tools and scripts for use with IMAP servers
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mtsatsenko
|
|
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= configure
|
|
NO_BUILD= yes
|
|
SHEBANG_FILES= bin/*
|
|
|
|
OPTIONS_DEFINE= SSL UNICODE
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSSL}
|
|
RUN_DEPENDS+= p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MUNICODE}
|
|
RUN_DEPENDS+= p5-Unicode-IMAPUtf7>=0:converters/p5-Unicode-IMAPUtf7
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|