View | Details | Raw Unified | Return to bug 92042
Collapse All | Expand All

(-)skyeye/Makefile (-17 / +9 lines)
Lines 6-43 Link Here
6
#
6
#
7
7
8
PORTNAME=	skyeye
8
PORTNAME=	skyeye
9
PORTVERSION=	0.9.5
9
PORTVERSION=	1.2.0
10
PORTREVISION=	1
10
PORTREVISION=	1
11
CATEGORIES=	emulators
11
CATEGORIES=	emulators
12
MASTER_SITES=	http://download.gro.clinux.org/skyeye/
12
MASTER_SITES=	http://download.gro.clinux.org/skyeye/
13
DISTFILES=	skyeye-1.2.0-RC4.tar.bz2
13
14
14
MAINTAINER=	iamayan@gmail.com
15
MAINTAINER=	iamayan@gmail.com
15
COMMENT=	An environment simulates typical ARM-base embedded computer systems
16
COMMENT=	An environment simulates typical ARM-base embedded computer systems
16
17
17
BUILD_DEPENDS=	tclsh8.3:${PORTSDIR}/lang/tcl83
18
RUN_DEPENDS=	${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd
18
19
19
USE_GMAKE=	yes
20
USE_GMAKE=	yes
20
GNU_CONFIGURE=	yes
21
USE_BZIP2=	yes
21
USE_BZIP2=	yes
22
USE_GNOME=	gtk20
22
USE_GNOME=	gtk20
23
23
24
WRKSRC=		${WRKDIR}/skyeye
24
do-install:
25
	${INSTALL_PROGRAM} ${WRKSRC}/binary/skyeye ${PREFIX}/bin
25
26
26
MAN1=		arm-elf-gdb.1 arm-elf-run.1
27
#ONLY_FOR_ARCHS=	i386
27
INFO=		mmalloc
28
29
ONLY_FOR_ARCHS=	i386
30
31
SKYEYETARGET?=	arm-elf
32
CONFIGURE_TARGET=	--target=${SKYEYETARGET}
33
CONFIGURE_ARGS+=	--without-gtk-prefix \
34
			--without-gtk-exec-prefix \
35
			--disable-gtktest
36
28
37
.include <bsd.port.pre.mk>
29
.include <bsd.port.pre.mk>
38
30
39
.if ${OSVERSION} < 500000
31
#.if ${OSVERSION} < 500000
40
BROKEN=		"does not compile"
32
#BROKEN=		"does not compile"
41
.endif
33
#.endif
42
34
43
.include <bsd.port.post.mk>
35
.include <bsd.port.post.mk>
(-)skyeye/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
MD5 (skyeye-0.9.5.tar.bz2) = 3976381bcb83bb0fe4c57175c2e3b602
1
MD5 (skyeye-1.2.0-RC4.tar.bz2) = 753ce8a85ff981a4a6718ddf57192275
2
SIZE (skyeye-0.9.5.tar.bz2) = 18134145
2
SHA256 (skyeye-1.2.0-RC4.tar.bz2) = 85fe73c12cd0eb7129a837a72486bf0d4791919861d34294da2081ca647d926f
3
SIZE (skyeye-1.2.0-RC4.tar.bz2) = 347420
(-)skyeye/files/patch-Makefile (+31 lines)
Line 0 Link Here
1
--- Makefile.orig	Mon Dec  5 09:52:42 2005
2
+++ Makefile	Fri Jan 20 01:44:58 2006
3
@@ -53,8 +53,8 @@
4
 ARCH_COLDFIRE_CFLAGS = -I arch/coldfire/common
5
 DEVICE_CFLAGS = -I device/ -I device/net -I device/lcd -I device/flash
6
 UTILS_CFLAGS = -I utils/share -I utils/main -I utils/config
7
-SIM_EXTRA_CFLAGS = -DMODET $(ARCH_ARM_CFLAGS) $(ARCH_BLACKFIN_CFLAGS) $(ARCH_COLDFIRE_CFLAGS) $(DEVICE_CFLAGS) $(UTILS_CFLAGS) 
8
-SIM_EXTRA_LIBS = `pkg-config gtk+-2.0 --libs`
9
+SIM_EXTRA_CFLAGS = -DMODET $(ARCH_ARM_CFLAGS) $(ARCH_BLACKFIN_CFLAGS) $(ARCH_COLDFIRE_CFLAGS) $(DEVICE_CFLAGS) $(UTILS_CFLAGS) `pkg-config gtk+-2.0 --cflags` -I${LOCALBASE}/include
10
+SIM_EXTRA_LIBS = `pkg-config gtk+-2.0 --libs` -L${LOCALBASE}/lib
11
 #CFLAGS = -g  -DSTANDALONE -DDEFAULT_INLINE=0  -DMODET $(SIM_EXTRA_CFLAGS) -I. -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
12
 CFLAGS = -g -O2 -DSTANDALONE -DDEFAULT_INLINE=0  -DMODET $(SIM_EXTRA_CFLAGS) $(SUPPORT_ARCH_DEF) -I. -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
13
 
14
@@ -157,7 +157,7 @@
15
 	rm -f binary/*.o
16
 	rm -f binary/*.a
17
 	rm -f binary/skyeye
18
-	make -C arch/coldfire clean
19
+	$(MAKE) -C arch/coldfire clean
20
 
21
 distclean mostlyclean maintainer-clean realclean: clean
22
 	rm -f TAGS tags
23
@@ -189,7 +189,7 @@
24
 CF_COMMON_PATH = arch/coldfire/common/
25
 COLDFIRE_FLAG = -I arch/coldire/tracer
26
 binary/libcoldfire.a:$(SIM_CF_OBJS) 
27
-	make -C arch/coldfire
28
+	$(MAKE) -C arch/coldfire
29
 	$(AR) $(AR_FLAGS) binary/libcoldfire.a $(SIM_CF_OBJS) $(CF_COMMON_PATH)/*.o $(CF_PATH)/tracer/tracer.o $(CF_PATH)/i_5206/i.o
30
 	$(RANLIB) binary/libcoldfire.a
31
 
(-)skyeye/files/patch-Makefile.in (-51 lines)
Lines 1-51 Link Here
1
--- Makefile.in.orig	Tue Jul 19 22:33:06 2005
2
+++ Makefile.in	Tue Jul 19 22:36:07 2005
3
@@ -668,7 +668,6 @@
4
 	install-autoconf \
5
 	install-automake \
6
 	install-bash \
7
-	install-bfd \
8
 	install-bzip2 \
9
 	install-opcodes \
10
 	install-binutils \
11
@@ -693,9 +692,6 @@
12
 	install-gzip \
13
 	install-hello \
14
 	install-indent \
15
-	install-intl \
16
-	install-tcl \
17
-	install-itcl \
18
 	install-ld \
19
 	install-libgui \
20
 	install-libiberty \
21
@@ -707,7 +703,6 @@
22
 	install-perl \
23
 	install-prms \
24
 	install-rcs \
25
-	install-readline \
26
 	install-recode \
27
 	install-sed \
28
 	install-send-pr \
29
@@ -748,10 +743,7 @@
30
 INSTALL_X11_MODULES = \
31
 	install-gdb \
32
 	install-guile \
33
-	install-expect \
34
-	install-tclX \
35
-	install-tk \
36
-	install-tix
37
+	install-expect 
38
 
39
 # This is a list of the targets for all of the modules which are compiled
40
 # using $(TARGET_FLAGS_TO_PASS).
41
@@ -1755,8 +1747,8 @@
42
 all-target-libiberty: configure-target-libiberty
43
 all-target: $(ALL_TARGET_MODULES)
44
 install-target: $(INSTALL_TARGET_MODULES)
45
-install-gdb: install-tcl install-tk install-itcl install-tix install-libgui
46
-install-sid: install-tcl install-tk
47
+install-gdb: 
48
+install-sid: 
49
 ### other supporting targets
50
 
51
 MAKEDIRS= \
(-)skyeye/files/patch-arch_coldfire_Makefile (+18 lines)
Line 0 Link Here
1
--- arch/coldfire/Makefile.orig	Fri Jan 20 01:06:08 2006
2
+++ arch/coldfire/Makefile	Fri Jan 20 01:06:50 2006
3
@@ -1,9 +1,9 @@
4
 all:
5
-	make -C i_5206/
6
-	make -C tracer/
7
-	make -C common/
8
+	$(MAKE) -C i_5206/
9
+	$(MAKE) -C tracer/
10
+	$(MAKE) -C common/
11
 clean:
12
-	make -C tracer/ clean
13
-	make -C i_5206/ clean
14
-	make -C common/ clean
15
+	$(MAKE) -C tracer/ clean
16
+	$(MAKE) -C i_5206/ clean
17
+	$(MAKE) -C common/ clean
18
 	rm -f tags
(-)skyeye/files/patch-etc_Makefile.in (-11 lines)
Lines 1-11 Link Here
1
--- etc/Makefile.in.orig	Tue Jul 19 23:03:00 2005
2
+++ etc/Makefile.in	Tue Jul 19 23:03:14 2005
3
@@ -52,7 +52,7 @@
4
 all:
5
 
6
 # We want install to imply install-info as per GNU standards.
7
-install: install-info
8
+install: 
9
 
10
 uninstall:
11
 
(-)skyeye/files/patch-gdb_doc_Makefile.in (-10 lines)
Lines 1-10 Link Here
1
--- gdb/doc/Makefile.in.orig	Tue Jul 19 22:38:16 2005
2
+++ gdb/doc/Makefile.in	Tue Jul 19 22:38:36 2005
3
@@ -449,6 +449,6 @@
4
 maintainer-clean realclean: distclean
5
 	rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf
6
 
7
-install: install-info
8
+install: 
9
 
10
 uninstall: uninstall-info
(-)skyeye/files/patch-sim_arm_armdefs.h (-24 lines)
Lines 1-24 Link Here
1
--- sim/arm/armdefs.h.orig	Wed May 11 22:10:09 2005
2
+++ sim/arm/armdefs.h	Sat Jul 16 18:25:48 2005
3
@@ -22,6 +22,13 @@
4
 #include <stdlib.h>
5
 #include <errno.h>
6
 
7
+
8
+#ifdef __FreeBSD__
9
+#include <sys/select.h>
10
+#define MAP_ANONYMOUS MAP_ANON
11
+#endif
12
+
13
+
14
 //teawater add for arm2x86 2005.02.14-------------------------------------------
15
 #include <sys/mman.h>
16
 //AJ2D--------------------------------------------------------------------------
17
@@ -63,6 +70,7 @@
18
 typedef unsigned char           uint8_t;
19
 typedef unsigned short          uint16_t;
20
 typedef unsigned int            uint32_t;
21
+typedef int            int32_t;
22
 #if defined (__x86_64__)
23
 typedef unsigned long           uint64_t;
24
 #else
(-)skyeye/files/patch-sim_arm_configure (-12 lines)
Lines 1-12 Link Here
1
--- sim/arm/configure.orig	Wed Jul 20 13:40:44 2005
2
+++ sim/arm/configure	Wed Jul 20 13:42:23 2005
3
@@ -3620,7 +3620,8 @@
4
   echo "$ac_t""no" 1>&6
5
 fi
6
 #2004-09-29 chy define GTK_CONFIG
7
-  GTK_CONFIG=/usr/bin/pkg-config
8
+#  GTK_CONFIG=/usr/bin/pkg-config
9
+  GTK_CONFIG=/usr/local/bin/pkg-config
10
   min_gtk_version=1.1.3
11
   echo $ac_n "checking for GTK - version >= $min_gtk_version""... $ac_c" 1>&6
12
 echo "configure:3626: checking for GTK - version >= $min_gtk_version" >&5
(-)skyeye/files/patch-sim_arm_skyeye-ne2k.c (-27 lines)
Lines 1-27 Link Here
1
--- sim/arm/skyeye-ne2k.c.orig	Tue Mar  1 14:51:24 2005
2
+++ sim/arm/skyeye-ne2k.c	Sat Jul 16 18:17:14 2005
3
@@ -26,13 +26,23 @@
4
  * 02/25/2003 	initial version
5
  *				yangye <yangye@163.net> 		
6
  */
7
- 
8
+#ifdef __linux__ 
9
 //#include <linux/if.h>
10
 #include <net/if.h>
11
 #include <linux/if_tun.h>
12
 //#include <sys/types.h>
13
 //#include <sys/stat.h>
14
 //#include <fcntl.h>
15
+#endif
16
+
17
+#ifdef __FreeBSD__
18
+#include <sys/types.h>
19
+#include <sys/socket.h>
20
+#include <net/if.h>
21
+#include <net/if_tun.h>
22
+#endif
23
+
24
+
25
 #include <sys/ioctl.h>
26
 #include <armdefs.h>
27
 #include <clps7110.h>
(-)skyeye/files/patch-sim_arm_skyeye_net_tuntap.c (-68 lines)
Lines 1-68 Link Here
1
--- sim/arm/skyeye_net_tuntap.c.orig	Tue Mar  1 14:51:24 2005
2
+++ sim/arm/skyeye_net_tuntap.c	Sat Jul 16 18:22:57 2005
3
@@ -26,8 +26,19 @@
4
  *				chenyu <chenyu@hpclab.cs.tsinghua.edu.cn>
5
  */
6
  
7
+#ifdef __linux__
8
 #include <net/if.h>
9
 #include <linux/if_tun.h>
10
+#endif
11
+
12
+#ifdef __FreeBSD__
13
+#include <sys/socket.h>
14
+#include <net/if.h>
15
+#include <net/if_tun.h>
16
+#include <fcntl.h>
17
+#endif
18
+
19
+
20
 #include <sys/ioctl.h>
21
 #include "armdefs.h"
22
 
23
@@ -51,7 +62,7 @@
24
   DBG_PRINT("tapif_init begin\n");
25
   
26
   firsttime++;
27
-  
28
+#ifdef __linux__  
29
   //tapif_fd = open("/dev/net/tun", O_RDWR);
30
   tapif_fd = open("/dev/net/tun", 2);
31
   DBG_PRINT("tapif_init: fd %d\n", tapif_fd);
32
@@ -68,13 +79,36 @@
33
     exit(1);
34
     //return ;
35
   }
