This commit is contained in:
Jean-Marc Zucconi 1998-12-05 03:05:33 +00:00
parent 4f37d30889
commit d23638e568
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=15114
4 changed files with 32 additions and 16 deletions

View File

@ -3,7 +3,7 @@
# Date created: 22 December 1996
# Whom: jmz
#
# $Id: Makefile,v 1.11 1998/10/12 03:21:40 jseger Exp $
# $Id: Makefile,v 1.12 1998/11/11 05:37:20 asami Exp $
#
DISTNAME= PGPLOT-2.08
@ -17,19 +17,13 @@ LIB_DEPENDS= pgplot.5:${PORTSDIR}/graphics/pgplot
USE_PERL5= yes
ALL_TARGET= dynamic
SCRIPTS_ENV= PERL=${PERL}
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 300000
BROKEN= depends on pgplot
.endif
MAN3= ExtUtils::F77.3 PGPLOT.3
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
do-configure:
@cd ${WRKSRC} && ${PERL5} Makefile.PL
post-install:
@${MKDIR} ${PREFIX}/share/doc/pgperl
@(cd ${WRKSRC}; ${INSTALL_DATA} LICENSE test* \

14
graphics/p5-PGPLOT/scripts/configure vendored Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
cd $WRKSRC || exit 1
sed -e s:/usr/local/pgplot:$PREFIX/lib: \
-e s:/home/aaossm/kgb/soft/pgplot/bld:$PREFIX/include: <Makefile.PL \
>Makefile.PL.new
for f in test*.p*; do
mv $f old_$f
sed -e s:/usr/local/bin/perl:$PERL: < old_$f >$f
done
$PERL Makefile.PL.new

View File

@ -3,7 +3,7 @@
# Date created: 22 December 1996
# Whom: jmz
#
# $Id: Makefile,v 1.11 1998/10/12 03:21:40 jseger Exp $
# $Id: Makefile,v 1.12 1998/11/11 05:37:20 asami Exp $
#
DISTNAME= PGPLOT-2.08
@ -17,19 +17,13 @@ LIB_DEPENDS= pgplot.5:${PORTSDIR}/graphics/pgplot
USE_PERL5= yes
ALL_TARGET= dynamic
SCRIPTS_ENV= PERL=${PERL}
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 300000
BROKEN= depends on pgplot
.endif
MAN3= ExtUtils::F77.3 PGPLOT.3
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
do-configure:
@cd ${WRKSRC} && ${PERL5} Makefile.PL
post-install:
@${MKDIR} ${PREFIX}/share/doc/pgperl
@(cd ${WRKSRC}; ${INSTALL_DATA} LICENSE test* \

14
graphics/pgperl/scripts/configure vendored Normal file
View File

@ -0,0 +1,14 @@
#!/bin/sh
cd $WRKSRC || exit 1
sed -e s:/usr/local/pgplot:$PREFIX/lib: \
-e s:/home/aaossm/kgb/soft/pgplot/bld:$PREFIX/include: <Makefile.PL \
>Makefile.PL.new
for f in test*.p*; do
mv $f old_$f
sed -e s:/usr/local/bin/perl:$PERL: < old_$f >$f
done
$PERL Makefile.PL.new