View | Details | Raw Unified | Return to bug 222931 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +3 lines)
Lines 2-10 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	radare2
4
PORTNAME=	radare2
5
PORTVERSION=	1.0.2
5
PORTVERSION=	2.0.1
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
MASTER_SITES=	http://rada.re/get/
8
7
9
MAINTAINER=	torres.73a@gmail.com
8
MAINTAINER=	torres.73a@gmail.com
10
COMMENT=	Tools to disasm, debug, analyze, and manipulate binary files
9
COMMENT=	Tools to disasm, debug, analyze, and manipulate binary files
Lines 21-26 Link Here
21
CONFIGURE_ARGS+=	--with-syscapstone
20
CONFIGURE_ARGS+=	--with-syscapstone
22
21
23
USES=		gmake pathfix pkgconfig tar:xz
22
USES=		gmake pathfix pkgconfig tar:xz
23
USE_GITHUB=	yes
24
GH_ACCOUNT=	radare
24
PATHFIX_MAKEFILEIN=	Makefile
25
PATHFIX_MAKEFILEIN=	Makefile
25
GNU_CONFIGURE=	yes
26
GNU_CONFIGURE=	yes
26
USE_LDCONFIG=	yes
27
USE_LDCONFIG=	yes
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1479649154
1
TIMESTAMP = 1510597281
2
SHA256 (radare2-1.0.2.tar.xz) = 91fde12126e29bf8bbd6c4aad9e5b226b96afd289e55a52db3df872dc580a294
2
SHA256 (radare-radare2-2.0.1_GH0.tar.gz) = d8f7e1ab96028fc8bd62d4f92fbbe8bbf48c6cda8112e6eaec93bf5ffbbbd1dd
3
SIZE (radare2-1.0.2.tar.xz) = 5014612
3
SIZE (radare-radare2-2.0.1_GH0.tar.gz) = 6001927
(-)files/patch-kinfo_file.c (-23 lines)
Lines 1-23 Link Here
1
--- libr/debug/p/debug_native.c.orig	2016-11-10 16:17:54 UTC
2
+++ libr/debug/p/debug_native.c
3
@@ -1487,15 +1487,15 @@ static RList *r_debug_desc_native_list (
4
 			type = 's';
5
 			if (kve->kf_sock_domain == AF_LOCAL) {
6
 				struct sockaddr_un *sun =
7
-					(struct sockaddr_un *)&kve->kf_sa_local;
8
+					(struct sockaddr_un *)&kve->kf_un.kf_sock.kf_sa_local;
9
 				if (sun->sun_path[0] != 0)
10
-					addr_to_string (&kve->kf_sa_local, path, sizeof(path));
11
+					addr_to_string (&kve->kf_un.kf_sock.kf_sa_local, path, sizeof(path));
12
 				else
13
-					addr_to_string (&kve->kf_sa_peer, path, sizeof(path));
14
+					addr_to_string (&kve->kf_un.kf_sock.kf_sa_peer, path, sizeof(path));
15
 			} else {
16
-				addr_to_string (&kve->kf_sa_local, path, sizeof(path));
17
+				addr_to_string (&kve->kf_un.kf_sock.kf_sa_local, path, sizeof(path));
18
 				strcat (path, " ");
19
-				addr_to_string (&kve->kf_sa_peer, path + strlen (path),
20
+				addr_to_string (&kve->kf_un.kf_sock.kf_sa_peer, path + strlen (path),
21
 						sizeof (path));
22
 			}
23
 			str = path;
(-)files/patch-libr_debug_p_debug__native.c (+32 lines)
Line 0 Link Here
1
--- libr/debug/p/debug_native.c.orig	2017-11-13 19:15:44 UTC
2
+++ libr/debug/p/debug_native.c
3
@@ -1620,6 +1620,7 @@ static RList *r_debug_desc_native_list (
4
 		case KF_TYPE_VNODE: type = 'v'; break;
5
 		case KF_TYPE_SOCKET:
6
 			type = 's';
7
+#if __FreeBSD_version < 1200031
8
 			if (kve->kf_sock_domain == AF_LOCAL) {
9
 				struct sockaddr_un *sun =
10
 					(struct sockaddr_un *)&kve->kf_sa_local;
11
@@ -1633,6 +1634,21 @@ static RList *r_debug_desc_native_list (
12
 				addr_to_string (&kve->kf_sa_peer, path + strlen (path),
13
 						sizeof (path));
14
 			}
15
+#else
16
+			if (kve->kf_sock_domain == AF_LOCAL) {
17
+				struct sockaddr_un *sun =
18
+					(struct sockaddr_un *)&kve->kf_un.kf_sock.kf_sa_local;;
19
+				if (sun->sun_path[0] != 0)
20
+					addr_to_string (&kve->kf_un.kf_sock.kf_sa_local, path, sizeof(path));
21
+				else
22
+					addr_to_string (&kve->kf_un.kf_sock.kf_sa_peer, path, sizeof(path));
23
+			} else {
24
+				addr_to_string (&kve->kf_un.kf_sock.kf_sa_local, path, sizeof(path));
25
+				strcat (path, " ");
26
+				addr_to_string (&kve->kf_un.kf_sock.kf_sa_peer, path + strlen (path),
27
+						sizeof (path));
28
+			}	
29
+#endif
30
 			str = path;
31
 			break;
32
 		case KF_TYPE_PIPE: type = 'p'; break;
(-)pkg-plist (-119 / +169 lines)
Lines 1-4 Link Here
1
bin/r2
1
bin/r2
2
bin/r2-docker
3
bin/r2-indent
2
bin/r2agent
4
bin/r2agent
3
bin/r2pm
5
bin/r2pm
4
bin/rabin2
6
bin/rabin2
Lines 12-19 Link Here
12
bin/rasm2
14
bin/rasm2
13
bin/rax2
15
bin/rax2
14
include/libr/btree.h
16
include/libr/btree.h
15
include/libr/ht.h
17
include/libr/r2naked.h
16
include/libr/naked.h
17
include/libr/r_anal.h
18
include/libr/r_anal.h
18
include/libr/r_anal_ex.h
19
include/libr/r_anal_ex.h
19
include/libr/r_asm.h
20
include/libr/r_asm.h
Lines 20-25 Link Here
20
include/libr/r_bin.h
21
include/libr/r_bin.h
21
include/libr/r_bin_dwarf.h
22
include/libr/r_bin_dwarf.h
22
include/libr/r_bind.h
23
include/libr/r_bind.h
24
include/libr/r_binheap.h
23
include/libr/r_bp.h
25
include/libr/r_bp.h
24
include/libr/r_cmd.h
26
include/libr/r_cmd.h
25
include/libr/r_config.h
27
include/libr/r_config.h
Lines 26-32 Link Here
26
include/libr/r_cons.h
28
include/libr/r_cons.h
27
include/libr/r_core.h
29
include/libr/r_core.h
28
include/libr/r_crypto.h
30
include/libr/r_crypto.h
29
include/libr/r_db.h
30
include/libr/r_debug.h
31
include/libr/r_debug.h
31
include/libr/r_diff.h
32
include/libr/r_diff.h
32
include/libr/r_egg.h
33
include/libr/r_egg.h
Lines 36-41 Link Here
36
include/libr/r_fs.h
37
include/libr/r_fs.h
37
include/libr/r_hash.h
38
include/libr/r_hash.h
38
include/libr/r_heap_glibc.h
39
include/libr/r_heap_glibc.h
40
include/libr/r_heap_jemalloc.h
39
include/libr/r_io.h
41
include/libr/r_io.h
40
include/libr/r_lang.h
42
include/libr/r_lang.h
41
include/libr/r_lib.h
43
include/libr/r_lib.h
Lines 44-53 Link Here
44
include/libr/r_parse.h
46
include/libr/r_parse.h
45
include/libr/r_pdb.h
47
include/libr/r_pdb.h
46
include/libr/r_print.h
48
include/libr/r_print.h
49
include/libr/r_qrcode.h
47
include/libr/r_reg.h
50
include/libr/r_reg.h
48
include/libr/r_regex.h
51
include/libr/r_regex.h
49
include/libr/r_search.h
52
include/libr/r_search.h
50
include/libr/r_sign.h
53
include/libr/r_sign.h
54
include/libr/r_skiplist.h
51
include/libr/r_slist.h
55
include/libr/r_slist.h
52
include/libr/r_socket.h
56
include/libr/r_socket.h
53
include/libr/r_syscall.h
57
include/libr/r_syscall.h
Lines 56-61 Link Here
56
include/libr/r_types_base.h
60
include/libr/r_types_base.h
57
include/libr/r_userconf.h
61
include/libr/r_userconf.h
58
include/libr/r_util.h
62
include/libr/r_util.h
63
include/libr/r_util/r_addr_interval.h
64
include/libr/r_util/r_asn1.h
59
include/libr/r_util/r_base64.h
65
include/libr/r_util/r_base64.h
60
include/libr/r_util/r_base91.h
66
include/libr/r_util/r_base91.h
61
include/libr/r_util/r_big.h
67
include/libr/r_util/r_big.h
Lines 68-93 Link Here
68
include/libr/r_util/r_file.h
74
include/libr/r_util/r_file.h
69
include/libr/r_util/r_graph.h
75
include/libr/r_util/r_graph.h
70
include/libr/r_util/r_hex.h
76
include/libr/r_util/r_hex.h
77
include/libr/r_util/r_id_storage.h
78
include/libr/r_util/r_interval.h
79
include/libr/r_util/r_json.h
71
include/libr/r_util/r_log.h
80
include/libr/r_util/r_log.h
72
include/libr/r_util/r_mem.h
81
include/libr/r_util/r_mem.h
73
include/libr/r_util/r_mixed.h
82
include/libr/r_util/r_mixed.h
74
include/libr/r_util/r_name.h
83
include/libr/r_util/r_name.h
75
include/libr/r_util/r_num.h
84
include/libr/r_util/r_num.h
85
include/libr/r_util/r_pkcs7.h
76
include/libr/r_util/r_pool.h
86
include/libr/r_util/r_pool.h
77
include/libr/r_util/r_punycode.h
87
include/libr/r_util/r_punycode.h
78
include/libr/r_util/r_queue.h
88
include/libr/r_util/r_queue.h
79
include/libr/r_util/r_range.h
89
include/libr/r_util/r_range.h
90
include/libr/r_util/r_rbtree.h
80
include/libr/r_util/r_sandbox.h
91
include/libr/r_util/r_sandbox.h
92
include/libr/r_util/r_signal.h
81
include/libr/r_util/r_spaces.h
93
include/libr/r_util/r_spaces.h
82
include/libr/r_util/r_stack.h
94
include/libr/r_util/r_stack.h
83
include/libr/r_util/r_str.h
95
include/libr/r_util/r_str.h
96
include/libr/r_util/r_str_util.h
84
include/libr/r_util/r_strbuf.h
97
include/libr/r_util/r_strbuf.h
85
include/libr/r_util/r_strht.h
86
include/libr/r_util/r_strpool.h
98
include/libr/r_util/r_strpool.h
87
include/libr/r_util/r_sys.h
99
include/libr/r_util/r_sys.h
88
include/libr/r_util/r_tree.h
100
include/libr/r_util/r_tree.h
89
include/libr/r_util/r_uleb128.h
101
include/libr/r_util/r_uleb128.h
102
include/libr/r_util/r_utf16.h
103
include/libr/r_util/r_utf32.h
90
include/libr/r_util/r_utf8.h
104
include/libr/r_util/r_utf8.h
105
include/libr/r_util/r_x509.h
106
include/libr/r_vector.h
91
include/libr/r_version.h
107
include/libr/r_version.h
92
include/libr/sdb.h
108
include/libr/sdb.h
93
include/libr/sdb/buffer.h
109
include/libr/sdb/buffer.h
Lines 98-106 Link Here
98
include/libr/sdb/ls.h
114
include/libr/sdb/ls.h
99
include/libr/sdb/sdb.h
115
include/libr/sdb/sdb.h
100
include/libr/sdb/sdb_version.h
116
include/libr/sdb/sdb_version.h
117
include/libr/sdb/sdbht.h
101
include/libr/sdb/types.h
118
include/libr/sdb/types.h
102
include/libr/sflib/common/sfsocketcall.h
119
include/libr/sflib/common/sfsocketcall.h
103
include/libr/sflib/common/sftypes.h
120
include/libr/sflib/common/sftypes.h
121
include/libr/sflib/darwin-arm-64/sflib.h
122
include/libr/sflib/darwin-arm-64/sfsyscall.h
123
include/libr/sflib/darwin-arm-64/sfsysnr.h
104
include/libr/sflib/darwin-x86-32/sflib.h
124
include/libr/sflib/darwin-x86-32/sflib.h
105
include/libr/sflib/darwin-x86-32/sfsyscall.h
125
include/libr/sflib/darwin-x86-32/sfsyscall.h
106
include/libr/sflib/darwin-x86-32/sfsysnr.h
126
include/libr/sflib/darwin-x86-32/sfsysnr.h
Lines 107-112 Link Here
107
include/libr/sflib/darwin-x86-64/sflib.h
127
include/libr/sflib/darwin-x86-64/sflib.h
108
include/libr/sflib/darwin-x86-64/sfsyscall.h
128
include/libr/sflib/darwin-x86-64/sfsyscall.h
109
include/libr/sflib/darwin-x86-64/sfsysnr.h
129
include/libr/sflib/darwin-x86-64/sfsysnr.h
130
include/libr/sflib/linux-arm-32/sflib.h
131
include/libr/sflib/linux-arm-32/sfsyscall.h
132
include/libr/sflib/linux-arm-32/sfsysnr.h
110
include/libr/sflib/linux-arm-64/sflib.h
133
include/libr/sflib/linux-arm-64/sflib.h
111
include/libr/sflib/linux-arm-64/sfsyscall.h
134
include/libr/sflib/linux-arm-64/sfsyscall.h
112
include/libr/sflib/linux-arm-64/sfsysnr.h
135
include/libr/sflib/linux-arm-64/sfsysnr.h
Lines 165-275 Link Here
165
lib/radare2/%%PORTVERSION%%/asm_LM32.so
188
lib/radare2/%%PORTVERSION%%/asm_LM32.so
166
lib/radare2/%%PORTVERSION%%/asm_propeller.so
189
lib/radare2/%%PORTVERSION%%/asm_propeller.so
167
lib/radare2/%%PORTVERSION%%/bin_xtr_dyldcache.so
190
lib/radare2/%%PORTVERSION%%/bin_xtr_dyldcache.so
168
lib/radare2/%%PORTVERSION%%/fcnsign/cc-arm-32.sdb
169
lib/radare2/%%PORTVERSION%%/fcnsign/cc-arm-64.sdb
170
lib/radare2/%%PORTVERSION%%/fcnsign/cc-avr-8.sdb
171
lib/radare2/%%PORTVERSION%%/fcnsign/cc-m68k-32.sdb
172
lib/radare2/%%PORTVERSION%%/fcnsign/cc-mips-32.sdb
173
lib/radare2/%%PORTVERSION%%/fcnsign/cc-powerpc-32.sdb
174
lib/radare2/%%PORTVERSION%%/fcnsign/cc-powerpc-64.sdb
175
lib/radare2/%%PORTVERSION%%/fcnsign/cc-riscv-64.sdb
176
lib/radare2/%%PORTVERSION%%/fcnsign/cc-sparc-32.sdb
177
lib/radare2/%%PORTVERSION%%/fcnsign/cc-x86-32.sdb
178
lib/radare2/%%PORTVERSION%%/fcnsign/cc-x86-64.sdb
179
lib/radare2/%%PORTVERSION%%/fcnsign/cc-xtensa-32.sdb
180
lib/radare2/%%PORTVERSION%%/fcnsign/types-16.sdb
181
lib/radare2/%%PORTVERSION%%/fcnsign/types-32.sdb
182
lib/radare2/%%PORTVERSION%%/fcnsign/types-64.sdb
183
lib/radare2/%%PORTVERSION%%/fcnsign/types-linux.sdb
184
lib/radare2/%%PORTVERSION%%/fcnsign/types-windows.sdb
185
lib/radare2/%%PORTVERSION%%/fcnsign/types-x86-osx-64.sdb
186
lib/radare2/%%PORTVERSION%%/fcnsign/types-x86-windows-32.sdb
187
lib/radare2/%%PORTVERSION%%/fcnsign/types-x86-windows-64.sdb
188
lib/radare2/%%PORTVERSION%%/fcnsign/types.sdb
189
lib/radare2/%%PORTVERSION%%/hud/main
190
lib/radare2/%%PORTVERSION%%/magic/OpenBSD
191
lib/radare2/%%PORTVERSION%%/magic/archive
192
lib/radare2/%%PORTVERSION%%/magic/cafebabe
193
lib/radare2/%%PORTVERSION%%/magic/code
194
lib/radare2/%%PORTVERSION%%/magic/compressed
195
lib/radare2/%%PORTVERSION%%/magic/database
196
lib/radare2/%%PORTVERSION%%/magic/elf
197
lib/radare2/%%PORTVERSION%%/magic/filesystems
198
lib/radare2/%%PORTVERSION%%/magic/firmware
199
lib/radare2/%%PORTVERSION%%/magic/flash
200
lib/radare2/%%PORTVERSION%%/magic/freebsd
201
lib/radare2/%%PORTVERSION%%/magic/gimp
202
lib/radare2/%%PORTVERSION%%/magic/gpg
203
lib/radare2/%%PORTVERSION%%/magic/html
204
lib/radare2/%%PORTVERSION%%/magic/images
205
lib/radare2/%%PORTVERSION%%/magic/java
206
lib/radare2/%%PORTVERSION%%/magic/jpeg
207
lib/radare2/%%PORTVERSION%%/magic/linux
208
lib/radare2/%%PORTVERSION%%/magic/mach
209
lib/radare2/%%PORTVERSION%%/magic/macintosh
210
lib/radare2/%%PORTVERSION%%/magic/mail.news
211
lib/radare2/%%PORTVERSION%%/magic/microsoft
212
lib/radare2/%%PORTVERSION%%/magic/mime
213
lib/radare2/%%PORTVERSION%%/magic/netbsd
214
lib/radare2/%%PORTVERSION%%/magic/network
215
lib/radare2/%%PORTVERSION%%/magic/pdf
216
lib/radare2/%%PORTVERSION%%/magic/perl
217
lib/radare2/%%PORTVERSION%%/magic/python
218
lib/radare2/%%PORTVERSION%%/magic/riff
219
lib/radare2/%%PORTVERSION%%/magic/sniffer
220
lib/radare2/%%PORTVERSION%%/magic/sql
221
lib/radare2/%%PORTVERSION%%/magic/ssh
222
lib/radare2/%%PORTVERSION%%/magic/uuencode
223
lib/radare2/%%PORTVERSION%%/magic/video
224
lib/radare2/%%PORTVERSION%%/magic/vim
225
lib/radare2/%%PORTVERSION%%/magic/vorbis
226
lib/radare2/%%PORTVERSION%%/magic/zfs
227
lib/radare2/%%PORTVERSION%%/opcodes/6502.sdb
228
lib/radare2/%%PORTVERSION%%/opcodes/8051.sdb
229
lib/radare2/%%PORTVERSION%%/opcodes/LH5801.sdb
230
lib/radare2/%%PORTVERSION%%/opcodes/arc.sdb
231
lib/radare2/%%PORTVERSION%%/opcodes/arm.sdb
232
lib/radare2/%%PORTVERSION%%/opcodes/avr.sdb
233
lib/radare2/%%PORTVERSION%%/opcodes/dalvik.sdb
234
lib/radare2/%%PORTVERSION%%/opcodes/i4004.sdb
235
lib/radare2/%%PORTVERSION%%/opcodes/i8080.sdb
236
lib/radare2/%%PORTVERSION%%/opcodes/java.sdb
237
lib/radare2/%%PORTVERSION%%/opcodes/lm32.sdb
238
lib/radare2/%%PORTVERSION%%/opcodes/m68k.sdb
239
lib/radare2/%%PORTVERSION%%/opcodes/malbolge.sdb
240
lib/radare2/%%PORTVERSION%%/opcodes/mips.sdb
241
lib/radare2/%%PORTVERSION%%/opcodes/msp430.sdb
242
lib/radare2/%%PORTVERSION%%/opcodes/pic18c.sdb
243
lib/radare2/%%PORTVERSION%%/opcodes/ppc.sdb
244
lib/radare2/%%PORTVERSION%%/opcodes/propeller.sdb
245
lib/radare2/%%PORTVERSION%%/opcodes/riscv.sdb
246
lib/radare2/%%PORTVERSION%%/opcodes/sh.sdb
247
lib/radare2/%%PORTVERSION%%/opcodes/sparc.sdb
248
lib/radare2/%%PORTVERSION%%/opcodes/sysz.sdb
249
lib/radare2/%%PORTVERSION%%/opcodes/tms320.sdb
250
lib/radare2/%%PORTVERSION%%/opcodes/v810.sdb
251
lib/radare2/%%PORTVERSION%%/opcodes/x86.sdb
252
lib/radare2/%%PORTVERSION%%/opcodes/xtensa.sdb
253
lib/radare2/%%PORTVERSION%%/opcodes/z80.sdb
254
lib/radare2/%%PORTVERSION%%/parse_z80_pseudo.so
191
lib/radare2/%%PORTVERSION%%/parse_z80_pseudo.so
255
lib/radare2/%%PORTVERSION%%/syscall/darwin-x86-32.sdb
256
lib/radare2/%%PORTVERSION%%/syscall/darwin-x86-64.sdb
257
lib/radare2/%%PORTVERSION%%/syscall/dos-x86-16.sdb
258
lib/radare2/%%PORTVERSION%%/syscall/freebsd-x86-32.sdb
259
lib/radare2/%%PORTVERSION%%/syscall/ios-arm-32.sdb
260
lib/radare2/%%PORTVERSION%%/syscall/ios-arm-64.sdb
261
lib/radare2/%%PORTVERSION%%/syscall/ios-x86-32.sdb
262
lib/radare2/%%PORTVERSION%%/syscall/linux-arm-32.sdb
263
lib/radare2/%%PORTVERSION%%/syscall/linux-arm-64.sdb
264
lib/radare2/%%PORTVERSION%%/syscall/linux-mips-32.sdb
265
lib/radare2/%%PORTVERSION%%/syscall/linux-sparc-32.sdb
266
lib/radare2/%%PORTVERSION%%/syscall/linux-x86-32.sdb
267
lib/radare2/%%PORTVERSION%%/syscall/linux-x86-64.sdb
268
lib/radare2/%%PORTVERSION%%/syscall/netbsd-x86-32.sdb
269
lib/radare2/%%PORTVERSION%%/syscall/openbsd-x86-32.sdb
270
lib/radare2/%%PORTVERSION%%/syscall/openbsd-x86-64.sdb
271
lib/radare2/%%PORTVERSION%%/syscall/windows-x86-32.sdb
272
lib/radare2/%%PORTVERSION%%/syscall/windows-x86-64.sdb
273
lib/radare2/last
192
lib/radare2/last
274
libdata/pkgconfig/r_anal.pc
193
libdata/pkgconfig/r_anal.pc
275
libdata/pkgconfig/r_asm.pc
194
libdata/pkgconfig/r_asm.pc
Lines 291-296 Link Here
291
libdata/pkgconfig/r_socket.pc
210
libdata/pkgconfig/r_socket.pc
292
libdata/pkgconfig/r_syscall.pc
211
libdata/pkgconfig/r_syscall.pc
293
libdata/pkgconfig/r_util.pc
212
libdata/pkgconfig/r_util.pc
213
man/man1/r2-docker.1.gz
294
man/man1/r2.1.gz
214
man/man1/r2.1.gz
295
man/man1/r2agent.1.gz
215
man/man1/r2agent.1.gz
296
man/man1/r2pm.1.gz
216
man/man1/r2pm.1.gz
Lines 323-328 Link Here
323
%%PORTDOCS%%%%DOCSDIR%%/endian
243
%%PORTDOCS%%%%DOCSDIR%%/endian
324
%%PORTDOCS%%%%DOCSDIR%%/esil
244
%%PORTDOCS%%%%DOCSDIR%%/esil
325
%%PORTDOCS%%%%DOCSDIR%%/flirt
245
%%PORTDOCS%%%%DOCSDIR%%/flirt
246
%%PORTDOCS%%%%DOCSDIR%%/fortunes.creepy
326
%%PORTDOCS%%%%DOCSDIR%%/fortunes.fun
247
%%PORTDOCS%%%%DOCSDIR%%/fortunes.fun
327
%%PORTDOCS%%%%DOCSDIR%%/fortunes.nsfw
248
%%PORTDOCS%%%%DOCSDIR%%/fortunes.nsfw
328
%%PORTDOCS%%%%DOCSDIR%%/fortunes.tips
249
%%PORTDOCS%%%%DOCSDIR%%/fortunes.tips
Lines 354-364 Link Here
354
%%PORTDOCS%%%%DOCSDIR%%/releases
275
%%PORTDOCS%%%%DOCSDIR%%/releases
355
%%PORTDOCS%%%%DOCSDIR%%/repo
276
%%PORTDOCS%%%%DOCSDIR%%/repo
356
%%PORTDOCS%%%%DOCSDIR%%/rgraph
277
%%PORTDOCS%%%%DOCSDIR%%/rgraph
278
%%PORTDOCS%%%%DOCSDIR%%/siol.md
357
%%PORTDOCS%%%%DOCSDIR%%/solaris
279
%%PORTDOCS%%%%DOCSDIR%%/solaris
358
%%PORTDOCS%%%%DOCSDIR%%/static
280
%%PORTDOCS%%%%DOCSDIR%%/static
359
%%PORTDOCS%%%%DOCSDIR%%/static-plugins
281
%%PORTDOCS%%%%DOCSDIR%%/static-plugins
360
%%PORTDOCS%%%%DOCSDIR%%/strings
282
%%PORTDOCS%%%%DOCSDIR%%/strings
283
%%PORTDOCS%%%%DOCSDIR%%/termux.md
361
%%PORTDOCS%%%%DOCSDIR%%/types.md
284
%%PORTDOCS%%%%DOCSDIR%%/types.md
285
%%PORTDOCS%%%%DOCSDIR%%/uncrustify.cfg
362
%%PORTDOCS%%%%DOCSDIR%%/vim
286
%%PORTDOCS%%%%DOCSDIR%%/vim
363
%%PORTDOCS%%%%DOCSDIR%%/vim2r2.js
287
%%PORTDOCS%%%%DOCSDIR%%/vim2r2.js
364
%%PORTDOCS%%%%DOCSDIR%%/windbg
288
%%PORTDOCS%%%%DOCSDIR%%/windbg
Lines 365-370 Link Here
365
%%PORTDOCS%%%%DOCSDIR%%/windows.md
289
%%PORTDOCS%%%%DOCSDIR%%/windows.md
366
%%PORTDOCS%%%%DOCSDIR%%/yara.md
290
%%PORTDOCS%%%%DOCSDIR%%/yara.md
367
%%DATADIR%%/%%PORTVERSION%%/cons/Makefile
291
%%DATADIR%%/%%PORTVERSION%%/cons/Makefile
292
%%DATADIR%%/%%PORTVERSION%%/cons/Makefile.bak
368
%%DATADIR%%/%%PORTVERSION%%/cons/basic
293
%%DATADIR%%/%%PORTVERSION%%/cons/basic
369
%%DATADIR%%/%%PORTVERSION%%/cons/behelit
294
%%DATADIR%%/%%PORTVERSION%%/cons/behelit
370
%%DATADIR%%/%%PORTVERSION%%/cons/cga
295
%%DATADIR%%/%%PORTVERSION%%/cons/cga
Lines 383-388 Link Here
383
%%DATADIR%%/%%PORTVERSION%%/cons/white
308
%%DATADIR%%/%%PORTVERSION%%/cons/white
384
%%DATADIR%%/%%PORTVERSION%%/cons/xvilka
309
%%DATADIR%%/%%PORTVERSION%%/cons/xvilka
385
%%DATADIR%%/%%PORTVERSION%%/cons/zenburn
310
%%DATADIR%%/%%PORTVERSION%%/cons/zenburn
311
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-arm-32.sdb
312
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-arm-64.sdb
313
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-avr-8.sdb
314
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-m68k-32.sdb
315
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-mips-32.sdb
316
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-powerpc-32.sdb
317
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-powerpc-64.sdb
318
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-riscv-64.sdb
319
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-sparc-32.sdb
320
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-x86-32.sdb
321
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-x86-64.sdb
322
%%DATADIR%%/%%PORTVERSION%%/fcnsign/cc-xtensa-32.sdb
323
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-16.sdb
324
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-32.sdb
325
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-64.sdb
326
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-arm-ios-16.sdb
327
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-arm-ios-32.sdb
328
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-arm-ios-64.sdb
329
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-linux.sdb
330
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-windows.sdb
331
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-x86-osx-64.sdb
332
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-x86-windows-32.sdb
333
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types-x86-windows-64.sdb
334
%%DATADIR%%/%%PORTVERSION%%/fcnsign/types.sdb
386
%%DATADIR%%/%%PORTVERSION%%/format/dll/aclui.sdb
335
%%DATADIR%%/%%PORTVERSION%%/format/dll/aclui.sdb
387
%%DATADIR%%/%%PORTVERSION%%/format/dll/activeds.sdb
336
%%DATADIR%%/%%PORTVERSION%%/format/dll/activeds.sdb
388
%%DATADIR%%/%%PORTVERSION%%/format/dll/atl.sdb
337
%%DATADIR%%/%%PORTVERSION%%/format/dll/atl.sdb
Lines 419-424 Link Here
419
%%DATADIR%%/%%PORTVERSION%%/format/dll/winmm.sdb
368
%%DATADIR%%/%%PORTVERSION%%/format/dll/winmm.sdb
420
%%DATADIR%%/%%PORTVERSION%%/format/dll/wldap32.sdb
369
%%DATADIR%%/%%PORTVERSION%%/format/dll/wldap32.sdb
421
%%DATADIR%%/%%PORTVERSION%%/format/dll/ws2_32.sdb
370
%%DATADIR%%/%%PORTVERSION%%/format/dll/ws2_32.sdb
371
%%DATADIR%%/%%PORTVERSION%%/format/dll/wsnmp32.sdb
422
%%DATADIR%%/%%PORTVERSION%%/format/dll/wsock32.sdb
372
%%DATADIR%%/%%PORTVERSION%%/format/dll/wsock32.sdb
423
%%DATADIR%%/%%PORTVERSION%%/format/elf32
373
%%DATADIR%%/%%PORTVERSION%%/format/elf32
424
%%DATADIR%%/%%PORTVERSION%%/format/elf64
374
%%DATADIR%%/%%PORTVERSION%%/format/elf64
Lines 425-430 Link Here
425
%%DATADIR%%/%%PORTVERSION%%/format/elf_enums
375
%%DATADIR%%/%%PORTVERSION%%/format/elf_enums
426
%%DATADIR%%/%%PORTVERSION%%/format/pe32
376
%%DATADIR%%/%%PORTVERSION%%/format/pe32
427
%%DATADIR%%/%%PORTVERSION%%/format/trx
377
%%DATADIR%%/%%PORTVERSION%%/format/trx
378
%%DATADIR%%/%%PORTVERSION%%/hud/main
379
%%DATADIR%%/%%PORTVERSION%%/magic/OpenBSD
380
%%DATADIR%%/%%PORTVERSION%%/magic/archive
381
%%DATADIR%%/%%PORTVERSION%%/magic/cafebabe
382
%%DATADIR%%/%%PORTVERSION%%/magic/code
383
%%DATADIR%%/%%PORTVERSION%%/magic/compressed
384
%%DATADIR%%/%%PORTVERSION%%/magic/database
385
%%DATADIR%%/%%PORTVERSION%%/magic/elf
386
%%DATADIR%%/%%PORTVERSION%%/magic/filesystems
387
%%DATADIR%%/%%PORTVERSION%%/magic/firmware
388
%%DATADIR%%/%%PORTVERSION%%/magic/flash
389
%%DATADIR%%/%%PORTVERSION%%/magic/freebsd
390
%%DATADIR%%/%%PORTVERSION%%/magic/gimp
391
%%DATADIR%%/%%PORTVERSION%%/magic/gpg
392
%%DATADIR%%/%%PORTVERSION%%/magic/html
393
%%DATADIR%%/%%PORTVERSION%%/magic/images
394
%%DATADIR%%/%%PORTVERSION%%/magic/java
395
%%DATADIR%%/%%PORTVERSION%%/magic/jpeg
396
%%DATADIR%%/%%PORTVERSION%%/magic/linux
397
%%DATADIR%%/%%PORTVERSION%%/magic/mach
398
%%DATADIR%%/%%PORTVERSION%%/magic/macintosh
399
%%DATADIR%%/%%PORTVERSION%%/magic/mail.news
400
%%DATADIR%%/%%PORTVERSION%%/magic/microsoft
401
%%DATADIR%%/%%PORTVERSION%%/magic/mime
402
%%DATADIR%%/%%PORTVERSION%%/magic/netbsd
403
%%DATADIR%%/%%PORTVERSION%%/magic/network
404
%%DATADIR%%/%%PORTVERSION%%/magic/pdf
405
%%DATADIR%%/%%PORTVERSION%%/magic/perl
406
%%DATADIR%%/%%PORTVERSION%%/magic/python
407
%%DATADIR%%/%%PORTVERSION%%/magic/riff
408
%%DATADIR%%/%%PORTVERSION%%/magic/sniffer
409
%%DATADIR%%/%%PORTVERSION%%/magic/sql
410
%%DATADIR%%/%%PORTVERSION%%/magic/ssh
411
%%DATADIR%%/%%PORTVERSION%%/magic/uuencode
412
%%DATADIR%%/%%PORTVERSION%%/magic/video
413
%%DATADIR%%/%%PORTVERSION%%/magic/vim
414
%%DATADIR%%/%%PORTVERSION%%/magic/vorbis
415
%%DATADIR%%/%%PORTVERSION%%/magic/zfs
416
%%DATADIR%%/%%PORTVERSION%%/opcodes/6502.sdb
417
%%DATADIR%%/%%PORTVERSION%%/opcodes/8051.sdb
418
%%DATADIR%%/%%PORTVERSION%%/opcodes/LH5801.sdb
419
%%DATADIR%%/%%PORTVERSION%%/opcodes/arc.sdb
420
%%DATADIR%%/%%PORTVERSION%%/opcodes/arm.sdb
421
%%DATADIR%%/%%PORTVERSION%%/opcodes/avr.sdb
422
%%DATADIR%%/%%PORTVERSION%%/opcodes/dalvik.sdb
423
%%DATADIR%%/%%PORTVERSION%%/opcodes/i4004.sdb
424
%%DATADIR%%/%%PORTVERSION%%/opcodes/i8080.sdb
425
%%DATADIR%%/%%PORTVERSION%%/opcodes/java.sdb
426
%%DATADIR%%/%%PORTVERSION%%/opcodes/lm32.sdb
427
%%DATADIR%%/%%PORTVERSION%%/opcodes/m68k.sdb
428
%%DATADIR%%/%%PORTVERSION%%/opcodes/malbolge.sdb
429
%%DATADIR%%/%%PORTVERSION%%/opcodes/mips.sdb
430
%%DATADIR%%/%%PORTVERSION%%/opcodes/msp430.sdb
431
%%DATADIR%%/%%PORTVERSION%%/opcodes/pic18c.sdb
432
%%DATADIR%%/%%PORTVERSION%%/opcodes/ppc.sdb
433
%%DATADIR%%/%%PORTVERSION%%/opcodes/propeller.sdb
434
%%DATADIR%%/%%PORTVERSION%%/opcodes/riscv.sdb
435
%%DATADIR%%/%%PORTVERSION%%/opcodes/sh.sdb
436
%%DATADIR%%/%%PORTVERSION%%/opcodes/sparc.sdb
437
%%DATADIR%%/%%PORTVERSION%%/opcodes/sysz.sdb
438
%%DATADIR%%/%%PORTVERSION%%/opcodes/tms320.sdb
439
%%DATADIR%%/%%PORTVERSION%%/opcodes/v810.sdb
440
%%DATADIR%%/%%PORTVERSION%%/opcodes/x86.sdb
441
%%DATADIR%%/%%PORTVERSION%%/opcodes/xtensa.sdb
442
%%DATADIR%%/%%PORTVERSION%%/opcodes/z80.sdb
443
%%DATADIR%%/%%PORTVERSION%%/syscall/darwin-arm-32.sdb
444
%%DATADIR%%/%%PORTVERSION%%/syscall/darwin-arm-64.sdb
445
%%DATADIR%%/%%PORTVERSION%%/syscall/darwin-x86-32.sdb
446
%%DATADIR%%/%%PORTVERSION%%/syscall/darwin-x86-64.sdb
447
%%DATADIR%%/%%PORTVERSION%%/syscall/dos-x86-16.sdb
448
%%DATADIR%%/%%PORTVERSION%%/syscall/freebsd-x86-32.sdb
449
%%DATADIR%%/%%PORTVERSION%%/syscall/ios-arm-32.sdb
450
%%DATADIR%%/%%PORTVERSION%%/syscall/ios-arm-64.sdb
451
%%DATADIR%%/%%PORTVERSION%%/syscall/ios-x86-32.sdb
452
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-arm-32.sdb
453
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-arm-64.sdb
454
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-mips-32.sdb
455
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-sparc-32.sdb
456
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-x86-32.sdb
457
%%DATADIR%%/%%PORTVERSION%%/syscall/linux-x86-64.sdb
458
%%DATADIR%%/%%PORTVERSION%%/syscall/netbsd-x86-32.sdb
459
%%DATADIR%%/%%PORTVERSION%%/syscall/openbsd-x86-32.sdb
460
%%DATADIR%%/%%PORTVERSION%%/syscall/openbsd-x86-64.sdb
461
%%DATADIR%%/%%PORTVERSION%%/syscall/windows-x86-32.sdb
462
%%DATADIR%%/%%PORTVERSION%%/syscall/windows-x86-64.sdb
428
%%DATADIR%%/%%PORTVERSION%%/www/console.html
463
%%DATADIR%%/%%PORTVERSION%%/www/console.html
429
%%DATADIR%%/%%PORTVERSION%%/www/d3/d3.js
464
%%DATADIR%%/%%PORTVERSION%%/www/d3/d3.js
430
%%DATADIR%%/%%PORTVERSION%%/www/d3/d3.layout.js
465
%%DATADIR%%/%%PORTVERSION%%/www/d3/d3.layout.js
Lines 469-495 Link Here
469
%%DATADIR%%/%%PORTVERSION%%/www/index.html
504
%%DATADIR%%/%%PORTVERSION%%/www/index.html
470
%%DATADIR%%/%%PORTVERSION%%/www/index.old.html
505
%%DATADIR%%/%%PORTVERSION%%/www/index.old.html
471
%%DATADIR%%/%%PORTVERSION%%/www/log.html
506
%%DATADIR%%/%%PORTVERSION%%/www/log.html
507
%%DATADIR%%/%%PORTVERSION%%/www/m/app.js
472
%%DATADIR%%/%%PORTVERSION%%/www/m/disasmNavProvider.js
508
%%DATADIR%%/%%PORTVERSION%%/www/m/disasmNavProvider.js
473
%%DATADIR%%/%%PORTVERSION%%/www/m/disasmProvider.js
509
%%DATADIR%%/%%PORTVERSION%%/www/m/disasmProvider.js
474
%%DATADIR%%/%%PORTVERSION%%/www/m/hexchunkProvider.js
510
%%DATADIR%%/%%PORTVERSION%%/www/m/hexchunkProvider.js
475
%%DATADIR%%/%%PORTVERSION%%/www/m/hsplit
476
%%DATADIR%%/%%PORTVERSION%%/www/m/images/icon.png
511
%%DATADIR%%/%%PORTVERSION%%/www/m/images/icon.png
477
%%DATADIR%%/%%PORTVERSION%%/www/m/images/rlogo256.png
512
%%DATADIR%%/%%PORTVERSION%%/www/m/images/rlogo256.png
478
%%DATADIR%%/%%PORTVERSION%%/www/m/images/user.jpg
513
%%DATADIR%%/%%PORTVERSION%%/www/m/images/user.jpg
479
%%DATADIR%%/%%PORTVERSION%%/www/m/index.html
514
%%DATADIR%%/%%PORTVERSION%%/www/m/index.html
480
%%DATADIR%%/%%PORTVERSION%%/www/m/index.js
515
%%DATADIR%%/%%PORTVERSION%%/www/m/legacy.js
481
%%DATADIR%%/%%PORTVERSION%%/www/m/r2.js
516
%%DATADIR%%/%%PORTVERSION%%/www/m/r2.js
482
%%DATADIR%%/%%PORTVERSION%%/www/m/stylesheet.css
517
%%DATADIR%%/%%PORTVERSION%%/www/m/stylesheet.css
483
%%DATADIR%%/%%PORTVERSION%%/www/m/tools.js
484
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/FileSaver.min.js
518
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/FileSaver.min.js
485
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/dialog-polyfill.css
519
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/dialog-polyfill.css
486
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/dialog-polyfill.js
520
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/dialog-polyfill.js
487
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.eot
488
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.ijmap
489
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.ttf
490
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.woff
521
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.woff
491
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/MaterialIcons-Regular.woff2
492
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/README.md
493
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-italic-400.woff
522
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-italic-400.woff
494
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-italic-700.woff
523
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-italic-700.woff
495
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-100.woff
524
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-100.woff
Lines 498-506 Link Here
498
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-500.woff
527
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-500.woff
499
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-700.woff
528
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-700.woff
500
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-900.woff
529
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/Roboto-normal-900.woff
501
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/codepoints
502
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/fonts.css
530
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/fonts.css
503
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/fonts/iconjar-map.js
504
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_asc.png
531
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_asc.png
505
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_asc_disabled.png
532
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_asc_disabled.png
506
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_both.png
533
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/images/sort_both.png
Lines 514-524 Link Here
514
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/material.min.js
541
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/material.min.js
515
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/mdl-selectfield.min.css
542
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/mdl-selectfield.min.css
516
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/mdl-selectfield.min.js
543
%%DATADIR%%/%%PORTVERSION%%/www/m/vendors/mdl-selectfield.min.js
517
%%DATADIR%%/%%PORTVERSION%%/www/m/vsplit
518
%%DATADIR%%/%%PORTVERSION%%/www/old/index.html
544
%%DATADIR%%/%%PORTVERSION%%/www/old/index.html
519
%%DATADIR%%/%%PORTVERSION%%/www/old/rlogo2.png
545
%%DATADIR%%/%%PORTVERSION%%/www/old/rlogo2.png
520
%%DATADIR%%/%%PORTVERSION%%/www/old/script.js
546
%%DATADIR%%/%%PORTVERSION%%/www/old/script.js
521
%%DATADIR%%/%%PORTVERSION%%/www/old/style.css
547
%%DATADIR%%/%%PORTVERSION%%/www/old/style.css
548
%%DATADIR%%/%%PORTVERSION%%/www/p/dependencies.css
549
%%DATADIR%%/%%PORTVERSION%%/www/p/dependencies.js
550
%%DATADIR%%/%%PORTVERSION%%/www/p/index.html
551
%%DATADIR%%/%%PORTVERSION%%/www/p/main.js
552
%%DATADIR%%/%%PORTVERSION%%/www/p/panels.js
553
%%DATADIR%%/%%PORTVERSION%%/www/p/r2core.css
554
%%DATADIR%%/%%PORTVERSION%%/www/p/r2core.js
555
%%DATADIR%%/%%PORTVERSION%%/www/p/rlogo-inv.png
556
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/backbone-min.js
557
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/dagre.core.js
558
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/graphlib.core.js
559
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/joint.layout.DirectedGraph.js
560
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/joint.layout.DirectedGraph.min.js
561
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/joint.min.css
562
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/joint.min.js
563
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery-ui.min.js
564
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.layout-latest.min.js
565
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.min.js
566
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.onoff.css
567
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.onoff.min.js
568
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.scrollTo.min.js
569
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/jquery.ui-contextmenu.min.js
570
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/layout-default-latest.css
571
%%DATADIR%%/%%PORTVERSION%%/www/p/vendors/lodash.min.js
522
%%DATADIR%%/%%PORTVERSION%%/www/r2.svg
572
%%DATADIR%%/%%PORTVERSION%%/www/r2.svg
523
%%DATADIR%%/%%PORTVERSION%%/www/rlogo.png
573
%%DATADIR%%/%%PORTVERSION%%/www/rlogo.png
524
%%DATADIR%%/%%PORTVERSION%%/www/t/app.js
574
%%DATADIR%%/%%PORTVERSION%%/www/t/app.js

Return to bug 222931