freebsd-ports/security/mussh/Makefile
Frank J. Laszlo 8a1da40982 - mussh uses seq for concurrency measures which is not available on
FreeBSD. replaced with jot.
- bump PORTREVISION

PR:		ports/115278
Submitted by:	Richard Arends <richard@unixguru.nl>
2007-08-08 00:48:31 +00:00

41 lines
941 B
Makefile

# New ports collection makefile for: mussh
# Date created: 24 January 2002
# Whom: Yen-Ming Lee <leeym@leeym.com>
#
# $FreeBSD$
#
PORTNAME= mussh
PORTVERSION= 0.7
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
EXTRACT_SUFX= .tgz
MAINTAINER= laszlof@FreeBSD.org
COMMENT= A tool for easily running the same commands on multiple hosts
RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
NO_BUILD= yes
PORTDOCS= BUGS CHANGES EXAMPLES README
PLIST_FILES= bin/mussh
WRKSRC= ${WRKDIR}/${PORTNAME}
post-patch:
@${REINPLACE_CMD} -e "s,^#!/bin/bash,#!/usr/bin/env bash,g" \
-e "s,seq 1 ,jot 1 ,g" \
${WRKSRC}/${PORTNAME}
do-install:
@${MKDIR} ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>