blob: c9bf6ba6a5cdbe2f2a6fdc95ace6f29f0708aaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# New ports collection makefile for: pgperl
# Version required: 2.06
# Date created: 22 December 1996
# Whom: jmz
#
# $FreeBSD$
#
DISTNAME= PGPLOT-2.08
PKGNAME= pgperl-2.08
CATEGORIES= graphics perl5
MASTER_SITES= ftp://ftp.ast.cam.ac.uk/pgperl/
MAINTAINER= jmz@FreeBSD.org
LIB_DEPENDS= pgplot.5:${PORTSDIR}/graphics/pgplot
USE_PERL5= yes
ALL_TARGET= dynamic
SCRIPTS_ENV= PERL=${PERL}
.include <bsd.port.pre.mk>
MAN3= ExtUtils::F77.3 PGPLOT.3
MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
.if ${OSVERSION} >= 400005
F2CLIB= -lg2c
.else
F2CLIB= -lf2c
.endif
post-patch:
(cd ${WRKSRC}/ExtUtils; mv -f F77.pm F77.pm~; ${SED} -e \
's/@F2CLIB@/${F2CLIB}/g' F77.pm~ > F77.pm)
post-install:
@${MKDIR} ${PREFIX}/share/doc/pgperl
@(cd ${WRKSRC}; ${INSTALL_DATA} LICENSE test* \
${PREFIX}/share/doc/pgperl)
.include <bsd.port.post.mk>
|