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/simpack | |
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/simpack')
-rw-r--r-- | math/simpack/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/math/simpack/Makefile b/math/simpack/Makefile index 9a0b9f30ee78..96f0e882adaa 100644 --- a/math/simpack/Makefile +++ b/math/simpack/Makefile @@ -3,7 +3,7 @@ # Date created: 5 June 1997 # Whom: Ruslan Shevchenko <rssh@cki.ipri.kiev.ua> # -# $Id: Makefile,v 1.2 1997/07/13 18:49:24 max Exp $ +# $Id: Makefile,v 1.3 1998/09/27 20:13:13 steve Exp $ # DISTNAME= simpack-3.0 @@ -15,6 +15,14 @@ MAINTAINER= rssh@cki.ipri.kiev.ua WRKSRC= ${WRKDIR}/simpack +.include <bsd.port.pre.mk> + +.if ${PORTOBJFORMAT} == "elf" +VERSION= 1 +.else +VERSION= 1.0 +.endif + post-build: create-libs create-scripts do-install: do-install-bin do-install-include do-install-lib do-install-doc @@ -131,10 +139,4 @@ create-deq-alias: @${ECHO} ${PREFIX}/lib/SimPack/constraint/differential/deq $$* \ >> ${WRKDIR}/temp/deq.alias -.include <bsd.port.mk> - -.if ${PORTOBJFORMAT} == "elf" -VERSION= 1 -.else -VERSION= 1.0 -.endif +.include <bsd.port.post.mk> |