f85e37560b
Given a file containing a list of Unix commands, multithreading is used to process the commands in parallel on a single server. Success/failure is captured, and failed commands are retained and reported. WWW: http://sourceforge.net/projects/parafly/ PR: 207960 Submitted by: Jason Bacon <bacon4000@gmail.com>
24 lines
450 B
Makefile
24 lines
450 B
Makefile
# Created by: Jason Bacon <bacon4000@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= parafly
|
|
PORTVERSION= 2013.01.21
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
DISTNAME= ${PORTNAME}-r2013-01-21
|
|
|
|
MAINTAINER= bacon4000@gmail.com
|
|
COMMENT= Process multiple commands in parallel on a single server
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= compiler:openmp tar:tgz
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CXXFLAGS+= -fopenmp
|
|
LDFLAGS+= -fopenmp
|
|
|
|
PLIST_FILES= bin/ParaFly
|
|
|
|
.include <bsd.port.mk>
|