diff options
author | pav <pav@FreeBSD.org> | 2007-01-30 10:25:34 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-01-30 10:25:34 +0000 |
commit | 68e4663f01d748743e0029f83931c02fba58eb4e (patch) | |
tree | d24dbe32e4bdb87d0f3ba1c46717e6e34576e724 /graphics/pgplot/Makefile | |
parent | c6c1440c2b66077bedba90612a4827a8051ec9c1 (diff) | |
download | FreeBSD-ports-68e4663f01d748743e0029f83931c02fba58eb4e.zip FreeBSD-ports-68e4663f01d748743e0029f83931c02fba58eb4e.tar.gz |
- Remove support for a.out format and PORTOBJFORMAT variable from individual
ports
With hat: portmgr
Diffstat (limited to 'graphics/pgplot/Makefile')
-rw-r--r-- | graphics/pgplot/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/graphics/pgplot/Makefile b/graphics/pgplot/Makefile index 6d09ef4..b46d041 100644 --- a/graphics/pgplot/Makefile +++ b/graphics/pgplot/Makefile @@ -16,6 +16,7 @@ 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_XLIB= yes USE_PERL5_BUILD=yes USE_LDCONFIG= yes @@ -23,14 +24,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME} .include <bsd.port.pre.mk> -.if ${PORTOBJFORMAT} == "elf" -VERSION= 5 -.else -VERSION= 5.2 -.endif - WANT_FORTRAN= yes #dummy but future use -BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 +BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 FC= gfortran42 F77= gfortran42 MAKE_ENV+= FC="${FC}" F77="${F77}" FFLAGS="${FFLAGS}" @@ -38,7 +33,7 @@ MAKE_ARGS+= X11BASE="${X11BASE}" post-install: .for f in libcpgplot.so libpgplot.so - ${LN} -sf $f.${VERSION} ${PREFIX}/lib/$f + ${LN} -sf $f.5 ${PREFIX}/lib/$f .endfor .include <bsd.port.post.mk> |