summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2003-02-09 05:23:39 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2003-02-09 05:23:39 +0000
commit662172892bc66b753d1ebe41ca938019a0cf5bf6 (patch)
tree03606392bdb313767d5145061a090b153d9a9a8d /misc
parentre-add gambit 0.97.0.3 (diff)
gambit is better in math/
Notes
Notes: svn path=/head/; revision=75162
Diffstat (limited to 'misc')
-rw-r--r--misc/Makefile1
-rw-r--r--misc/gambit/Makefile28
-rw-r--r--misc/gambit/distinfo1
-rw-r--r--misc/gambit/files/patch-gcmdline.cc18
-rw-r--r--misc/gambit/files/patch-gnulib.cc11
-rw-r--r--misc/gambit/files/patch-gnulib.h24
-rw-r--r--misc/gambit/pkg-comment1
-rw-r--r--misc/gambit/pkg-descr13
-rw-r--r--misc/gambit/pkg-plist3
9 files changed, 0 insertions, 100 deletions
diff --git a/misc/Makefile b/misc/Makefile
index a96119de3eb8..0c86d762150c 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -81,7 +81,6 @@
SUBDIR += fortuneit
SUBDIR += freedialog
SUBDIR += ftree
- SUBDIR += gambit
SUBDIR += gctpc
SUBDIR += geekcode
SUBDIR += git
diff --git a/misc/gambit/Makefile b/misc/gambit/Makefile
deleted file mode 100644
index c31066660994..000000000000
--- a/misc/gambit/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# ex:ts=8
-# Ports collection makefile for: gambit
-# Date created: Feb 8, 2003
-# Whom: ijliao
-#
-# $FreeBSD$
-#
-
-PORTNAME= gambit
-PORTVERSION= 0.97.0.3
-CATEGORIES= misc
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= ${PORTNAME}
-
-MAINTAINER= ports@FreeBSD.org
-
-LIB_DEPENDS= wx_gtk.2:${PORTSDIR}/x11-toolkits/wxgtk-devel
-
-USE_REINPLACE= yes
-GNU_CONFIGURE= yes
-
-post-patch:
- @${GREP} -lR "values\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
- -e "s|values\.h|limits.h|"
- @${GREP} -lR "malloc\.h" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \
- -e "s|malloc\.h|stdlib.h|"
-
-.include <bsd.port.mk>
diff --git a/misc/gambit/distinfo b/misc/gambit/distinfo
deleted file mode 100644
index 62e40002072c..000000000000
--- a/misc/gambit/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gambit-0.97.0.3.tar.gz) = ec6db5a877c69fe9a7ad7379250c20ff
diff --git a/misc/gambit/files/patch-gcmdline.cc b/misc/gambit/files/patch-gcmdline.cc
deleted file mode 100644
index fa99b6de3aee..000000000000
--- a/misc/gambit/files/patch-gcmdline.cc
+++ /dev/null
@@ -1,18 +0,0 @@
---- sources/gcl/gcmdline.cc.orig Sun Feb 9 02:23:11 2003
-+++ sources/gcl/gcmdline.cc Sun Feb 9 02:26:28 2003
-@@ -81,7 +81,6 @@
- rawTerm.c_iflag &= ~ICRNL;
- rawTerm.c_iflag &= ~IXON;
- rawTerm.c_iflag &= ~IXOFF;
-- rawTerm.c_iflag &= ~IUCLC;
- rawTerm.c_iflag &= ~IXANY;
- rawTerm.c_iflag &= ~IMAXBEL;
-
-@@ -90,7 +89,6 @@
- // rawTerm.c_lflag &= ~ISIG;
- rawTerm.c_lflag |= ISIG;
- rawTerm.c_lflag &= ~ICANON;
-- rawTerm.c_lflag &= ~XCASE;
- rawTerm.c_lflag &= ~ECHO;
-
- rawTerm.c_cc[VTIME] = 0;
diff --git a/misc/gambit/files/patch-gnulib.cc b/misc/gambit/files/patch-gnulib.cc
deleted file mode 100644
index 23310f76f060..000000000000
--- a/misc/gambit/files/patch-gnulib.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- sources/math/gnulib.cc.orig Sun Feb 9 01:57:37 2003
-+++ sources/math/gnulib.cc Sun Feb 9 01:57:55 2003
-@@ -112,7 +112,7 @@
- v &= chunklimit == chunk->limit;
- _obstack_chunk* p = chunk;
- // allow lots of chances to find bottom!
-- long x = MAXLONG;
-+ long x = LONG_MAX;
- while (p != 0 && x != 0) { --x; p = p->prev; }
- v &= x > 0;
- return v;
diff --git a/misc/gambit/files/patch-gnulib.h b/misc/gambit/files/patch-gnulib.h
deleted file mode 100644
index 80ac59a172d7..000000000000
--- a/misc/gambit/files/patch-gnulib.h
+++ /dev/null
@@ -1,24 +0,0 @@
---- sources/math/gnulib.h.orig Sun Feb 9 01:54:27 2003
-+++ sources/math/gnulib.h Sun Feb 9 01:56:12 2003
-@@ -32,9 +32,6 @@
- #ifndef GNULIB_H
- #define GNULIB_H
-
--#ifdef __GNUG__
--#include <_G_config.h>
--#endif // __GNUG__
- #include <stddef.h>
- #include <stdlib.h>
- #include <string.h>
-@@ -46,11 +43,6 @@
- #include <errno.h>
- #include <fcntl.h>
-
--#ifdef __GNUG__
--extern "C" {
--int strcasecmp _G_ARGS((const char*, const char*));
--}
--#endif // __GNUG__
-
-
- #include <math.h>
diff --git a/misc/gambit/pkg-comment b/misc/gambit/pkg-comment
deleted file mode 100644
index 2b60db5dd4f7..000000000000
--- a/misc/gambit/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-A library of tools for doing computation in game theory
diff --git a/misc/gambit/pkg-descr b/misc/gambit/pkg-descr
deleted file mode 100644
index 73b25648297b..000000000000
--- a/misc/gambit/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-Gambit is a library of game theory software and tools for the construction
-and analysis of finite extensive and normal form games. Gambit is designed
-to be portable across platforms.
-
-Gambit includes:
- - A graphical user interface, based upon the wxWindows library, providing
- a common look-and-feel across platforms.
- - The Gambit Command Language, a scripting language with built-in
- primitives for constructing and analyzing games.
- - A library of C++ source code for representing games, suitable for use
- in other applications.
-
-WWW: http://www.hss.caltech.edu/gambit/
diff --git a/misc/gambit/pkg-plist b/misc/gambit/pkg-plist
deleted file mode 100644
index c48d83711013..000000000000
--- a/misc/gambit/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-bin/gambit
-bin/gcl
-bin/wxgcl