summaryrefslogtreecommitdiff
path: root/graphics/pgplot/Makefile
blob: a9853fe16686743b631f3e09af6338906ce36e28 (plain) (blame)
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
# New ports collection makefile for:	pgplot
# Date created:		21 December 1996
# Whom:			jmz
#
# $FreeBSD$
#

PORTNAME=       pgplot
PORTVERSION=	5.2
CATEGORIES=     graphics
MASTER_SITES=   ftp://ftp.astro.caltech.edu/pub/pgplot/
DISTNAME=       ${PORTNAME}${PORTVERSION}

MAINTAINER=	jmz@FreeBSD.org

USE_XLIB=	yes
INSTALLS_SHLIB=	yes
WRKSRC=		${WRKDIR}/pgplot

.include <bsd.port.pre.mk>

.if ${PORTOBJFORMAT} == "elf"
VERSION=	5
.else
VERSION=	5.2
.endif

.if ${OSVERSION} < 400004
FC=	./xf77
.else
FC=	f77
.endif

MAKE_ENV+=	FC=${FC}

post-install:
.for f in libcpgplot.so libpgplot.so
	${LN} -sf $f.${VERSION} ${PREFIX}/lib/$f
.endfor

.include <bsd.port.post.mk>