summaryrefslogtreecommitdiff
path: root/sysutils/mpiexec
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/mpiexec')
-rw-r--r--sysutils/mpiexec/Makefile28
-rw-r--r--sysutils/mpiexec/distinfo2
-rw-r--r--sysutils/mpiexec/files/patch-psm.c23
-rw-r--r--sysutils/mpiexec/pkg-descr6
4 files changed, 0 insertions, 59 deletions
diff --git a/sysutils/mpiexec/Makefile b/sysutils/mpiexec/Makefile
deleted file mode 100644
index 32e94f51341d..000000000000
--- a/sysutils/mpiexec/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Created by: Edward Tomasz Napierala <trasz@pin.if.uz.zgora.pl>
-# $FreeBSD$
-
-PORTNAME= mpiexec
-PORTVERSION= 0.84
-CATEGORIES= sysutils parallel
-MASTER_SITES= https://www.osc.edu/~djohnson/mpiexec/
-
-MAINTAINER= bofh@FreeBSD.org
-COMMENT= Tool to run a parallel job from within a PBS environment
-
-BROKEN= unfetchable
-DEPRECATED= Broken for more than 6 months
-EXPIRATION_DATE= 2020-05-05
-
-LICENSE= GPLv2
-
-CONFLICTS= mpich2-1.2.*
-
-LIB_DEPENDS= libtorque.so:sysutils/torque
-
-USES= gmake tar:tgz
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-default-comm=mpich2
-
-PLIST_FILES= bin/mpiexec man/man1/mpiexec.1.gz
-
-.include <bsd.port.mk>
diff --git a/sysutils/mpiexec/distinfo b/sysutils/mpiexec/distinfo
deleted file mode 100644
index 1c38a1ce879e..000000000000
--- a/sysutils/mpiexec/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (mpiexec-0.84.tgz) = 119619c035453718dc98c2eb72799ad1fa9a8a240336bc0481d2063cb5a88fc3
-SIZE (mpiexec-0.84.tgz) = 229323
diff --git a/sysutils/mpiexec/files/patch-psm.c b/sysutils/mpiexec/files/patch-psm.c
deleted file mode 100644
index 22b152967860..000000000000
--- a/sysutils/mpiexec/files/patch-psm.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- psm.c.orig 2012-03-12 02:52:24.120253238 +0600
-+++ psm.c 2012-03-12 02:53:17.264235224 +0600
-@@ -209,8 +209,7 @@
- #include <netdb.h>
- #include <sys/socket.h>
- #include <sys/time.h>
--#include <endian.h>
--#include <byteswap.h>
-+#include <sys/endian.h>
- #include "mpiexec.h"
-
- #ifdef HAVE_POLL
-@@ -221,8 +220,8 @@
- # define ntohu64(x) (x)
- # define htonu64(x) (x)
- #elif __BYTE_ORDER == __LITTLE_ENDIAN
--# define ntohu64(x) __bswap_64(x)
--# define htonu64(x) __bswap_64(x)
-+# define ntohu64(x) bswap64(x)
-+# define htonu64(x) bswap64(x)
- #endif
-
- #define EPID_INFO_GLOBAL 2
diff --git a/sysutils/mpiexec/pkg-descr b/sysutils/mpiexec/pkg-descr
deleted file mode 100644
index b7392885b70c..000000000000
--- a/sysutils/mpiexec/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-Mpiexec is a replacement program for the script mpirun, which is part of the
-MPICH package. It is used to initialize a parallel job from within a PBS
-batch or interactive environment. Mpiexec uses the task manager library of
-PBS to spawn copies of the executable on the nodes in a PBS allocation.
-
-WWW: https://www.osc.edu/~djohnson/mpiexec/