[92932] trunk/dports/math/tiemu3

and.damore at macports.org and.damore at macports.org
Fri May 11 03:31:45 PDT 2012


Revision: 92932
          https://trac.macports.org/changeset/92932
Author:   and.damore at macports.org
Date:     2012-05-11 03:31:44 -0700 (Fri, 11 May 2012)
Log Message:
-----------
port tiemu3: update to 3.03, add openmaintainer, edit patchfiles, remove patches merged upstream

Modified Paths:
--------------
    trunk/dports/math/tiemu3/Portfile
    trunk/dports/math/tiemu3/files/patch-dbg_all.diff
    trunk/dports/math/tiemu3/files/patch-dbg_heap.diff
    trunk/dports/math/tiemu3/files/patch-dbg_stack.diff

Removed Paths:
-------------
    trunk/dports/math/tiemu3/files/patch-keynames.diff
    trunk/dports/math/tiemu3/files/patch-src_gui_device_c.diff

Modified: trunk/dports/math/tiemu3/Portfile
===================================================================
--- trunk/dports/math/tiemu3/Portfile	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/Portfile	2012-05-11 10:31:44 UTC (rev 92932)
@@ -3,10 +3,10 @@
 PortSystem          1.0
 
 name                tiemu3
-version             3.02
+version             3.03
 license             GPL-2
 categories          math
-maintainers         and.damore
+maintainers         and.damore openmaintainer
 description         Texas Instruments TI89, Titanium, TI-92, TI-92+, Voyager 200 multi-platform emulator
 long_description    TiEmu is a full-featured TI89, Titanium, TI-92, TI-92+, Voyager 200 multi-platform \
                     emulator with an html manual. It offers: popup menu, screenshots, ASM/C \
@@ -15,13 +15,13 @@
 homepage            http://lpg.ticalc.org/prj_tilp/
 platforms           darwin
 
-distname            tiemu-${version}
-master_sites        sourceforge:project/gtktiemu/tiemu-linux/TiEmu%20${version}
-use_bzip2           yes
+distname            tiemu-${version}-nogdb
+worksrcdir          tiemu-${version}
+master_sites        sourceforge:project/gtktiemu/tiemu-linux/TIEmu%20${version}
 
-checksums           md5     3e8240b7d829c6d8168a97b5a5b28521 \
-                    sha1    a533a427236413aeaa4f6feac253c45a9b293b36 \
-                    rmd160  584a8982c2bb052201026931fe9981096c0113a4
+checksums           md5     2736440d717a0ee97cdb35189814fc93 \
+                    sha1    a682026f49d85829f7db07edc8bfa372c6617ce1 \
+                    rmd160  88bc445977f5301bb6c57b19df3e982b5f703068
 
 depends_build       port:pkgconfig \
                     bin:grep:grep \
@@ -49,12 +49,9 @@
                     patch-dbg_regs.diff \
                     patch-dbg_stack.diff \
                     patch-dbg_wnds.diff \
-                    patch-keynames.diff \
-                    patch-screen.diff \
-                    patch-src_gui_device_c.diff \
-                    patch-gtk_disable_deprecated.diff
+                    patch-gtk_disable_deprecated.diff \
+                    patch-screen.diff
 
-
 configure.args-append       --without-kde --disable-debugger --disable-gdb \
                             --disable-sdltest
 

Modified: trunk/dports/math/tiemu3/files/patch-dbg_all.diff
===================================================================
--- trunk/dports/math/tiemu3/files/patch-dbg_all.diff	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/files/patch-dbg_all.diff	2012-05-11 10:31:44 UTC (rev 92932)
@@ -1,9 +1,9 @@
---- src/gui/debugger/dbg_all.c.orig	2010-08-19 12:25:41.000000000 +0200
-+++ src/gui/debugger/dbg_all.c	2010-08-19 12:33:04.000000000 +0200
-@@ -81,21 +81,21 @@
- 
- void gtk_debugger_refresh(void)
+--- src/gui/debugger/dbg_all.c.orig	2009-05-08 12:56:40.000000000 +0200
++++ src/gui/debugger/dbg_all.c	2012-05-11 10:39:11.000000000 +0200
+@@ -90,21 +90,21 @@
  {	
+ 	WND_TMR_START();
+ 
 -	if(options3.dbg_dock || GTK_WIDGET_VISIBLE(dbgw.regs))
 +	if(options3.dbg_dock || gtk_widget_get_visible(dbgw.regs))
  		dbgregs_refresh_window();
@@ -28,9 +28,9 @@
 -	if(options3.dbg_dock || GTK_WIDGET_VISIBLE(dbgw.iop))
 +	if(options3.dbg_dock || gtk_widget_get_visible(dbgw.iop))
  		dbgiop_refresh_window();
- }
  
-@@ -147,7 +147,7 @@
+ 	WND_TMR_STOP("Debugger Refresh Time");
+@@ -163,7 +163,7 @@
  	gtk_debugger_refresh();
  
  	// enable the debugger if GDB disabled it
@@ -39,19 +39,12 @@
  		gtk_debugger_enable();
  
  	// handle automatic debugging requests
-@@ -164,7 +164,7 @@
+@@ -180,7 +180,7 @@
  
  			ti68k_bkpt_get_pgmentry_offset(id, &handle, &offset);
  			ti68k_bkpt_del_pgmentry(handle);
--			if(GTK_WIDGET_VISIBLE(dbgw.bkpts))
-+			if(gtk_widget_get_visible(dbgw.bkpts))
+-			if(options3.dbg_dock || GTK_WIDGET_VISIBLE(dbgw.bkpts))
++			if(options3.dbg_dock || gtk_widget_get_visible(dbgw.bkpts))
  				dbgbkpts_refresh_window();
  
  			delete_command(NULL, 0);
