mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
e7707a655b
Changes: - Folders showed also in utf8. - Caveat to upgrade on Unix!: New Unicode::String Perl module dependency, for utf8 output. See the INSTALL file. - Enhancement: Added --skipemptyfolders to skip syncing empty host1 folders. They are not created on host2. - Usability: Remove /x from regexes applied with --include and --exclude. Blanks no longer have to be explicit with \ or [ ]. - Usability: Added utf8 output for folder names, protocol native utf7imap special characters are not user friendly readable - Usability: Moved foldersizes output after folders lists output. - Usability: Added total size transferred after each message copied. - Usability: After ETA, added number of total to be synced, as a denominator dddd after each message copied, like nnn/dddd where nnn is the number of messages copied. Before there was only nnn without /dddd. - Bug fix: Added several checks if IsUnconnected. Goal avoid imap commands while disconnected. Reconnexion would be better anyway. PR: 196341 Submitted by: mp39590@gmail.com
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# Created by: Alex Deiter <tiamat@komi.mts.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= imapsync
|
|
PORTVERSION= 1.607
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/
|
|
|
|
MAINTAINER= pi@FreeBSD.org
|
|
COMMENT= IMAP synchronization, copy or migration tool
|
|
|
|
RUN_DEPENDS= p5-Mail-IMAPClient>0:${PORTSDIR}/mail/p5-Mail-IMAPClient \
|
|
p5-Term-ReadKey>0:${PORTSDIR}/devel/p5-Term-ReadKey \
|
|
p5-IO-Tee>0:${PORTSDIR}/devel/p5-IO-Tee \
|
|
p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL \
|
|
p5-Unicode-String>0:${PORTSDIR}/converters/p5-Unicode-String \
|
|
p5-File-Copy-Recursive>0:${PORTSDIR}/devel/p5-File-Copy-Recursive
|
|
|
|
USES= perl5 tar:tgz
|
|
NO_BUILD= yes
|
|
|
|
PORTSCOUT= limit:^1\.(\d\.){3}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
POD2MAN?= pod2man
|
|
|
|
do-patch:
|
|
${REINPLACE_CMD} \
|
|
-e 's|/usr/bin/perl|${PERL}|g' \
|
|
${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${POD2MAN} ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.1
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|