071978da07
xjobs reads job descriptions line by line and executes them in parallel. xjobs is most useful on multiprocessor machines when one needs to execute several time consuming commands that could possibly be run in parallel. It works similar to xargs, but starts several processes simultaneously and gives only one line of arguments to each utility call. from rene maroufi, with minor tweaks by me
30 lines
529 B
Makefile
30 lines
529 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/04/02 11:41:20 jasper Exp $
|
|
#
|
|
|
|
COMMENT = execute jobs in parallel
|
|
|
|
DISTNAME = xjobs-20100311
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = http://www.maier-komor.de/xjobs.html
|
|
|
|
MAINTAINER = Rene Maroufi <info@maroufi.net>
|
|
|
|
# License GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c m
|
|
|
|
MASTER_SITES = http://www.maier-komor.de/xjobs/
|
|
EXTRACT_SUFX = .tgz
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|