diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
commit | 96bc8048c3217bb231f2f30eadeb628134b557f5 (patch) | |
tree | c75d5bd5a6faba5d6ec73da367e4bfe5b0d4285d /math/eispack | |
parent | 637c4e8f19438274164c0673ec85af739aba205b (diff) | |
download | ports-96bc8048c3217bb231f2f30eadeb628134b557f5.tar.gz ports-96bc8048c3217bb231f2f30eadeb628134b557f5.zip |
Notes
Diffstat (limited to 'math/eispack')
-rw-r--r-- | math/eispack/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/math/eispack/Makefile b/math/eispack/Makefile index a74a17eff0f7..b2f5d92c0ae2 100644 --- a/math/eispack/Makefile +++ b/math/eispack/Makefile @@ -3,7 +3,7 @@ # Date created: 31 October 1994 # Whom: ljo # -# $Id: Makefile,v 1.16 1998/09/28 10:49:21 asami Exp $ +# $Id: Makefile,v 1.17 1998/11/07 18:31:13 fenner Exp $ # DISTNAME= eispack @@ -36,6 +36,8 @@ SRCS = csroot.f epslon.f pythag.f bakvec.f balanc.f balbak.f bandr.f \ DISTFILES= ${SRCS:.f=.f.gz} +.include <bsd.port.pre.mk> + pre-build: cp Makefile.lib ${WRKDIR}/Makefile @@ -44,8 +46,8 @@ pre-extract: post-install: ${LDCONFIG} -m ${PREFIX}/lib - if [ "${PORTOBJFORMAT}" = "aout" ]; then \ - ${LN} -sf libeispack.so.1.0 ${PREFIX}/lib/libeispack.so; \ - fi +.if ${PORTOBJFORMAT} == "aout" + ${LN} -sf libeispack.so.1.0 ${PREFIX}/lib/libeispack.so +.endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |