summaryrefslogtreecommitdiff
path: root/sysutils/vxargs/Makefile
diff options
context:
space:
mode:
authorjmmv <jmmv>2006-05-20 11:27:09 +0000
committerjmmv <jmmv>2006-05-20 11:27:09 +0000
commite19ae268553cc5efb409917cb528a5d79115cbf6 (patch)
treeb80f4558ea879f16135d7a6e69371b334c20fbd0 /sysutils/vxargs/Makefile
parentb8429f7a98c148d6e5d23b7cb57c4da677a2262e (diff)
downloadpkgsrc-e19ae268553cc5efb409917cb528a5d79115cbf6.tar.gz
Initial import of vxargs, version 0.3.3:
vxargs is an utility inspired in xargs and pssh. It provides a parallel versions of any arbitrary command, including ssh, rsync, scp, wget or curl, just to mention a few. It is specially useful to control a large set of machines in a wide-area network. For example, it can be used on PlanetLab to control hundreds of machines spread around the world. Its main features are: * Parallelism: Runs many jobs at the same time. * Flexibility: Runs arbitrary commands with arbitrary options. * Visualization: Monitors the total/per job progress in a curses-based UI. * Redirection: The standard and error outputs of each individual job are redirected to local files for further analysis.
Diffstat (limited to 'sysutils/vxargs/Makefile')
-rw-r--r--sysutils/vxargs/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/sysutils/vxargs/Makefile b/sysutils/vxargs/Makefile
new file mode 100644
index 00000000000..20eee64b67b
--- /dev/null
+++ b/sysutils/vxargs/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2006/05/20 11:27:09 jmmv Exp $
+#
+
+DISTNAME= vxargs-0.3.3
+CATEGORIES= sysutils
+MASTER_SITES= http://dharma.cis.upenn.edu/planetlab/vxargs/
+EXTRACT_SUFX= .py
+
+MAINTAINER= jmmv@NetBSD.org
+HOMEPAGE= http://dharma.cis.upenn.edu/planetlab/vxargs/
+COMMENT= Runs parallel jobs with visualization and redirection
+
+EXTRACT_CMD= ${CP} $${extract_file} ${WRKSRC}/vxargs.py
+NO_BUILD= yes
+WRKSRC= ${WRKDIR}
+
+INSTALLATION_DIRS= bin
+
+PYTHON_PATCH_SCRIPTS= vxargs.py
+
+.include "../../devel/py-curses/buildlink3.mk"
+.include "../../lang/python/application.mk"
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/vxargs.py ${PREFIX}/bin/vxargs
+
+.include "../../mk/bsd.pkg.mk"