mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
35 lines
828 B
Makefile
35 lines
828 B
Makefile
# New ports collection makefile for: p5-Parallel-ForkManager
|
|
# Date created: October 26th 2002
|
|
# Whom: Nicolas Jombart <Nicolas.Jombart@hsc-labs.com>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Parallel-ForkManager
|
|
PORTVERSION= 0.7.4
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= http://hacks.dlux.hu/Parallel-ForkManager/download/
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= david@bushong.net
|
|
COMMENT= A simple parallel processing fork manager
|
|
|
|
PERL_CONFIGURE= YES
|
|
|
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
|
MAN3= Parallel::ForkManager.3
|
|
|
|
EXAMPLES= samples/*
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/ForkManager ${WRKSRC}/samples
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/examples/perl5/${PORTNAME}
|
|
.for f in ${EXAMPLES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/examples/perl5/${PORTNAME}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|