summaryrefslogtreecommitdiff
path: root/graphics/dataplot
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2017-06-25 00:29:09 +0000
committerMark Linimon <linimon@FreeBSD.org>2017-06-25 00:29:09 +0000
commit45cb752a04894d48090981be1a7d2f549f2b684f (patch)
treeec081b06d4ac1171d90c17f7c227c9b2007dc591 /graphics/dataplot
parentAlphabetize ARCHs. Should have no effect on compilation. (diff)
Begin deorbit burn of ia64. We have not attempted to build packages for
it for many years. While here, alphabetize ARCHs, pet portlint, and modernize usages. Approved by: portmgr (tier-2 blanket)
Notes
Notes: svn path=/head/; revision=444251
Diffstat (limited to 'graphics/dataplot')
-rw-r--r--graphics/dataplot/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/dataplot/Makefile b/graphics/dataplot/Makefile
index ae56d5b493cd..d75748f5be65 100644
--- a/graphics/dataplot/Makefile
+++ b/graphics/dataplot/Makefile
@@ -29,14 +29,14 @@ MAXOBV?= 400000 # Change if you need more observations/variable
.include <bsd.port.options.mk>
-.if ((${ARCH}=="amd64") || (${ARCH}=="sparc64") || (${ARCH}=="ia64"))
+.if ${ARCH} == amd64 || ${ARCH} == sparc64
FFLAGS+= -DDD -DI32 -fdefault-real-8 -fdefault-double-8
.else
FFLAGS+= -DSD -DI32 -fdefault-real-8 -fdefault-double-8
.endif
post-extract:
- @${INSTALL_DATA} ${FILESDIR}/Makefile.tmpl ${WRKSRC}/Makefile
+ ${INSTALL_DATA} ${FILESDIR}/Makefile.tmpl ${WRKSRC}/Makefile
@${REINPLACE_CMD} \
-e 's;%%CFLAGS%%;${CFLAGS};' \
-e 's;%%FFLAGS%%;${FFLAGS};' \