mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
35 lines
690 B
Makefile
35 lines
690 B
Makefile
# New ports collection makefile for: pgplot
|
|
# Date created: 21 December 1996
|
|
# Whom: jmz
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pgplot
|
|
PORTVERSION= 5.2.2
|
|
PORTREVISION= 6
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ftp://ftp.astro.caltech.edu/pub/pgplot/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:R}
|
|
|
|
MAINTAINER= jmz@FreeBSD.org
|
|
COMMENT= A C/FORTRAN library for drawing graphs on a variety of display devices
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
|
|
|
USE_PERL5_BUILD=yes
|
|
USE_LDCONFIG= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
USE_XORG= x11 xproto xt
|
|
USE_FORTRAN= yes
|
|
|
|
post-install:
|
|
.for f in libcpgplot.so libpgplot.so
|
|
${LN} -sf $f.5 ${PREFIX}/lib/$f
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|