From owner-svn-ports-all@FreeBSD.ORG Mon Jun 24 10:42:26 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6B811AD2; Mon, 24 Jun 2013 10:42:26 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5DDC21C4B; Mon, 24 Jun 2013 10:42:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5OAgQ37034722; Mon, 24 Jun 2013 10:42:26 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5OAgPUK034717; Mon, 24 Jun 2013 10:42:25 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201306241042.r5OAgPUK034717@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 24 Jun 2013 10:42:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321673 - in head/math/gambit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Jun 2013 10:42:26 -0000 Author: gahr Date: Mon Jun 24 10:42:25 2013 New Revision: 321673 URL: http://svnweb.freebsd.org/changeset/ports/321673 Log: - Update to 13.0.0 Release announcement: http://sourceforge.net/mailarchive/message.php?msg_id=31063426 Added: head/math/gambit/files/ head/math/gambit/files/patch-src-labenski-src_sheet.cpp (contents, props changed) Modified: head/math/gambit/Makefile (contents, props changed) head/math/gambit/distinfo (contents, props changed) head/math/gambit/pkg-plist (contents, props changed) Modified: head/math/gambit/Makefile ============================================================================== --- head/math/gambit/Makefile Mon Jun 24 09:09:20 2013 (r321672) +++ head/math/gambit/Makefile Mon Jun 24 10:42:25 2013 (r321673) @@ -1,34 +1,20 @@ -# ex:ts=8 -# Ports collection makefile for: gambit -# Date created: Feb 8, 2003 -# Whom: ijliao -# +# Created by: ijliao # $FreeBSD$ -# PORTNAME= gambit -PORTVERSION= 0.2010.09.01 -PORTREVISION= 1 +PORTVERSION= 13.0.0 CATEGORIES= math -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} +MASTER_SITES= SF/gambit/${PORTNAME}13/${PORTVERSION}/ MAINTAINER= gahr@FreeBSD.org COMMENT= A library of tools for doing computation in game theory +LICENSE= GPLv2 + USE_GNOME= gtk20 -WANT_UNICODE= yes -USE_WX= 2.6+ -USE_AUTOTOOLS= libtool -CONFIGURE_ARGS+=--with-wx-config=${WX_CONFIG} +USE_WX= 2.8+ USE_LDCONFIG= yes - -CPPFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} -.if !defined(CFLAGS) || ${CFLAGS:M-fno-strict-aliasing*} == "" -CFLAGS+= -O2 -fno-strict-aliasing -.endif - -post-patch: - @${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/configure +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--with-wx-config=${WX_CONFIG} .include Modified: head/math/gambit/distinfo ============================================================================== --- head/math/gambit/distinfo Mon Jun 24 09:09:20 2013 (r321672) +++ head/math/gambit/distinfo Mon Jun 24 10:42:25 2013 (r321673) @@ -1,2 +1,2 @@ -SHA256 (gambit-0.2010.09.01.tar.gz) = a224851e56302d345a3c6e9dfa5366d2edcd24b694ef532f0ad253bc9e5290e2 -SIZE (gambit-0.2010.09.01.tar.gz) = 1400267 +SHA256 (gambit-13.0.0.tar.gz) = 47db59b15f1f8f341cdf8ef0ecc2bcef5ec252baec0635eb518ea0e0c7eb8249 +SIZE (gambit-13.0.0.tar.gz) = 1610787 Added: head/math/gambit/files/patch-src-labenski-src_sheet.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/gambit/files/patch-src-labenski-src_sheet.cpp Mon Jun 24 10:42:25 2013 (r321673) @@ -0,0 +1,14 @@ +--- src/labenski/src/sheet.cpp.orig 2013-06-24 11:57:48.000000000 +0200 ++++ src/labenski/src/sheet.cpp 2013-06-24 12:00:50.000000000 +0200 +@@ -7098,9 +7098,9 @@ + wxPrintf(wxT("COUNT MISMATCH ERROR! \n")); + + for (size_t n = 0; n < wxMin(ans.GetCount(), res.GetCount()); n++) +- if (ans[n] != res[n]) wxPrintf(wxT("Error in item %u\n"), n); ++ if (ans[n] != res[n]) wxPrintf(wxT("Error in item %zu\n"), n); + +- wxPrintf(msg + wxT("\n")); ++ wxPrintf("%s\n", msg.ToAscii()); + } + + #define CSVT1(str, a1) { wxArrayString ar; ar.Add(wxT(a1)); CSV_TEST(wxT(str), ar, ParseLine(wxT(str))); } Modified: head/math/gambit/pkg-plist ============================================================================== --- head/math/gambit/pkg-plist Mon Jun 24 09:09:20 2013 (r321672) +++ head/math/gambit/pkg-plist Mon Jun 24 10:42:25 2013 (r321673) @@ -23,7 +23,6 @@ include/libgambit/game.h include/libgambit/integer.h include/libgambit/libgambit.h include/libgambit/list.h -include/libgambit/map.h include/libgambit/matrix.h include/libgambit/matrix.imp include/libgambit/mixed.h