-@@ -244,4 +244,4 @@
- 		dbgdock_set_sensitivity(TRUE);
- 	else
- 		dbgwnds_set_sensitivity(TRUE);
--}
-\ No newline at end of file
-+}

Modified: trunk/dports/math/tiemu3/files/patch-dbg_heap.diff
===================================================================
--- trunk/dports/math/tiemu3/files/patch-dbg_heap.diff	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/files/patch-dbg_heap.diff	2012-05-11 10:31:44 UTC (rev 92932)
@@ -1,5 +1,5 @@
---- src/gui/debugger/dbg_heap.c.orig	2010-08-19 12:25:41.000000000 +0200
-+++ src/gui/debugger/dbg_heap.c	2010-08-19 12:31:13.000000000 +0200
+--- src/gui/debugger/dbg_heap.c.orig	2012-05-11 11:03:32.000000000 +0200
++++ src/gui/debugger/dbg_heap.c	2012-05-11 11:03:55.000000000 +0200
 @@ -171,7 +171,7 @@
  		gtk_window_iconify(GTK_WINDOW(dbgw.heap));
  #endif
@@ -9,10 +9,8 @@
  		gtk_widget_show(dbgw.heap);
  
  	return dbgw.heap;
-@@ -276,4 +276,4 @@
-                                         gpointer         user_data)
+@@ -277,3 +277,4 @@
  {
  	dbgmem_add_tab(value);
--}
-\ No newline at end of file
-+}
+ }
++

Modified: trunk/dports/math/tiemu3/files/patch-dbg_stack.diff
===================================================================
--- trunk/dports/math/tiemu3/files/patch-dbg_stack.diff	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/files/patch-dbg_stack.diff	2012-05-11 10:31:44 UTC (rev 92932)
@@ -1,5 +1,5 @@
---- src/gui/debugger/dbg_stack.c.orig	2010-08-19 12:25:41.000000000 +0200
-+++ src/gui/debugger/dbg_stack.c	2010-08-19 12:31:13.000000000 +0200
+--- src/gui/debugger/dbg_stack.c.orig	2012-05-11 11:41:13.000000000 +0200
++++ src/gui/debugger/dbg_stack.c	2012-05-11 11:42:04.000000000 +0200
 @@ -197,7 +197,7 @@
  		gtk_window_iconify(GTK_WINDOW(dbgw.stack));
  #endif
@@ -9,10 +9,8 @@
  		gtk_widget_show(dbgw.stack);
  
  	return dbgw.stack;
-@@ -422,4 +422,4 @@
-                                         gpointer         user_data)
+@@ -427,3 +427,4 @@
  {
  	dbgmem_add_tab(value);
--}
-\ No newline at end of file
-+}
+ }
++

Deleted: trunk/dports/math/tiemu3/files/patch-keynames.diff
===================================================================
--- trunk/dports/math/tiemu3/files/patch-keynames.diff	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/files/patch-keynames.diff	2012-05-11 10:31:44 UTC (rev 92932)
@@ -1,12 +0,0 @@
---- src/gui/calc/keynames.c.orig	2009-05-23 11:48:50.000000000 +0200
-+++ src/gui/calc/keynames.c	2009-05-23 11:49:51.000000000 +0200
-@@ -135,9 +135,7 @@
- 	{ PCKEY_CLEAR, "PCKEY_CLEAR" },
- 	{ PCKEY_RETURN, "PCKEY_RETURN" },
- 	{ PCKEY_SHIFT_L, "PCKEY_SHIFT_L" },
--	{ PCKEY_SHIFT_R, "PCKEY_SHIFT_R" },
- 	{ PCKEY_CONTROL_L, "PCKEY_CONTROL_L" },
--	{ PCKEY_CONTROL_R, "PCKEY_CONTROL_R" },
- 	{ PCKEY_MENU, "PCKEY_MENU" },
- 	{ PCKEY_PAUSE, "PCKEY_PAUSE" },
- 	{ PCKEY_CAPITAL, "PCKEY_CAPITAL" },

Deleted: trunk/dports/math/tiemu3/files/patch-src_gui_device_c.diff
===================================================================
--- trunk/dports/math/tiemu3/files/patch-src_gui_device_c.diff	2012-05-11 05:29:17 UTC (rev 92931)
+++ trunk/dports/math/tiemu3/files/patch-src_gui_device_c.diff	2012-05-11 10:31:44 UTC (rev 92932)
@@ -1,24 +0,0 @@
---- src/gui/device.c.orig	2010-12-15 07:02:44.000000000 +0100
-+++ src/gui/device.c	2010-12-15 07:03:08.000000000 +0100
-@@ -102,9 +102,9 @@
- 		gtk_option_menu_set_history(GTK_OPTION_MENU(data), 7);
- 	break;
- 	
--	case CABLE_VTL:
--		gtk_option_menu_set_history(GTK_OPTION_MENU(data), 8);
--	break;   
-+//	case CABLE_VTL:
-+//		gtk_option_menu_set_history(GTK_OPTION_MENU(data), 8);
-+//	break;   
- 
- 	case CABLE_ILP:
- 		gtk_option_menu_set_history(GTK_OPTION_MENU(data), 9);
-@@ -194,7 +194,7 @@
- 	case 5: tmp.cable_model = CABLE_USB; break;	
- 	case 6: tmp.cable_model = CABLE_VTI; break;
- 	case 7: tmp.cable_model = CABLE_TIE; break;
--	case 8: tmp.cable_model = CABLE_VTL; break;
-+//	case 8: tmp.cable_model = CABLE_VTL; break;
- 	case 9: tmp.cable_model = CABLE_ILP; break;
- 	}
- }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20120511/7fb3d5a8/attachment-0001.html>


More information about the macports-changes mailing list