blob: ef16c73c320a5fbe962d98286dbc18f0e1389ad4 (
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
|
PORTNAME= imaputils
DISTVERSION= 1.0.5
CATEGORIES= mail
MAINTAINER= m.tsatsenko@gmail.com
COMMENT= Number of tools and scripts for use with IMAP servers
WWW= https://github.com/mtsatsenko/imaputils
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/COPYING
USES= perl5 shebangfix
USE_GITHUB= yes
GH_ACCOUNT= mtsatsenko
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>
|