aboutsummaryrefslogtreecommitdiff
path: root/math/metis4
diff options
context:
space:
mode:
Diffstat (limited to 'math/metis4')
-rw-r--r--math/metis4/Makefile55
-rw-r--r--math/metis4/distinfo3
-rw-r--r--math/metis4/files/patch-aa23
-rw-r--r--math/metis4/files/patch-ab19
-rw-r--r--math/metis4/files/patch-ac19
-rw-r--r--math/metis4/files/patch-ad19
-rw-r--r--math/metis4/pkg-descr9
-rw-r--r--math/metis4/pkg-plist21
8 files changed, 0 insertions, 168 deletions
diff --git a/math/metis4/Makefile b/math/metis4/Makefile
deleted file mode 100644
index 1c23bab9bb9b..000000000000
--- a/math/metis4/Makefile
+++ /dev/null
@@ -1,55 +0,0 @@
-# New ports collection makefile for: METIS
-# Date created: 26 Oct 97
-# Whom: Pedro Giffuni <giffunip@asme.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= metis
-PORTVERSION= 4.0
-PORTREVISION= 3
-CATEGORIES= math
-MASTER_SITES= http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/ \
- http://www-users.cs.umn.edu/~karypis/metis/metis/files/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A package for unstructured graph partitioning
-
-CONFLICTS= metis-edf-[0-9]*
-
-ALL_TARGET=
-USE_LDCONFIG= yes
-
-PROGRAMS= graphchk kmetis mesh2dual mesh2nodal \
- oemetis onmetis partnmesh partdmesh pmetis
-
-.include <bsd.port.pre.mk>
-.if ${ARCH} == "sparc64"
-PICFLAG?= -fPIC
-.else
-PICFLAG?= -fpic
-.endif
-
-post-patch:
- ${MKDIR} ${WRKSRC}_SHARED ; ${CP} -r ${WRKSRC}/* ${WRKSRC}_SHARED
-
-do-build:
- cd ${WRKSRC} ; ${MAKE}
- cd ${WRKSRC}_SHARED ; ${SETENV} CFLAGS="${CFLAGS} ${PICFLAG}" ${MAKE} ; ld -Bshareable -o libmetis.so.1 -x -soname libmetis.so.1 --whole-archive libmetis.a
-
-do-install:
-.for p in ${PROGRAMS}
- ${INSTALL_PROGRAM} ${WRKSRC}/${p} ${PREFIX}/bin
-.endfor
- @${MKDIR} ${PREFIX}/include/metis
- ${INSTALL_DATA} ${WRKSRC}/Lib/*.h ${PREFIX}/include/metis
- ${INSTALL_DATA} ${WRKSRC}/libmetis.a ${PREFIX}/lib
- ${INSTALL_DATA} ${WRKSRC}_SHARED/libmetis.so.1 ${PREFIX}/lib
- ${LN} -sf libmetis.so.1 ${PREFIX}/lib/libmetis.so
-
-.ifndef NOPORTDOCS
- @${MKDIR} ${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/Doc/manual.ps ${DOCSDIR}
-.endif
-
-.include <bsd.port.post.mk>
diff --git a/math/metis4/distinfo b/math/metis4/distinfo
deleted file mode 100644
index 87b9e93b7ed9..000000000000
--- a/math/metis4/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (metis-4.0.tar.gz) = 0aa546419ff7ef50bd86ce1ec7f727c7
-SHA256 (metis-4.0.tar.gz) = 60c792b3fd22684ef16e336d654466753365006b6f9932e031ded79a9b6bd352
-SIZE (metis-4.0.tar.gz) = 508601
diff --git a/math/metis4/files/patch-aa b/math/metis4/files/patch-aa
deleted file mode 100644
index ecee4b3c3833..000000000000
--- a/math/metis4/files/patch-aa
+++ /dev/null
@@ -1,23 +0,0 @@
-*** Makefile.in.orig Fri Oct 2 16:28:35 1998
---- Makefile.in Wed Jan 27 21:48:36 1999
-***************
-*** 1,9 ****
-
- # Which compiler to use
-! CC = cc
-
- # What optimization level to use
-! OPTFLAGS = -O2
-
- # What options to be used by the compiler
- COPTIONS =
---- 1,9 ----
-
- # Which compiler to use
-! CC ?= cc
-
- # What optimization level to use
-! OPTFLAGS += -O2
-
- # What options to be used by the compiler
- COPTIONS =
diff --git a/math/metis4/files/patch-ab b/math/metis4/files/patch-ab
deleted file mode 100644
index 133b607e0b18..000000000000
--- a/math/metis4/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-*** Lib/Makefile.orig Fri Oct 9 20:19:01 1998
---- Lib/Makefile Fri Oct 9 20:20:32 1998
-***************
-*** 2,8 ****
-
- INCLUDES = -I.
-
-! CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
- LD = $(CC) -L.
-
-
---- 2,8 ----
-
- INCLUDES = -I.
-
-! CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
- LD = $(CC) -L.
-
-
diff --git a/math/metis4/files/patch-ac b/math/metis4/files/patch-ac
deleted file mode 100644
index 1bb1f4662175..000000000000
--- a/math/metis4/files/patch-ac
+++ /dev/null
@@ -1,19 +0,0 @@
-*** Programs/Makefile.orig Fri Oct 9 20:21:48 1998
---- Programs/Makefile Fri Oct 9 20:22:16 1998
-***************
-*** 3,9 ****
- BINDIR = ..
-
- INCLUDES = -I../Lib
-! CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
-
- LIBS = -lmetis -lm
- LD = $(CC) $(LDOPTIONS) -L. -L..
---- 3,9 ----
- BINDIR = ..
-
- INCLUDES = -I../Lib
-! CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
-
- LIBS = -lmetis -lm
- LD = $(CC) $(LDOPTIONS) -L. -L..
diff --git a/math/metis4/files/patch-ad b/math/metis4/files/patch-ad
deleted file mode 100644
index 0e0032718205..000000000000
--- a/math/metis4/files/patch-ad
+++ /dev/null
@@ -1,19 +0,0 @@
-*** Test/Makefile.orig Fri Oct 9 20:23:24 1998
---- Test/Makefile Fri Oct 9 20:23:40 1998
-***************
-*** 3,9 ****
- BINDIR = ../Graphs
-
- INCLUDES = -I../Lib
-! CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
-
- LIBS = -lmetis -lm
- LD = $(CC) $(LDOPTIONS) -L. -L..
---- 3,9 ----
- BINDIR = ../Graphs
-
- INCLUDES = -I../Lib
-! CFLAGS += $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
-
- LIBS = -lmetis -lm
- LD = $(CC) $(LDOPTIONS) -L. -L..
diff --git a/math/metis4/pkg-descr b/math/metis4/pkg-descr
deleted file mode 100644
index 3268fab747bb..000000000000
--- a/math/metis4/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-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.
-
-WWW: http://www-users.cs.umn.edu/~karypis/metis/metis/
diff --git a/math/metis4/pkg-plist b/math/metis4/pkg-plist
deleted file mode 100644
index ebcb4534b1c8..000000000000
--- a/math/metis4/pkg-plist
+++ /dev/null
@@ -1,21 +0,0 @@
-bin/graphchk
-bin/kmetis
-bin/mesh2dual
-bin/mesh2nodal
-bin/oemetis
-bin/onmetis
-bin/partdmesh
-bin/partnmesh
-bin/pmetis
-lib/libmetis.a
-lib/libmetis.so
-lib/libmetis.so.1
-include/metis/defs.h
-include/metis/macros.h
-include/metis/metis.h
-include/metis/proto.h
-include/metis/rename.h
-include/metis/struct.h
-@dirrm include/metis
-%%PORTDOCS%%%%DOCSDIR%%/manual.ps
-%%PORTDOCS%%@dirrm %%DOCSDIR%%