36
+#endif
37
 
38
+#ifdef __FreeBSD__
39
+  tapif_fd = open("/dev/tap", O_RDWR);
40
+  DBG_PRINT("tapif_init: fd %d\n", tapif_fd);
41
+  if(tapif_fd == -1) {
42
+    perror("tapif_init:open");
43
+    printf("-----------------------------------------------------------\n");
44
+    printf("NOTICE: You should run as root if you require network\n");
45
+    printf("NOTICE: load the kernel tap module with 'kldload if_tap'\n");
46
+    printf("NOTICE: and execute 'cat /dev/tap'. there should be a \n");
47
+    printf("NOTICE: device node under /dev/ (e.g. /dev/tap0).\n");
48
+    printf("-----------------------------------------------------------\n");
49
+    exit(1);
50
+  }
51
+#endif
52
+
53
+#if !defined(__FreeBSD__)&&!defined(__linux__)
54
+    printf("NOTICE: No network support for your OS(yet). Bugging out!\n");
55
+    exit(1);
56
+#endif
57
+
58
+#ifndef __FreeBSD__
59
   memset(&ifr, 0, sizeof(ifr));
60
   ifr.ifr_flags = IFF_TAP|IFF_NO_PI;
61
   if (ioctl(tapif_fd, TUNSETIFF, (void *) &ifr) < 0) {
62
     perror("tapif_init: icotl TUNSETIFF error");
63
     exit(-1);
64
   }
