From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 28 10:10:31 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBED916A422 for ; Sun, 28 Aug 2005 10:10:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8262C43D49 for ; Sun, 28 Aug 2005 10:10:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j7SAAKq7028467 for ; Sun, 28 Aug 2005 10:10:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j7SAAKsq028466; Sun, 28 Aug 2005 10:10:20 GMT (envelope-from gnats) Resent-Date: Sun, 28 Aug 2005 10:10:20 GMT Resent-Message-Id: <200508281010.j7SAAKsq028466@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0579D16A41F for ; Sun, 28 Aug 2005 10:04:03 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from hfep04.dion.ne.jp (hfep04.dion.ne.jp [203.181.105.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EAC743D45 for ; Sun, 28 Aug 2005 10:04:00 +0000 (GMT) (envelope-from tkato432@yahoo.com) Received: from localhost ([219.108.136.159]) by hfep04.dion.ne.jp with SMTP id <20050828100353230.UTNN@hfep04.dion.ne.jp> for ; Sun, 28 Aug 2005 19:03:53 +0900 Message-Id: <20050828190050.23be5d47.tkato432@yahoo.com> Date: Sun, 28 Aug 2005 19:00:50 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/85387: Update port: math/yacas to 1.0.58 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Aug 2005 10:10:31 -0000 >Number: 85387 >Category: ports >Synopsis: Update port: math/yacas to 1.0.58 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Aug 28 10:10:19 GMT 2005 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 4.11-RELEASE-p11 i386 >Organization: >Environment: >Description: - Update to version 1.0.58 New file: files/patch-embed-example4.c Remove file: files/patch-plugins::pcre::plugin.cc files/patch-plugins:filescanner::plugin.cc files/patch-scripts::compile.rep::compilecpp.ys >How-To-Repeat: >Fix: diff -urN /usr/ports/math/yacas/Makefile math/yacas/Makefile --- /usr/ports/math/yacas/Makefile Tue May 3 13:40:45 2005 +++ math/yacas/Makefile Sun Aug 7 21:05:07 2005 @@ -7,8 +7,7 @@ # PORTNAME= yacas -PORTVERSION= 1.0.57 -PORTREVISION= 1 +PORTVERSION= 1.0.58 CATEGORIES= math MASTER_SITES= http://yacas.sourceforge.net/backups/ @@ -39,7 +38,7 @@ .if defined(WITH_X11) USE_GL= yes -CONFIGURE_ARGS+=--with-x +CONFIGURE_ARGS+= --with-x PLIST_SUB+= X11="" CPPFLAGS+= -I${X11BASE}/include LDFLAGS+= -L${X11BASE}/lib diff -urN /usr/ports/math/yacas/distinfo math/yacas/distinfo --- /usr/ports/math/yacas/distinfo Thu Dec 30 14:31:18 2004 +++ math/yacas/distinfo Sun Aug 7 21:52:47 2005 @@ -1,2 +1,2 @@ -MD5 (yacas-1.0.57.tar.gz) = 0e5161457cb7d818aa8009676998696b -SIZE (yacas-1.0.57.tar.gz) = 1974503 +MD5 (yacas-1.0.58.tar.gz) = fd7fa942789fdac8fa363e555c86cae9 +SIZE (yacas-1.0.58.tar.gz) = 2089209 diff -urN /usr/ports/math/yacas/files/patch-embed-example4.c math/yacas/files/patch-embed-example4.c --- /usr/ports/math/yacas/files/patch-embed-example4.c Thu Jan 1 09:00:00 1970 +++ math/yacas/files/patch-embed-example4.c Sun Aug 7 22:28:46 2005 @@ -0,0 +1,29 @@ +--- embed/example4.c.orig Mon Jul 18 04:54:09 2005 ++++ embed/example4.c Sun Aug 7 22:28:37 2005 +@@ -22,10 +22,12 @@ + } + void runexpr(void* object) + { ++ void* result; ++ + printf("Input> "); + print_expr(object); + printf("\n"); +- void* result = yacas_execute(object); ++ result = yacas_execute(object); + printf("Output> "); + print_expr(result); + printf("\n"); +@@ -35,9 +37,10 @@ + int main(int argc, char** argv) + { + int i; ++ void *input; + yacas_init(); +- +- void *input = ++ ++ input = + yacas_create_sublist( + yacas_link_objects( + yacas_create_atom("+"), diff -urN /usr/ports/math/yacas/files/patch-plugins::pcre::plugin.cc math/yacas/files/patch-plugins::pcre::plugin.cc --- /usr/ports/math/yacas/files/patch-plugins::pcre::plugin.cc Thu Aug 12 05:47:39 2004 +++ math/yacas/files/patch-plugins::pcre::plugin.cc Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- plugins/pcre/plugin.cc.orig Sun Aug 24 14:17:25 2003 -+++ plugins/pcre/plugin.cc Thu Jul 29 16:05:37 2004 -@@ -180,7 +180,7 @@ - return NEW PcrePlugin; - } - --}; -+} - - - diff -urN /usr/ports/math/yacas/files/patch-plugins:filescanner::plugin.cc math/yacas/files/patch-plugins:filescanner::plugin.cc --- /usr/ports/math/yacas/files/patch-plugins:filescanner::plugin.cc Thu Aug 12 05:47:39 2004 +++ math/yacas/files/patch-plugins:filescanner::plugin.cc Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- plugins/filescanner/plugin.cc.orig Sun Aug 24 14:17:44 2003 -+++ plugins/filescanner/plugin.cc Thu Jul 29 16:07:27 2004 -@@ -81,7 +81,7 @@ - return NEW FileScannerPlugin; - } - --}; -+} - - - diff -urN /usr/ports/math/yacas/files/patch-scripts::compile.rep::compilecpp.ys math/yacas/files/patch-scripts::compile.rep::compilecpp.ys --- /usr/ports/math/yacas/files/patch-scripts::compile.rep::compilecpp.ys Thu Dec 30 14:31:18 2004 +++ math/yacas/files/patch-scripts::compile.rep::compilecpp.ys Thu Jan 1 09:00:00 1970 @@ -1,11 +0,0 @@ ---- scripts/compile.rep/compilecpp.ys.orig Sun Aug 24 14:35:27 2003 -+++ scripts/compile.rep/compilecpp.ys Thu Jul 29 15:48:30 2004 -@@ -395,7 +395,7 @@ - - // The define OPTIMIZE_COMPILED_PLUGIN_SIZE should be defined somewhere else. - #ifndef WIN32 // some macro expansion is failing on Win platform, no idea why. --#define OPTIMIZE_COMPILED_PLUGIN_SIZE -+// #define OPTIMIZE_COMPILED_PLUGIN_SIZE - #endif // WIN32 - - #ifdef OPTIMIZE_COMPILED_PLUGIN_SIZE diff -urN /usr/ports/math/yacas/files/patch-src::Makefile.in math/yacas/files/patch-src::Makefile.in --- /usr/ports/math/yacas/files/patch-src::Makefile.in Thu Dec 30 14:31:18 2004 +++ math/yacas/files/patch-src::Makefile.in Sun Aug 7 22:12:11 2005 @@ -1,11 +1,26 @@ ---- src/Makefile.in.orig Wed May 21 05:56:37 2003 -+++ src/Makefile.in Wed May 21 12:55:31 2003 -@@ -809,7 +809,7 @@ +--- src/Makefile.in.orig Sun Aug 7 17:56:40 2005 ++++ src/Makefile.in Sun Aug 7 22:02:49 2005 +@@ -878,12 +878,12 @@ # The libmath.cpp source file is generated as follows - $(srcdir)/libmath.cpp: $(top_srcdir)/scripts/base.rep/math.ys yacas$(EXEEXT) + $(srcdir)/libmath.cpp: $(top_srcdir)/scripts/base.rep/math.ys yacas$(EXEEXT) check_plugins - (cd ../scripts && make packages.ys corefunctions.ys) + (cd ../scripts && $(MAKE) packages.ys corefunctions.ys) echo "Set(LoadPlugIns,False);Use(\"yacasinit.ys\");" > compileinit.txt echo "CompileCpp(\"base.rep/math.ys\",\"libmath\");" > compile.txt ./yacas$(EXEEXT) --rootdir $(top_srcdir)/scripts -pc --init compileinit.txt compile.txt + ./check_plugins +- make ++ $(MAKE) + + $(srcdir)/platmath.cpp: fastprimes.c + +@@ -917,7 +917,7 @@ + + pcre_plugin_stub.cpp:plugin_stub_gen $(srcdir)/plugins_available.h + ./plugin_stub_gen pcre_plugin_stub.cpp ../plugins/pcre/plugin.cpp +- cd ../plugins/pcre/ ; make chartables.c ++ cd ../plugins/pcre/ ; $(MAKE) chartables.c + + filescanner_stub.cpp:plugin_stub_gen $(srcdir)/plugins_available.h + ./plugin_stub_gen filescanner_stub.cpp filescanner.cpp diff -urN /usr/ports/math/yacas/pkg-plist math/yacas/pkg-plist --- /usr/ports/math/yacas/pkg-plist Thu Dec 30 14:31:18 2004 +++ math/yacas/pkg-plist Sun Aug 7 22:44:02 2005 @@ -23,16 +23,16 @@ lib/libyacasplatform.so.0 lib/yacas/example.la lib/yacas/example.so -lib/yacas/filescanner.so lib/yacas/filescanner.la +lib/yacas/filescanner.so lib/yacas/forth.la lib/yacas/forth.so lib/yacas/libmath.a lib/yacas/libmath.la lib/yacas/libmath.so lib/yacas/libmath.so.0 -lib/yacas/pcre.so lib/yacas/pcre.la +lib/yacas/pcre.so %%X11%%lib/yacas/opengl.la %%X11%%lib/yacas/opengl.so lib/yacas/yacas_gsl.la @@ -123,6 +123,8 @@ %%DATADIR%%/documentation/codingmanual.html %%DATADIR%%/documentation/essays.html %%DATADIR%%/documentation/essayschapter1.html +%%DATADIR%%/documentation/essayschapter10.html +%%DATADIR%%/documentation/essayschapter11.html %%DATADIR%%/documentation/essayschapter12.html %%DATADIR%%/documentation/essayschapter2.html %%DATADIR%%/documentation/essayschapter3.html @@ -134,6 +136,7 @@ %%DATADIR%%/documentation/essayschapter9.html %%DATADIR%%/documentation/essayschapters.html %%DATADIR%%/documentation/essaysmanual.html +%%DATADIR%%/documentation/hints %%DATADIR%%/documentation/intro.html %%DATADIR%%/documentation/introchapter1.html %%DATADIR%%/documentation/introchapter2.html @@ -182,9 +185,6 @@ %%DATADIR%%/documentation/refprogchapters.html %%DATADIR%%/documentation/refprogmanual.html %%DATADIR%%/documentation/yacaslogo.gif -%%DATADIR%%/documentation/hints -%%DATADIR%%/documentation/essayschapter10.html -%%DATADIR%%/documentation/essayschapter11.html %%DATADIR%%/example.rep/code.ys %%DATADIR%%/example.rep/code.ys.def %%DATADIR%%/examples/ABIN.ys @@ -273,6 +273,7 @@ %%DATADIR%%/include/plat/linux32/platfileio.h %%DATADIR%%/include/plat/linux32/stubs.inl %%DATADIR%%/include/platmath.h +%%DATADIR%%/include/plugins_available.h %%DATADIR%%/include/refcount.h %%DATADIR%%/include/standard.h %%DATADIR%%/include/standard.inl @@ -296,6 +297,7 @@ %%DATADIR%%/include/yacasprivate.h %%DATADIR%%/integrate.rep/code.ys %%DATADIR%%/integrate.rep/code.ys.def +%%DATADIR%%/integrate.rep/om.ys %%DATADIR%%/io.rep/code.ys %%DATADIR%%/io.rep/code.ys.def %%DATADIR%%/io.rep/defaultprint.ys @@ -386,6 +388,7 @@ %%DATADIR%%/specfunc.rep/gamma.ys.def %%DATADIR%%/specfunc.rep/gammaconst.ys %%DATADIR%%/specfunc.rep/gammaconst.ys.def +%%DATADIR%%/specfunc.rep/om.ys %%DATADIR%%/specfunc.rep/zeta.ys %%DATADIR%%/specfunc.rep/zeta.ys.def %%DATADIR%%/standard.ys @@ -403,6 +406,8 @@ %%DATADIR%%/statistics.rep/statistics.ys.def %%DATADIR%%/stats.rep/code.ys %%DATADIR%%/stats.rep/code.ys.def +%%DATADIR%%/stdarith.ys +%%DATADIR%%/stdarith.ys.def %%DATADIR%%/stdfuncs.rep/code.ys %%DATADIR%%/stdfuncs.rep/code.ys.def %%DATADIR%%/stdfuncs.rep/elemfuncs.ys @@ -420,6 +425,7 @@ %%DATADIR%%/substitute.rep/code.ys.def %%DATADIR%%/sums.rep/code.ys %%DATADIR%%/sums.rep/code.ys.def +%%DATADIR%%/sums.rep/om.ys %%DATADIR%%/sums.rep/taylor.ys %%DATADIR%%/sums.rep/taylor.ys.def %%DATADIR%%/sums.rep/taylor3.ys @@ -442,8 +448,6 @@ %%DATADIR%%/univar.rep/sparse.ys.def %%DATADIR%%/univar.rep/sturm.ys %%DATADIR%%/univar.rep/sturm.ys.def -%%DATADIR%%/stdarith.ys -%%DATADIR%%/stdarith.ys.def %%DATADIR%%/yacas-gmtplot2d.sh %%DATADIR%%/yacas-gmtplot3d.sh %%DATADIR%%/yacasinit.ys >Release-Note: >Audit-Trail: >Unformatted: