b7b9ec7a12
makefile and may not be used by ports makefiles. In addition, avoid problems should the defaults ever change. Approved by: portmgr (tabthorpe)
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# Created by: Alexey V. Degtyarev <alexey@renatasystems.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sieve-connect
|
|
PORTVERSION= 0.84
|
|
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= unknown
|
|
LICENSE_NAME= Public Domain
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
RUN_DEPENDS= p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL \
|
|
p5-IO-Socket-INET6>=0:${PORTSDIR}/net/p5-IO-Socket-INET6 \
|
|
p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \
|
|
p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \
|
|
p5-ReadLine-Gnu>=0:${PORTSDIR}/devel/p5-ReadLine-Gnu \
|
|
p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey
|
|
|
|
USE_BZIP2= yes
|
|
USE_PERL5= yes
|
|
PLIST_FILES= bin/sieve-connect
|
|
|
|
MAN1= sieve-connect.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= ChangeLog README TODO
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/sieve-connect ${PREFIX}/bin/sieve-connect
|
|
${INSTALL_MAN} ${WRKSRC}/sieve-connect.1 \
|
|
${MANPREFIX}/man/man1/sieve-connect.1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for _doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${_doc} ${DOCSDIR}/${_doc}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|