summaryrefslogtreecommitdiff
path: root/math/meschach
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2009-12-11 17:09:51 +0000
committerasau <asau@pkgsrc.org>2009-12-11 17:09:51 +0000
commitb50fe88f7391391048a63b2305fbc3ab302c2bc8 (patch)
tree461fae95dcd1aa7edca09e388430fdf95255aab7 /math/meschach
parent05d968a67afa262bf008f4bc820725fab7fcadec (diff)
downloadpkgsrc-b50fe88f7391391048a63b2305fbc3ab302c2bc8.tar.gz
This one uses BSD Make scripts.
Support staged installation.
Diffstat (limited to 'math/meschach')
-rw-r--r--math/meschach/Makefile17
1 files changed, 10 insertions, 7 deletions
diff --git a/math/meschach/Makefile b/math/meschach/Makefile
index fff2a496c2f..48d52a1a330 100644
--- a/math/meschach/Makefile
+++ b/math/meschach/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.15 2008/04/07 17:33:36 joerg Exp $
+# $NetBSD: Makefile,v 1.16 2009/12/11 17:09:51 asau Exp $
DISTNAME= mesch12b
PKGNAME= meschach-1.2b
@@ -9,10 +9,13 @@ MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.math.uiowa.edu/~dstewart/meschach/
COMMENT= Library of C Routines for Matrix Computations
+PKG_DESTDIR_SUPPORT= user-destdir
+
WRKSRC= ${WRKDIR}
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-all
MAKE_FILE= makefile
+USE_BSD_MAKEFILE= yes
INSTALLATION_DIRS= include/meschach lib share/meschach/tests
@@ -26,15 +29,15 @@ post-patch:
post-install:
cd ${WRKSRC} && ${INSTALL_DATA} err.h machine.h matlab.h \
matrix.h meminfo.h sparse.h zmatrix.h iter.h matrix2.h \
- oldnames.h sparse2.h zmatrix2.h ${PREFIX}/include/meschach/
+ oldnames.h sparse2.h zmatrix2.h ${DESTDIR}${PREFIX}/include/meschach/
cd ${WRKSRC} && ${INSTALL_DATA} torture.c sptort.c ztorture.c \
memtort.c itertort.c mfuntort.c iotort.c \
- ${PREFIX}/share/meschach/tests/
- ${INSTALL_DATA} ${WRKSRC}/Makefile ${PREFIX}/share/meschach/tests
+ ${DESTDIR}${PREFIX}/share/meschach/tests/
+ ${INSTALL_DATA} ${WRKSRC}/Makefile ${DESTDIR}${PREFIX}/share/meschach/tests
cd ${WRKSRC} && ${INSTALL_DATA} README ./DOC/* \
- ${PREFIX}/share/meschach/
- ${INSTALL_DATA} ${WRKSRC}/copyright ${PREFIX}/share/meschach
+ ${DESTDIR}${PREFIX}/share/meschach/
+ ${INSTALL_DATA} ${WRKSRC}/copyright ${DESTDIR}${PREFIX}/share/meschach
cd ${WRKSRC} && ${INSTALL_DATA} tutadv.c tutorial.c \
- ${PREFIX}/share/meschach/
+ ${DESTDIR}${PREFIX}/share/meschach/
.include "../../mk/bsd.pkg.mk"