1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

re-add gambit 0.97.0.3

A library of tools for doing computation in game theory
This commit is contained in:
Ying-Chieh Liao 2003-02-09 05:23:06 +00:00
parent 120650ca4e
commit df95a34e2a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75161
9 changed files with 100 additions and 0 deletions

View File

@ -35,6 +35,7 @@
SUBDIR += freefem
SUBDIR += fudgit
SUBDIR += fxt
SUBDIR += gambit
SUBDIR += gap
SUBDIR += gcalctool
SUBDIR += gdcalc

28
math/gambit/Makefile Normal file
View File

@ -0,0 +1,28 @@
# ex:ts=8
# Ports collection makefile for: gambit
# Date created: Feb 8, 2003
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= gambit
PORTVERSION= 0.97.0.3
CATEGORIES= math
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>

1
math/gambit/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (gambit-0.97.0.3.tar.gz) = ec6db5a877c69fe9a7ad7379250c20ff

View File

@ -0,0 +1,18 @@
--- 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;

View File

@ -0,0 +1,11 @@
--- 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;

View File

@ -0,0 +1,24 @@
--- 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>

1
math/gambit/pkg-comment Normal file
View File

@ -0,0 +1 @@
A library of tools for doing computation in game theory

13
math/gambit/pkg-descr Normal file
View File

@ -0,0 +1,13 @@
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/

3
math/gambit/pkg-plist Normal file
View File

@ -0,0 +1,3 @@
bin/gambit
bin/gcl
bin/wxgcl