summaryrefslogtreecommitdiff
path: root/math/metis
diff options
context:
space:
mode:
authorMatthew Hunt <mph@FreeBSD.org>1998-04-26 03:55:22 +0000
committerMatthew Hunt <mph@FreeBSD.org>1998-04-26 03:55:22 +0000
commitaa396234bd3e51fb0b598e70a6df81ae04e2a7d6 (patch)
treebe1890938e49233866874dcfdc63c6d4d42ecbae /math/metis
parentActivate eval. (diff)
Import of METIS, a package for unstructured graph partitioning.
At least, that's what the COMMENT says it does... PR: 4920 Submitted by: Pedro Giffuni <giffunip@asme.org>
Notes
Notes: svn path=/head/; revision=10682
Diffstat (limited to 'math/metis')
-rw-r--r--math/metis/Makefile33
-rw-r--r--math/metis/distinfo1
-rw-r--r--math/metis/files/patch-aa27
-rw-r--r--math/metis/files/patch-ab20
-rw-r--r--math/metis/files/patch-ac11
-rw-r--r--math/metis/files/patch-ad11
-rw-r--r--math/metis/pkg-comment1
-rw-r--r--math/metis/pkg-descr7
-rw-r--r--math/metis/pkg-plist11
9 files changed, 122 insertions, 0 deletions
diff --git a/math/metis/Makefile b/math/metis/Makefile
new file mode 100644
index 000000000000..b8c9952acce0
--- /dev/null
+++ b/math/metis/Makefile
@@ -0,0 +1,33 @@
+# New ports collection makefile for: METIS
+# Version required: 3.0
+# Date created: 26 Oct 97
+# Whom: Pedro Giffuni <giffunip@asme.org>
+#
+# $Id$
+#
+
+DISTNAME= metis-3.0
+CATEGORIES= math
+MASTER_SITES= http://www.cs.umn.edu/~karypis/metis/metis/files/
+
+MAINTAINER= giffunip@asme.org
+
+ALL_TARGET=
+
+do-install:
+ $(INSTALL_PROGRAM) $(WRKSRC)/pmetis $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/kmetis $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/oemetis $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/onmetis $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/partnmesh $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/partdmesh $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/mesh2nodal $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/mesh2dual $(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(WRKSRC)/graphchk $(PREFIX)/bin
+ $(INSTALL_DATA) $(WRKSRC)/libmetis.a $(PREFIX)/lib
+.if !defined(NOPORTDOCS)
+ ${MKDIR} $(PREFIX)/share/doc/METIS
+ $(INSTALL_DATA) ${WRKSRC}/Doc/manual.ps $(PREFIX)/share/doc/METIS
+.endif
+
+.include <bsd.port.mk>
diff --git a/math/metis/distinfo b/math/metis/distinfo
new file mode 100644
index 000000000000..53594c543e3b
--- /dev/null
+++ b/math/metis/distinfo
@@ -0,0 +1 @@
+MD5 (metis-3.0.tar.gz) = f547a7e503f497de29e1e54c1c13e91e
diff --git a/math/metis/files/patch-aa b/math/metis/files/patch-aa
new file mode 100644
index 000000000000..702a963c2189
--- /dev/null
+++ b/math/metis/files/patch-aa
@@ -0,0 +1,27 @@
+--- Makefile.in.orig Sat Apr 25 23:41:58 1998
++++ Makefile.in Sat Apr 25 23:43:23 1998
+@@ -1,9 +1,9 @@
+
+ # Which compiler to use
+-CC = cc
++# CC = cc
+
+ # What optimization level to use
+-OPTFLAGS = -O2
++# OPTFLAGS = -O2
+
+ # What options to be used by the compiler
+ COPTIONS =
+@@ -12,10 +12,10 @@
+ LDOPTIONS =
+
+ # What archiving to use
+-AR = ar rv
++# AR = ar rv
+
+ # What to use for indexing the archive
+-RANLIB = ranlib
++# RANLIB = ranlib
+ # RANLIB = ar -ts
+ # RANLIB =
+
diff --git a/math/metis/files/patch-ab b/math/metis/files/patch-ab
new file mode 100644
index 000000000000..659723570fd9
--- /dev/null
+++ b/math/metis/files/patch-ab
@@ -0,0 +1,20 @@
+--- Lib/Makefile.orig Sat Apr 25 23:43:54 1998
++++ Lib/Makefile Sat Apr 25 23:44:31 1998
+@@ -2,7 +2,7 @@
+
+ INCLUDES = -I./
+
+-CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
++CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
+ LD = $(CC) -L./
+
+
+@@ -17,7 +17,7 @@
+ $(CC) $(CFLAGS) -c $*.c
+
+ ../libmetis.a: $(OBJS)
+- $(AR) $@ $(OBJS)
++ $(AR) $(ARFLAGS) $@ $(OBJS)
+ $(RANLIB) $@
+
+ checkin:
diff --git a/math/metis/files/patch-ac b/math/metis/files/patch-ac
new file mode 100644
index 000000000000..dca2c7789b18
--- /dev/null
+++ b/math/metis/files/patch-ac
@@ -0,0 +1,11 @@
+--- Programs/Makefile.orig Sat Apr 25 23:44:50 1998
++++ Programs/Makefile Sat Apr 25 23:46:35 1998
+@@ -3,7 +3,7 @@
+ BINDIR = ..
+
+ INCLUDES = -I../Lib
+-CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
++CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
+
+ LIBS = -lmetis -lm
+ LD = $(CC) $(LDOPTIONS) -L./ -L../
diff --git a/math/metis/files/patch-ad b/math/metis/files/patch-ad
new file mode 100644
index 000000000000..05210eefcaff
--- /dev/null
+++ b/math/metis/files/patch-ad
@@ -0,0 +1,11 @@
+--- Test/Makefile.orig Sat Apr 25 23:46:45 1998
++++ Test/Makefile Sat Apr 25 23:46:53 1998
+@@ -3,7 +3,7 @@
+ BINDIR = ./
+
+ INCLUDES = -I../Lib
+-CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
++CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
+
+ LIBS = -lmetis -lm
+ LD = $(CC) $(LDOPTIONS) -L../
diff --git a/math/metis/pkg-comment b/math/metis/pkg-comment
new file mode 100644
index 000000000000..d15494ded1d5
--- /dev/null
+++ b/math/metis/pkg-comment
@@ -0,0 +1 @@
+A package for unstructured graph partitioning.
diff --git a/math/metis/pkg-descr b/math/metis/pkg-descr
new file mode 100644
index 000000000000..0c570b98c828
--- /dev/null
+++ b/math/metis/pkg-descr
@@ -0,0 +1,7 @@
+METIS is a set of programs for partitioning graphs and for producing fill
+reducing orderings for sparse matrices. The algorithms implemented by METIS
+are based on the multilevel graph partitioning scheme described in [KK95a]
+and [KK95e].
+
+METIS provides high quality partitions, is extremely fast, and produces
+low fill orderings.
diff --git a/math/metis/pkg-plist b/math/metis/pkg-plist
new file mode 100644
index 000000000000..f564e8a1d76e
--- /dev/null
+++ b/math/metis/pkg-plist
@@ -0,0 +1,11 @@
+bin/pmetis
+bin/kmetis
+bin/oemetis
+bin/onmetis
+bin/partnmesh
+bin/partdmesh
+bin/mesh2nodal
+bin/mesh2dual
+bin/graphchk
+lib/libmetis.a
+share/doc/METIS/manual.ps