diff options
author | asami <asami@FreeBSD.org> | 1998-11-14 17:43:39 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-14 17:43:39 +0800 |
commit | 521807d38becba50804a00710cfa1b51c759a4f4 (patch) | |
tree | 26cfeb8a991d32014f9a30277d2ade973f1a937f /math/linpack | |
parent | f4c70db8f8fed4684d8013755f0d23c5da34733e (diff) | |
download | freebsd-ports-gnome-521807d38becba50804a00710cfa1b51c759a4f4.tar.gz freebsd-ports-gnome-521807d38becba50804a00710cfa1b51c759a4f4.tar.zst freebsd-ports-gnome-521807d38becba50804a00710cfa1b51c759a4f4.zip |
Use bsd.port.{pre,post}.mk to move PORTOBJFORMAT to front, or change
shell loops to make loops. Use EXTRA_PKG_FLAGS to add install scripts
instead of adding it to PKG_FLAGS after bsd.port.mk.
Diffstat (limited to 'math/linpack')
-rw-r--r-- | math/linpack/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/math/linpack/Makefile b/math/linpack/Makefile index 65a107ee54d0..6796f7f1d877 100644 --- a/math/linpack/Makefile +++ b/math/linpack/Makefile @@ -3,7 +3,7 @@ # Date created: 31 October 1994 # Whom: ljo # -# $Id: Makefile,v 1.15 1998/09/27 05:39:37 steve Exp $ +# $Id: Makefile,v 1.16 1998/09/28 10:49:17 asami Exp $ # DISTNAME= linpack @@ -49,6 +49,8 @@ SRCS = cchdc.f cchdd.f cchex.f cchud.f cgbco.f cgbdi.f cgbfa.f cgbsl.f \ DISTFILES= ${SRCS:.f=.f.gz} +.include <bsd.port.pre.mk> + pre-build: cp Makefile.lib ${WRKDIR}/Makefile @@ -57,8 +59,8 @@ pre-extract: post-install: ${LDCONFIG} -m ${PREFIX}/lib - if [ "${PORTOBJFORMAT}" = "aout" ]; then \ - ${LN} -sf liblinpack.so.1.0 ${PREFIX}/lib/liblinpack.so; \ - fi +.if ${PORTOBJFORMAT} == "aout" + ${LN} -sf liblinpack.so.1.0 ${PREFIX}/lib/liblinpack.so +.endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |