mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
0e5c0cc304
- Fix LICENSE Changes in v0.88: * (BREAKING CHANGE) Require TLS verification to work. * (POSSIBLY BREAKING CHANGE) Remote sieve name should be basename of local. * Fail early if no CA trust anchors can be found but TLS verification is enabled. * Added `--tlshostname` option to override the hostname used for TLS host identity verification * If not interactive, various warnings in interactive at the application-level with the remote server will now trigger a final warning before exit and a non-zero exit code. * Kolab nocaps server compatibility, in the continuing saga of "feature-based negotiation, who needs it anyway?" * build-system fix to better isolate releaser tools from "just make the tarball", to let others make the unsigned tarball and compare. * Interactive command `debug` added when invoked with `--debug` to toggle debugging off/on, to reduce self-inflicted log-spam. * Handle local hostnames which lack real DNS better, avoid an undef dereference Full ChangeLog at: http://people.spodhuis.org/phil.pennock/software/sieve-connect.ChangeLog.txt PR: 212466 Submitted by: alexey@renatasystems.org (maintainer)
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# Created by: Alexey V. Degtyarev <alexey@renatasystems.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sieve-connect
|
|
PORTVERSION= 0.88
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://people.spodhuis.org/phil.pennock/software/ \
|
|
ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/
|
|
|
|
MAINTAINER= alexey@renatasystems.org
|
|
COMMENT= Command-line client for the MANAGESIEVE protocol
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \
|
|
p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 \
|
|
p5-IO-Socket-SSL>=1.14:security/p5-IO-Socket-SSL \
|
|
p5-Mozilla-PublicSuffix>=0:dns/p5-Mozilla-PublicSuffix \
|
|
p5-Net-DNS>=0:dns/p5-Net-DNS \
|
|
p5-Net-SSLeay>=1.37:security/p5-Net-SSLeay \
|
|
p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu \
|
|
p5-Term-ReadKey>=0:devel/p5-Term-ReadKey
|
|
|
|
USES= perl5 tar:bzip2 shebangfix
|
|
SHEBANG_FILES= sieve-connect.pl
|
|
|
|
PLIST_FILES= bin/sieve-connect \
|
|
man/man1/sieve-connect.1.gz
|
|
|
|
PORTDOCS= ChangeLog README.md TODO
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sieve-connect \
|
|
${STAGEDIR}${PREFIX}/bin/sieve-connect
|
|
${INSTALL_MAN} ${WRKSRC}/sieve-connect.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/sieve-connect.1
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|