pkgsrc/lang/onyx/PLIST

216 lines
7.2 KiB
Text
Raw Normal View History

2009-06-14 20:03:28 +02:00
@comment $NetBSD: PLIST,v 1.6 2009/06/14 18:03:37 joerg Exp $
bin/onyx
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
bin/${PKGNAME}
bin/onyx_config
bin/onyx_config-${PKGVERSION}
include/libonyx/ch.h
include/libonyx/cnd.h
include/libonyx/dch.h
include/libonyx/gcdict.h
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
include/libonyx/libonyx.h
include/libonyx/libonyx_defs.h
include/libonyx/mb.h
include/libonyx/mem.h
include/libonyx/mq.h
include/libonyx/mtx.h
include/libonyx/nx.h
include/libonyx/nxa.h
include/libonyx/nxm.h
include/libonyx/nxn.h
include/libonyx/nxo.h
include/libonyx/nxo_array.h
include/libonyx/nxo_boolean.h
include/libonyx/nxo_class.h
include/libonyx/nxo_condition.h
include/libonyx/nxo_dict.h
include/libonyx/nxo_file.h
include/libonyx/nxo_fino.h
include/libonyx/nxo_handle.h
include/libonyx/nxo_instance.h
include/libonyx/nxo_integer.h
include/libonyx/nxo_mark.h
include/libonyx/nxo_mutex.h
include/libonyx/nxo_name.h
include/libonyx/nxo_no.h
include/libonyx/nxo_null.h
include/libonyx/nxo_operator.h
include/libonyx/nxo_pmark.h
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
include/libonyx/nxo_real.h
include/libonyx/nxo_regex.h
include/libonyx/nxo_regsub.h
include/libonyx/nxo_stack.h
include/libonyx/nxo_string.h
include/libonyx/nxo_thread.h
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
include/libonyx/ql.h
include/libonyx/qr.h
include/libonyx/qs.h
include/libonyx/systemdict.h
include/libonyx/thd.h
include/libonyx/tsd.h
include/libonyx/xep.h
lib/libonyx.a
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
lib/libonyx.so
lib/libonyx.so.13
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
man/man1/onyx.1
man/man1/onyx_config.1
share/${PKGNAME}/libonyx/libonyx_init.nx
share/${PKGNAME}/nx/modclopt/clopt.nx
share/${PKGNAME}/nx/modclopt/modclopt.nx
share/${PKGNAME}/nx/modclopt/modclopt_defs.nx
update to latest oynx release, 4.1.0. changes to oynx language are: * Treat evaluatable names specially when binding (don't bind them), in order to make it possible to force dynamic lookup of names, without having to resort to using the load operator on literal names. This required a language syntax change so that evaluatable names can be created in deferred execution mode. The possibilities for specifying an evaluatable name were $$$name, $#name, or adding a new special character. Since neither of the backward compatible syntax changes were very palatable, two new special characters were added. !name creates an evaluatable name, and the former $$name syntax is now written as ~name for consistency. * Add operators: + bindsocket + listen + accept + send + recv * bin/onyx_config : Add onyx_config, which aids in building software that uses libonyx. * lib/libonyx/src/nxo_string.c:nxo_string_cstring() : Handle name objects as well as string objects. * Add operators: + serviceport + sockname + peername + sockopt + setsockopt * Add the neterror error. * Add the ncat operator. * Remove the fork operator and replace it with the forkexec operator. Doing anything between fork() and exec() in a multi-threaded application risks hanging. * Revise string and pointer hashing functions to marginally improve performance. * Add operators: + socket + socketpair + connect * Add operators: + nonblocking + setnonblocking * Modify the write operator to return whether a write was partial or not. This is necessary for non-blocking files. * Change language syntax. The / special character is now $. * Modify the mkdir operator such that specifying the mode is optional. * Add operators: + chroot + mkfifo + pipe + readlink + umask * Remove "fast" operator support, since it wasn't very fast. Performance without fast operators is +-3% of what it was with fast operator support, for typical programs. * Add operators: + inc, dec + while, until * Remove operators: + cleardstack * Change language syntax: + Radix integers are <base>@<value> instead of <base>#<value>. + Comments start with #, not %. + Add special characters in strings: - `\0' : Nul character (nul), equivalent to `\x00'. - `\cC' : Control C, where C is [A-Za-z]. - `\a' : Alarm (bel). - `\e' : Escape (ec). * Add operators: + threadsdict + threaddstack, threadestack, threadistack, threadostack * Remove operators: + #! + !# Add operators: + rot, srot + adn, aup + saup, sadn Rename/replace operators: + push --> adn + npush/nbpush --> rot + snpush/snbpush --> srot Remove operators: + push * lib/libonyx/src/systemdict.c : Add operators: + bpop, nbpop, ipop, nip, tuck, under, over, up, nup, dn, ndn, bdup, ibdup, ibpop, bpush + sbpop, snbpop, sipop, snip, stuck, sunder, sover, sup, snup, sdn, sndn, sndup, snpop, sbdup, sibdup, sibpop, sbpush * Rename operators: + index --> idup + sindex --> sidup * Add operators: + poll + gstdin, gstdout, gstderr + setstdin, setstdout, setstderr + setgstdin, setgstdout, setgstderr * Add optional mode argument to the open operator. XXX: TODO: pthread.buildlink*.mk support.
2002-11-11 12:10:41 +01:00
share/${PKGNAME}/nx/modprompt/modprompt.nx
share/${PKGNAME}/nx/modprompt/modprompt_defs.nx
share/${PKGNAME}/nxm/modprompt.nxm
share/doc/${PKGNAME}/html/contents.png
share/doc/${PKGNAME}/html/img1.png
share/doc/${PKGNAME}/html/img10.png
share/doc/${PKGNAME}/html/img11.png
share/doc/${PKGNAME}/html/img12.png
share/doc/${PKGNAME}/html/img13.png
share/doc/${PKGNAME}/html/img14.png
share/doc/${PKGNAME}/html/img15.png
share/doc/${PKGNAME}/html/img2.png
share/doc/${PKGNAME}/html/img3.png
share/doc/${PKGNAME}/html/img4.png
share/doc/${PKGNAME}/html/img5.png
share/doc/${PKGNAME}/html/img6.png
share/doc/${PKGNAME}/html/img7.png
share/doc/${PKGNAME}/html/img8.png
share/doc/${PKGNAME}/html/img9.png
share/doc/${PKGNAME}/html/index.html
share/doc/${PKGNAME}/html/index.png
share/doc/${PKGNAME}/html/next.png
share/doc/${PKGNAME}/html/next_g.png
share/doc/${PKGNAME}/html/node1.html
share/doc/${PKGNAME}/html/node10.html
share/doc/${PKGNAME}/html/node100.html
share/doc/${PKGNAME}/html/node11.html
share/doc/${PKGNAME}/html/node101.html
share/doc/${PKGNAME}/html/node102.html
share/doc/${PKGNAME}/html/node103.html
share/doc/${PKGNAME}/html/node104.html
share/doc/${PKGNAME}/html/node105.html
share/doc/${PKGNAME}/html/node106.html
share/doc/${PKGNAME}/html/node107.html
share/doc/${PKGNAME}/html/node108.html
share/doc/${PKGNAME}/html/node109.html
share/doc/${PKGNAME}/html/node110.html
share/doc/${PKGNAME}/html/node111.html
share/doc/${PKGNAME}/html/node112.html
share/doc/${PKGNAME}/html/node113.html
share/doc/${PKGNAME}/html/node114.html
share/doc/${PKGNAME}/html/node115.html
share/doc/${PKGNAME}/html/node116.html
share/doc/${PKGNAME}/html/node117.html
share/doc/${PKGNAME}/html/node118.html
share/doc/${PKGNAME}/html/node119.html
share/doc/${PKGNAME}/html/node12.html
share/doc/${PKGNAME}/html/node120.html
share/doc/${PKGNAME}/html/node121.html
share/doc/${PKGNAME}/html/node122.html
share/doc/${PKGNAME}/html/node123.html
share/doc/${PKGNAME}/html/node124.html
share/doc/${PKGNAME}/html/node13.html
share/doc/${PKGNAME}/html/node14.html
share/doc/${PKGNAME}/html/node15.html
share/doc/${PKGNAME}/html/node16.html
share/doc/${PKGNAME}/html/node17.html
share/doc/${PKGNAME}/html/node18.html
share/doc/${PKGNAME}/html/node19.html
share/doc/${PKGNAME}/html/node2.html
share/doc/${PKGNAME}/html/node20.html
share/doc/${PKGNAME}/html/node21.html
share/doc/${PKGNAME}/html/node22.html
share/doc/${PKGNAME}/html/node23.html
share/doc/${PKGNAME}/html/node24.html
share/doc/${PKGNAME}/html/node25.html
share/doc/${PKGNAME}/html/node26.html
share/doc/${PKGNAME}/html/node27.html
share/doc/${PKGNAME}/html/node28.html
share/doc/${PKGNAME}/html/node29.html
share/doc/${PKGNAME}/html/node3.html
share/doc/${PKGNAME}/html/node30.html
share/doc/${PKGNAME}/html/up.png
share/doc/${PKGNAME}/html/node31.html
share/doc/${PKGNAME}/html/node32.html
share/doc/${PKGNAME}/html/node33.html
share/doc/${PKGNAME}/html/node34.html
share/doc/${PKGNAME}/html/node35.html
share/doc/${PKGNAME}/html/node36.html
share/doc/${PKGNAME}/html/node37.html
share/doc/${PKGNAME}/html/node38.html
share/doc/${PKGNAME}/html/node39.html
share/doc/${PKGNAME}/html/node4.html
share/doc/${PKGNAME}/html/node40.html
share/doc/${PKGNAME}/html/node41.html
share/doc/${PKGNAME}/html/node42.html
share/doc/${PKGNAME}/html/node43.html
share/doc/${PKGNAME}/html/node44.html
share/doc/${PKGNAME}/html/node45.html
share/doc/${PKGNAME}/html/node46.html
share/doc/${PKGNAME}/html/node47.html
share/doc/${PKGNAME}/html/node48.html
share/doc/${PKGNAME}/html/node49.html
share/doc/${PKGNAME}/html/node5.html
share/doc/${PKGNAME}/html/node50.html
share/doc/${PKGNAME}/html/node51.html
share/doc/${PKGNAME}/html/node52.html
share/doc/${PKGNAME}/html/node53.html
share/doc/${PKGNAME}/html/node54.html
share/doc/${PKGNAME}/html/node55.html
share/doc/${PKGNAME}/html/node56.html
share/doc/${PKGNAME}/html/node57.html
share/doc/${PKGNAME}/html/node58.html
share/doc/${PKGNAME}/html/node59.html
share/doc/${PKGNAME}/html/node6.html
share/doc/${PKGNAME}/html/node60.html
share/doc/${PKGNAME}/html/node61.html
share/doc/${PKGNAME}/html/node62.html
share/doc/${PKGNAME}/html/node63.html
share/doc/${PKGNAME}/html/node64.html
share/doc/${PKGNAME}/html/node65.html
share/doc/${PKGNAME}/html/node66.html
share/doc/${PKGNAME}/html/node67.html
share/doc/${PKGNAME}/html/node68.html
share/doc/${PKGNAME}/html/node69.html
share/doc/${PKGNAME}/html/node7.html
share/doc/${PKGNAME}/html/node70.html
share/doc/${PKGNAME}/html/node71.html
share/doc/${PKGNAME}/html/node72.html
share/doc/${PKGNAME}/html/node73.html
share/doc/${PKGNAME}/html/node74.html
share/doc/${PKGNAME}/html/node75.html
share/doc/${PKGNAME}/html/node76.html
share/doc/${PKGNAME}/html/node77.html
share/doc/${PKGNAME}/html/node78.html
share/doc/${PKGNAME}/html/node79.html
share/doc/${PKGNAME}/html/node8.html
share/doc/${PKGNAME}/html/node80.html
share/doc/${PKGNAME}/html/node81.html
share/doc/${PKGNAME}/html/node82.html
share/doc/${PKGNAME}/html/node83.html
share/doc/${PKGNAME}/html/node84.html
share/doc/${PKGNAME}/html/node85.html
share/doc/${PKGNAME}/html/node86.html
share/doc/${PKGNAME}/html/node87.html
share/doc/${PKGNAME}/html/node88.html
share/doc/${PKGNAME}/html/node89.html
share/doc/${PKGNAME}/html/node9.html
share/doc/${PKGNAME}/html/node90.html
share/doc/${PKGNAME}/html/node91.html
share/doc/${PKGNAME}/html/node92.html
share/doc/${PKGNAME}/html/node93.html
share/doc/${PKGNAME}/html/node94.html
share/doc/${PKGNAME}/html/node95.html
share/doc/${PKGNAME}/html/node96.html
share/doc/${PKGNAME}/html/node97.html
share/doc/${PKGNAME}/html/node98.html
share/doc/${PKGNAME}/html/node99.html
share/doc/${PKGNAME}/html/onyx.css
share/doc/${PKGNAME}/html/onyx.html
share/doc/${PKGNAME}/html/prev.png
share/doc/${PKGNAME}/html/prev_g.png
share/doc/${PKGNAME}/html/up_g.png
share/doc/${PKGNAME}/pdf/onyx.pdf
share/doc/onyx
share/onyx