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/bihar | |
parent | 637c4e8f19438274164c0673ec85af739aba205b (diff) | |
download | ports-96bc8048c3217bb231f2f30eadeb628134b557f5.tar.gz ports-96bc8048c3217bb231f2f30eadeb628134b557f5.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.
Notes
Notes:
svn path=/head/; revision=14512
Diffstat (limited to 'math/bihar')
-rw-r--r-- | math/bihar/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/math/bihar/Makefile b/math/bihar/Makefile index f96ae79d5ccf..6fa72e4a63bf 100644 --- a/math/bihar/Makefile +++ b/math/bihar/Makefile @@ -3,7 +3,7 @@ # Date created: 31 October 1996 # Whom: Pedro Giffuni S. # -# $Id: Makefile,v 1.6 1997/11/19 01:41:27 asami Exp $ +# $Id: Makefile,v 1.7 1998/10/09 03:36:39 asami Exp $ # DISTNAME= bihar @@ -18,6 +18,8 @@ MAINTAINER= giffunip@asme.org IGNOREFILES= ${DISTFILES} EXTRACT_BEFORE_ARGS= -xf +.include <bsd.port.pre.mk> + post-extract: gunzip $(WRKSRC)/*.f.gz @@ -31,9 +33,9 @@ post-install: -${GZIP_CMD} ${GZIP} ${WRKSRC}/fft.doc ${CP} $(WRKSRC)/fft.doc.gz $(PREFIX)/share/doc/fftpack/ .endif - if [ "${PORTOBJFORMAT}" = "aout" ]; then \ - ${LN} -sf libbihar.so.1 ${PREFIX}/lib/libbihar.so; \ - fi +.if ${PORTOBJFORMAT} == "aout" + ${LN} -sf libbihar.so.1 ${PREFIX}/lib/libbihar.so +.endif ${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m ${PREFIX}/lib -.include <bsd.port.mk> +.include <bsd.port.post.mk> |