65
+#endif
66
 
67
   if(firsttime==1){
68
       snprintf(buf, sizeof(buf), "ifconfig tap0 inet %d.%d.%d.%d",
(-)skyeye/files/patch-sim_arm_skyeye_net_vnet.c (-15 lines)
Lines 1-15 Link Here
1
--- sim/arm/skyeye_net_vnet.c.orig	Tue Mar  1 14:51:24 2005
2
+++ sim/arm/skyeye_net_vnet.c	Sat Jul 16 18:23:34 2005
3
@@ -26,6 +26,12 @@
4
  *				chenyu <chenyu@hpclab.cs.tsinghua.edu.cn>
5
  */
6
 #include <fcntl.h> 
7
+
8
+#ifdef __FreeBSD__
9
+#include <sys/socket.h>
10
+#endif
11
+
12
+
13
 #include <net/if.h>
14
 //#include <linux/if_tun.h>
15
 #include <sys/ioctl.h>
(-)skyeye/files/patch-tcl_unix_Makefile.in (-19 lines)
Lines 1-19 Link Here
1
*** tcl/unix/Makefile.in.orig	Tue Jul 19 00:29:52 2005
2
--- tcl/unix/Makefile.in	Mon Jul 18 00:08:02 2005
3
***************
4
*** 194,200 ****
5
  # once we have created the initial executable, but in some cases you
6
  # may want to use a target without having made tclsh on these sources
7
  # (like for make genstubs)
8
! TCL_EXE			= tclsh
9
  
10
  # The symbols below provide support for dynamic loading and shared
11
  # libraries.  See configure.in for a description of what the
12
--- 194,200 ----
13
  # once we have created the initial executable, but in some cases you
14
  # may want to use a target without having made tclsh on these sources
15
  # (like for make genstubs)
16
! TCL_EXE			= tclsh${VERSION}
17
  
18
  # The symbols below provide support for dynamic loading and shared
19
  # libraries.  See configure.in for a description of what the
(-)skyeye/files/patch-usegtk-1.2.sh (-9 lines)
Lines 1-9 Link Here
1
--- usegtk-1.2.sh.orig	Wed Jul 20 13:28:34 2005
2
+++ usegtk-1.2.sh	Wed Jul 20 13:29:18 2005
3
@@ -1,5 +1,5 @@
4
 #! /bin/sh
5
 cp gdb/Makefile.in.gtk-1.2 gdb/Makefile.in
6
 cp sim/arm/Makefile.in.gtk-1.2 sim/arm/Makefile.in
7
-cp sim/arm/configure.gtk-1.2 sim/arm/configure
8
+cp sim/arm/configure.gtk1.2 sim/arm/configure
9
 	 
(-)skyeye/files/patch-usegtk-2.0.sh (-9 lines)
Lines 1-9 Link Here
1
--- usegtk-2.0.sh.orig	Wed Jul 20 13:28:03 2005
2
+++ usegtk-2.0.sh	Wed Jul 20 13:25:21 2005
3
@@ -1,5 +1,5 @@
4
 #! /bin/sh
5
 cp gdb/Makefile.in.gtk-2.0 gdb/Makefile.in
6
 cp sim/arm/Makefile.in.gtk-2.0 sim/arm/Makefile.in
7
-cp sim/arm/configure.gtk-2.0 sim/arm/configure
8
+cp sim/arm/configure.gtk2.0 sim/arm/configure
9
 	 
(-)skyeye/pkg-plist (-287 lines)
Lines 1-288 Link Here
1
bin/arm-elf-run
2
bin/skyeye
1
bin/skyeye
3
bin/skyinsight
4
lib/insight1.0/plugins.tcl
5
lib/libarm-elf-sim.a
6
lib/libiberty.a
7
lib/libmmalloc.a
8
share/insight1.0/about.tcl
9
share/insight1.0/actiondlg.tcl
10
share/insight1.0/attachdlg.itb
11
share/insight1.0/attachdlg.ith
12
share/insight1.0/blockframe.itb
13
share/insight1.0/blockframe.ith
14
share/insight1.0/bpwin.itb
15
share/insight1.0/bpwin.ith
16
share/insight1.0/browserwin.itb
17
share/insight1.0/browserwin.ith
18
share/insight1.0/console.itb
19
share/insight1.0/console.ith
20
share/insight1.0/data.itb
21
share/insight1.0/data.ith
22
share/insight1.0/debugwin.itb
23
share/insight1.0/debugwin.ith
24
share/insight1.0/download.itb
25
share/insight1.0/download.ith
26
share/insight1.0/editor.tcl
27
share/insight1.0/ehandler.itb
28
share/insight1.0/ehandler.ith
29
share/insight1.0/embeddedwin.ith
30
share/insight1.0/gdbevent.itb
31
share/insight1.0/gdbevent.ith
32
share/insight1.0/gdbmenubar.itcl
33
share/insight1.0/gdbtoolbar.itcl
34
share/insight1.0/gdbwin.ith
35
share/insight1.0/globalpref.itb
36
share/insight1.0/globalpref.ith
37
share/insight1.0/help/breakpoint.html
38
share/insight1.0/help/browser.html
39
share/insight1.0/help/console.html
40
share/insight1.0/help/debug.html
41
share/insight1.0/help/gbl_pref.html
42
share/insight1.0/help/help.html
43
share/insight1.0/help/images/frame_info.gif
44
share/insight1.0/help/images/index.gif
45
share/insight1.0/help/images/mem_menu.gif
46
share/insight1.0/help/images/mem_popup.gif
47
share/insight1.0/help/images/mem_pref.gif
48
share/insight1.0/help/images/src_bal.gif
49
share/insight1.0/help/images/src_bp_bal.gif
50
share/insight1.0/help/images/src_bpop.gif
51
share/insight1.0/help/images/src_menu.gif
52
share/insight1.0/help/images/src_pop.gif
53
share/insight1.0/help/images/src_stat.gif
54
share/insight1.0/help/images/src_thread.gif
55
share/insight1.0/help/images/src_toolbar.gif
56
share/insight1.0/help/index.html
57
share/insight1.0/help/license.html
58
share/insight1.0/help/locals.html
59
share/insight1.0/help/memory.html
60
share/insight1.0/help/reg_pref.html
61
share/insight1.0/help/register.html
62
share/insight1.0/help/session.html
63
share/insight1.0/help/source.html
64
share/insight1.0/help/src_pref.html
65
share/insight1.0/help/stack.html
66
share/insight1.0/help/target.html
67
share/insight1.0/help/thread.html
68
share/insight1.0/help/trace/console.html
69
share/insight1.0/help/trace/gbl_pref.html
70
share/insight1.0/help/trace/help.html
71
share/insight1.0/help/trace/index.toc
72
share/insight1.0/help/trace/license.html
73
share/insight1.0/help/trace/locals.html
74
share/insight1.0/help/trace/memory.html
75
share/insight1.0/help/trace/reg_pref.html
76
share/insight1.0/help/trace/register.html
77
share/insight1.0/help/trace/source.html
78
share/insight1.0/help/trace/src_pref.html
79
share/insight1.0/help/trace/stack.html
80
share/insight1.0/help/trace/target.html
81
share/insight1.0/help/trace/tdump.html
82
share/insight1.0/help/trace/tp.html
83
share/insight1.0/help/trace/tracedlg.html
84
share/insight1.0/help/trace/watch.html
85
share/insight1.0/help/watch.html
86
share/insight1.0/helpviewer.itb
87
share/insight1.0/helpviewer.ith
88
share/insight1.0/images/Movie_off.gif
89
share/insight1.0/images/Movie_on.gif
90
share/insight1.0/images/back.gif
91
share/insight1.0/images/bottom.gif
92
share/insight1.0/images/bp.gif
93
share/insight1.0/images/build.gif
94
share/insight1.0/images/check.gif
95
share/insight1.0/images/console.gif
96
share/insight1.0/images/continue.gif
97
share/insight1.0/images/down.gif
98
share/insight1.0/images/edit.gif
99
share/insight1.0/images/file.gif
100
share/insight1.0/images/finish.gif
101
share/insight1.0/images/fore.gif
102
share/insight1.0/images/gdbtk.gif
103
share/insight1.0/images/gdbtk_icon.gif
104
share/insight1.0/images/help.gif
105
share/insight1.0/images/home.gif
106
share/insight1.0/images/icons.txt
107
share/insight1.0/images/insight.gif
108
share/insight1.0/images/less.gif
109
share/insight1.0/images/memory.gif
110
share/insight1.0/images/more.gif
111
share/insight1.0/images/next.gif
112
share/insight1.0/images/next_check.gif
113
share/insight1.0/images/next_frame.gif
114
share/insight1.0/images/next_hit.gif
115
share/insight1.0/images/next_line.gif
116
share/insight1.0/images/nexti.gif
117
share/insight1.0/images/open.gif
118
share/insight1.0/images/opt.gif
119
share/insight1.0/images/prev_hit.gif
120
share/insight1.0/images/reg.gif
121
share/insight1.0/images/rewind.gif
122
share/insight1.0/images/run.gif
123
share/insight1.0/images/run_expt.gif
124
share/insight1.0/images/src.gif
125
share/insight1.0/images/stack.gif
126
share/insight1.0/images/step.gif
127
share/insight1.0/images/stepi.gif
128
share/insight1.0/images/stop.gif
129
share/insight1.0/images/tdump.gif
130
share/insight1.0/images/tools.gif
131
share/insight1.0/images/tools2_3d.gif
132
share/insight1.0/images/tp.gif
133
share/insight1.0/images/up.gif
134
share/insight1.0/images/vars.gif
135
share/insight1.0/images/vmake.gif
136
share/insight1.0/images/watch.gif
137
share/insight1.0/images/watch_movie.gif
138
share/insight1.0/images2/Movie_off.gif
139
share/insight1.0/images2/Movie_on.gif
140
share/insight1.0/images2/back.gif
141
share/insight1.0/images2/bottom.gif
142
share/insight1.0/images2/bp.gif
143
share/insight1.0/images2/build.gif
144
share/insight1.0/images2/check.gif
145
share/insight1.0/images2/console.gif
146
share/insight1.0/images2/continue.gif
147
share/insight1.0/images2/down.gif
148
share/insight1.0/images2/edit.gif
149
share/insight1.0/images2/file.gif
150
share/insight1.0/images2/finish.gif
151
share/insight1.0/images2/fore.gif
152
share/insight1.0/images2/function.gif
153
share/insight1.0/images2/gdbtk.gif
154
share/insight1.0/images2/gdbtk_icon.gif
155
share/insight1.0/images2/help.gif
156
share/insight1.0/images2/home.gif
157
share/insight1.0/images2/icons.txt
158
share/insight1.0/images2/insight.gif
159
share/insight1.0/images2/less.gif
160
share/insight1.0/images2/load.gif
161
share/insight1.0/images2/memory.gif
162
share/insight1.0/images2/more.gif
163
share/insight1.0/images2/next.gif
164
share/insight1.0/images2/next_check.gif
165
share/insight1.0/images2/next_frame.gif
166
share/insight1.0/images2/next_hit.gif
167
share/insight1.0/images2/next_line.gif
168
share/insight1.0/images2/nexti.gif
169
share/insight1.0/images2/open.gif
170
share/insight1.0/images2/opt.gif
171
share/insight1.0/images2/prev_hit.gif
172
share/insight1.0/images2/reg.gif
173
share/insight1.0/images2/rewind.gif
174
share/insight1.0/images2/run.gif
175
share/insight1.0/images2/run_expt.gif
176
share/insight1.0/images2/src.gif
177
share/insight1.0/images2/stack.gif
178
share/insight1.0/images2/step.gif
179
share/insight1.0/images2/stepi.gif
180
share/insight1.0/images2/stop.gif
181
share/insight1.0/images2/target.gif
182
share/insight1.0/images2/tdump.gif
183
share/insight1.0/images2/tools.gif
184
share/insight1.0/images2/tools2_3d.gif
185
share/insight1.0/images2/tp.gif
186
share/insight1.0/images2/up.gif
187
share/insight1.0/images2/vars.gif
188
share/insight1.0/images2/vmake.gif
189
share/insight1.0/images2/watch.gif
190
share/insight1.0/images2/watch_movie.gif
191
share/insight1.0/interface.tcl
192
share/insight1.0/kod.itb
193
share/insight1.0/kod.ith
194
share/insight1.0/locals.tcl
195
share/insight1.0/main.tcl
196
share/insight1.0/managedwin.itb
197
share/insight1.0/managedwin.ith
198
share/insight1.0/mempref.itb
199
share/insight1.0/mempref.ith
200
share/insight1.0/memwin.itb
201
share/insight1.0/memwin.ith
202
share/insight1.0/modal.tcl
203
share/insight1.0/pluginwin.itcl
204
share/insight1.0/prefs.tcl
205
share/insight1.0/process.itb
206
share/insight1.0/process.ith
207
share/insight1.0/regwin.itb
208
share/insight1.0/regwin.ith
209
share/insight1.0/session.tcl
210
share/insight1.0/srcbar.itcl
211
share/insight1.0/srcpref.itb
212
share/insight1.0/srcpref.ith
213
share/insight1.0/srctextwin.itb
214
share/insight1.0/srctextwin.ith
215
share/insight1.0/srcwin.itb
216
share/insight1.0/srcwin.ith
217
share/insight1.0/stackwin.itb
218
share/insight1.0/stackwin.ith
219
share/insight1.0/targetselection.itb
220
share/insight1.0/targetselection.ith
221
share/insight1.0/tclIndex
222
share/insight1.0/tdump.tcl
223
share/insight1.0/tfind_args.tcl
224
share/insight1.0/toolbar.tcl
225
share/insight1.0/toplevelwin.ith
226
share/insight1.0/tracedlg.tcl
227
share/insight1.0/tty.tcl
228
share/insight1.0/util.tcl
229
share/insight1.0/variables.tcl
230
share/insight1.0/warning.tcl
231
share/insight1.0/watch.tcl
232
share/locale/da/LC_MESSAGES/opcodes.mo
233
share/locale/de/LC_MESSAGES/opcodes.mo
234
share/locale/es/LC_MESSAGES/opcodes.mo
235
share/locale/fr/LC_MESSAGES/opcodes.mo
236
share/locale/id/LC_MESSAGES/opcodes.mo
237
share/locale/pt_BR/LC_MESSAGES/opcodes.mo
238
share/locale/sv/LC_MESSAGES/opcodes.mo
239
share/locale/tr/LC_MESSAGES/opcodes.mo
240
share/redhat/gui/advice.tcl
241
share/redhat/gui/balloon.tcl
242
share/redhat/gui/bbox.tcl
243
share/redhat/gui/bgerror.tcl
244
share/redhat/gui/bindings.tcl
245
share/redhat/gui/canvas.tcl
246
share/redhat/gui/center.tcl
247
share/redhat/gui/cframe.tcl
248
share/redhat/gui/combobox.tcl
249
share/redhat/gui/debug.tcl
250
share/redhat/gui/def.tcl
251
share/redhat/gui/font.tcl
252
share/redhat/gui/gensym.tcl
253
share/redhat/gui/gettext.tcl
254
share/redhat/gui/hooks.tcl
255
share/redhat/gui/internet.tcl
256
share/redhat/gui/lframe.tcl
257
share/redhat/gui/list.tcl
258
share/redhat/gui/looknfeel.tcl
259
share/redhat/gui/menu.tcl
260
share/redhat/gui/mono.tcl
261
share/redhat/gui/multibox.tcl
262
share/redhat/gui/pane.tcl
263
share/redhat/gui/panedwindow.tcl
264
share/redhat/gui/parse_args.tcl
265
share/redhat/gui/path.tcl
266
share/redhat/gui/pkgIndex.tcl
267
share/redhat/gui/postghost.tcl
268
share/redhat/gui/prefs.tcl
269
share/redhat/gui/print.tcl
270
share/redhat/gui/sendpr.tcl
271
share/redhat/gui/tclIndex
272
share/redhat/gui/toolbar.tcl
273
share/redhat/gui/topbind.tcl
274
share/redhat/gui/ulset.tcl
275
share/redhat/gui/ventry.tcl
276
share/redhat/gui/wframe.tcl
277
share/redhat/gui/wingrab.tcl
278
@dirrm share/redhat/gui
279
@dirrm share/redhat
280
@dirrm share/nls/en_US.US-ASCII
281
@dirrm share/nls/POSIX
282
@dirrm share/insight1.0/images2
283
@dirrm share/insight1.0/images
284
@dirrm share/insight1.0/help/trace
285
@dirrm share/insight1.0/help/images
286
@dirrm share/insight1.0/help
287
@dirrm share/insight1.0
288
@dirrm lib/insight1.0

Return to bug 92042