598be3bb97
PR pkg/47783 by Litvinov Sergey. METIS 4.0.3, 3/19/11 ------------------------------------------------------------------------------ r9587 | karypis | 2011-03-19 12:22:36 -0500 (Sat, 19 Mar 2011) | 1 line - Renamed log2() to ilog2() to remove conflicts with C99 log2() function - Fixed I/O routines to eliminate compilation warnings - Fixed error reporting routines to eliminate compilation warnings METIS 4.0.2, 3/10/04 ------------------------------------------------------------------------------ - Fixed a problem with weighted graphs and ometis.c METIS 4.0.1, 11/29/98 ------------------------------------------------------------------------------ This is mostly a bug-fix release - Fixed some bugs in the multi-constraint partitioning routines - Fixed some bugs in the volume-minimization routines
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.13 2013/05/16 12:37:35 obache Exp $
|
|
|
|
DISTNAME= metis-4.0.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://glaros.dtc.umn.edu/gkhome/views/metis/
|
|
COMMENT= Unstructured graph partitioning and sparse matrix ordering system
|
|
|
|
BUILD_TARGET= default
|
|
INSTALLATION_DIRS= bin lib
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_PROGRAM} graphchk kmetis mesh2dual \
|
|
mesh2nodal oemetis onmetis partdmesh partnmesh pmetis \
|
|
${DESTDIR}${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/libmetis.a ${DESTDIR}${PREFIX}/lib
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/include/metis
|
|
${INSTALL_DATA} ${WRKSRC}/Lib/*.h \
|
|
${DESTDIR}${PREFIX}/include/metis/
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/metis
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/manual.ps \
|
|
${DESTDIR}${PREFIX}/share/doc/metis
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/metis
|
|
cd ${WRKSRC}/Graphs && ${INSTALL_DATA} 0README 4elt.graph \
|
|
metis.mesh test.mgraph \
|
|
${DESTDIR}${PREFIX}/share/examples/metis/
|
|
${INSTALL_DATA} ${WRKSRC}/Test/mtest.c \
|
|
${DESTDIR}${PREFIX}/share/examples/metis
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|