7cb3294da7
bump PORTREVISION
87 lines
2.7 KiB
Makefile
87 lines
2.7 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: PDL
|
|
# Date created: 08 February 1999
|
|
# Whom: Anton Berezin <tobez@plab.ku.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= PDL
|
|
PORTVERSION= 2.4.4
|
|
PORTREVISION= 2
|
|
CATEGORIES= math perl5
|
|
MASTER_SITES= CPAN/${PORTNAME}:cpan \
|
|
SF/pdl/PDL/${PORTVERSION}:sf
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:cpan,sf
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl Data Language
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/PGPLOT.pm:${PORTSDIR}/graphics/pgperl \
|
|
${SITE_PERL}/ExtUtils/F77.pm:${PORTSDIR}/lang/p5-F77 \
|
|
${SITE_PERL}/Inline.pm:${PORTSDIR}/devel/p5-Inline \
|
|
${SITE_PERL}/${PERL_ARCH}/Filter/Util/Call.pm:${PORTSDIR}/devel/p5-Filter \
|
|
${SITE_PERL}/Astro/FITS/Header.pm:${PORTSDIR}/astro/p5-Astro-FITS-Header \
|
|
${SITE_PERL}/${PERL_ARCH}/PGPLOT.pm:${PORTSDIR}/graphics/pgperl \
|
|
${SITE_PERL}/Term/ReadLine/readline.pm:${PORTSDIR}/devel/p5-ReadLine-Perl
|
|
LIB_DEPENDS= plplotd.11:${PORTSDIR}/math/plplot \
|
|
fftw.2:${PORTSDIR}/math/fftw \
|
|
gsl.14:${PORTSDIR}/math/gsl
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
USE_GL= yes
|
|
PERL_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
MAKE_ENV+= PERL5LIB=${WRKSRC}/blib/lib
|
|
PLIST_DIRS= ${SITE_PERL_REL}/${PERL_ARCH}/Inline
|
|
PLIST_FILES= bin/pdl bin/pdldoc bin/perldl bin/pptemplate \
|
|
${SITE_PERL_REL}/${PERL_ARCH}/Inline/Pdlpp.pm \
|
|
${SITE_PERL_REL}/${PERL_ARCH}/Inline/MakePdlppInstallable.pm
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.if defined(KITCHEN_SINK)
|
|
RUN_DEPENDS+= ppmtogif:${PORTSDIR}/graphics/netpbm \
|
|
mpeg_encode:${PORTSDIR}/multimedia/mpeg_encode \
|
|
saoimage:${PORTSDIR}/astro/saoimage
|
|
.endif
|
|
|
|
.SILENT:
|
|
|
|
.if !defined(KITCHEN_SINK)
|
|
pre-extract:
|
|
${ECHO} "You can build additional functionality into PDL by defining KITCHEN_SINK"
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "alpha"
|
|
BROKEN= test script t/flexraw.t fails all 26 tests
|
|
.endif
|
|
|
|
post-patch:
|
|
@${GREP} -lR "/usr/local/bin/perl" ${WRKSRC} | ${XARGS} \
|
|
${PERL} -pi -e "s!/usr/local/bin/perl!${PERL}!"
|
|
@${GREP} -lR "x86_64" ${WRKSRC} | ${XARGS} \
|
|
${PERL} -pi -e "s!x86_64!amd64!"
|
|
|
|
test:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} make test
|
|
|
|
# autogen plist
|
|
post-install:
|
|
@(cd ${WRKSRC}/blib/man3 ; \
|
|
${FIND} *.3 | ${SED} "s,^,${MAN3PREFIX:S,^${PREFIX}/,,}/man/man3/," \
|
|
>> ${TMPPLIST} ; \
|
|
cd ${WRKSRC}/blib/man1 ; \
|
|
${FIND} *.1 | ${SED} "s,^,man/man1/," >> ${TMPPLIST})
|
|
@(${FIND} ${SITE_PERL}/${PERL_ARCH}/PDL* -type f | \
|
|
${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} ; \
|
|
${FIND} ${SITE_PERL}/${PERL_ARCH}/PDL* -type d | ${SORT} -r | \
|
|
${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST} ; \
|
|
${FIND} ${SITE_PERL}/${PERL_ARCH}/auto/PDL -type f | \
|
|
${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} ; \
|
|
${FIND} ${SITE_PERL}/${PERL_ARCH}/auto/PDL -type d | ${SORT} -r | \
|
|
${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST})
|
|
|
|
.include <bsd.port.post.mk>
|