diff --git a/sysutils/Makefile b/sysutils/Makefile index 5ec61c9651dc..0c12b90b8968 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -699,6 +699,7 @@ SUBDIR += paicc SUBDIR += pam_mount SUBDIR += panicmail + SUBDIR += parafly SUBDIR += parallel SUBDIR += password-store SUBDIR += patchelf diff --git a/sysutils/parafly/Makefile b/sysutils/parafly/Makefile new file mode 100644 index 000000000000..64a3dc15a356 --- /dev/null +++ b/sysutils/parafly/Makefile @@ -0,0 +1,24 @@ +# Created by: Jason Bacon +# $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 diff --git a/sysutils/parafly/distinfo b/sysutils/parafly/distinfo new file mode 100644 index 000000000000..56a5a2fdc558 --- /dev/null +++ b/sysutils/parafly/distinfo @@ -0,0 +1,2 @@ +SHA256 (parafly-r2013-01-21.tgz) = 64cf7ac2d4af0801b78d58f4057a1489d76b2b8ae59c78997f434d1239fa4abe +SIZE (parafly-r2013-01-21.tgz) = 198711 diff --git a/sysutils/parafly/files/patch-configure b/sysutils/parafly/files/patch-configure new file mode 100644 index 000000000000..63b65bf92094 --- /dev/null +++ b/sysutils/parafly/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2013-01-22 01:21:10 UTC ++++ configure +@@ -3016,7 +3016,7 @@ fi + + + #AC_OPENMP # requires autoconf >= 2.62 +-AM_CXXFLAGS=-m64 ++#AM_CXXFLAGS=-m64 + + case $CXX in + g++*) AM_CXXFLAGS="-pedantic -fopenmp -Wall -Wextra -Wno-long-long -Wno-deprecated $AM_CXXFLAGS" diff --git a/sysutils/parafly/pkg-descr b/sysutils/parafly/pkg-descr new file mode 100644 index 000000000000..c50b7413b697 --- /dev/null +++ b/sysutils/parafly/pkg-descr @@ -0,0 +1,5 @@ +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/