mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
0ce8210fdd
keep old versions on their site, at least not for long enough) - Sanitize -COMMENT, simplify installation of documentation files - Consistently reformat first two paragraphs of pkg-descr so it produces less ragged right edge
38 lines
941 B
Makefile
38 lines
941 B
Makefile
# Created by: Tim Daneliuk <tsshbatch@tundraware.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tsshbatch
|
|
PORTVERSION= 1.212
|
|
CATEGORIES= security python
|
|
MASTER_SITES= http://www.tundraware.com/Software/tsshbatch/
|
|
|
|
MAINTAINER= tsshbatch@tundraware.com
|
|
COMMENT= Batch SSH operations
|
|
|
|
LICENSE= tsshbatch
|
|
LICENSE_NAME= tsshbatch
|
|
LICENSE_FILE= ${WRKSRC}/tsshbatch-license.txt
|
|
LICENSE_PERMS= auto-accept
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>=1.7.7.1:${PORTSDIR}/security/py-paramiko
|
|
|
|
USES= python:run
|
|
|
|
PLIST_FILES= bin/tsshbatch.py \
|
|
man/man1/tsshbatch.1.gz
|
|
PORTDOCS= WHATSNEW.txt \
|
|
tsshbatch.html \
|
|
tsshbatch.pdf \
|
|
tsshbatch.ps \
|
|
tsshbatch.rst
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/tsshbatch.py ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/tsshbatch.1.gz ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|