f74737a2ba
Changes: http://savannah.gnu.org/forum/forum.php?forum_id=6852 PR: ports/158189 Submitted by: Jin-Sih Lin <linpct@gmail.com> Approved by: Chris Howey <howeyc@gmail.com> (maintainer)
35 lines
866 B
Makefile
35 lines
866 B
Makefile
# New ports collection makefile for: parallel
|
|
# Date created: 22 September 2010
|
|
# Whom: Chris Howey <howeyc@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= parallel
|
|
PORTVERSION= 20110622
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= howeyc@gmail.com
|
|
COMMENT= GNU parallel is a shell tool for executing jobs in parallel
|
|
|
|
LICENSE= GPLv3
|
|
|
|
CONFLICTS= moreutils-parallel-[0-9]*
|
|
|
|
CONFIGURE_ARGS= --docdir="${DOCSDIR}"
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
USE_PERL5= yes
|
|
|
|
MAN1= parallel.1 sem.1 sql.1 niceload.1
|
|
PLIST_FILES= bin/parallel bin/sem bin/sql bin/niceload
|
|
PORTDOCS= parallel.html sem.html sql.html niceload.html
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '1 s|/usr/bin/perl|${PERL}|' ${WRKSRC}/src/parallel
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e '/^install-data-am:/ s|install-docDATA||' ${WRKSRC}/src/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|