PageRenderTime 55ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/dist/unix.html

https://bitbucket.org/rsc/plan9port/
HTML | 234 lines | 168 code | 60 blank | 6 comment | 0 complexity | af510be35679147c1d27381426710e56 MD5 | raw file
Possible License(s): LGPL-2.1, MPL-2.0-no-copyleft-exception, Unlicense
  1. <html>
  2. <!--
  3. Edit ./^$/,s/<table border=0 cellspacing=0 cellpadding=0 width=100%/<Table/g
  4. Edit ./^$/,s/<Table/<table border=0 cellspacing=0 cellpadding=0 width=100%/g
  5. -->
  6. <head>
  7. <base href="http://swtch.com/plan9port/unix/">
  8. <title>Unix Software from Plan 9</title>
  9. </head>
  10. <body bgcolor=#ffffff>
  11. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  12. <tr height=10><td width=20><td><td width=20>
  13. <tr><td><td>
  14. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  15. <center>
  16. <font size=+1><b>Unix Software from Plan 9</b></font>
  17. </center>
  18. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  19. These are ports of <a href="http://plan9.bell-labs.com/plan9">Plan 9</a>'s
  20. UTF-8, formatted print, buffered I/O, and regular expression
  21. libraries, along with mk, a simple replacement for make.
  22. <p>
  23. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  24. <b>supported systems</b>
  25. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  26. <tr height=10><td width=20><td>
  27. <tr><td><td>
  28. Digital Unix OSF1 <font size=-1>(Alpha)</font>,
  29. Linux <font size=-1>(x86 and PowerPC)</font>,
  30. FreeBSD <font size=-1>(x86)</font>,
  31. NetBSD <font size=-1>(x86)</font>,
  32. Mac OS X <font size=-1>(Power PC)</font>,
  33. OpenBSD <font size=-1>(x86)</font>,
  34. SunOS <font size=-1>(Sparc)</font>
  35. </table>
  36. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  37. <b>installation</b>
  38. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  39. <tr height=10><td width=20><td>
  40. <tr><td><td>
  41. Links to source tgzs are below.
  42. On supported systems, extract and <font size=+1><tt>make install</tt></font>.
  43. The default installation target is <font size=+1><tt>/usr/local</tt></font>. To install elsewhere,
  44. <font size=+1><tt>make PREFIX=/usr/elsewhere install</tt></font>.
  45. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  46. On unsupported systems, you will need to create
  47. <font size=+1><tt>Make.<i>YourOS</i>-<i>YourArch</i></tt></font>.
  48. See the existing ones for examples. If you write one for a new system,
  49. please send it to us for inclusion in the tar files.
  50. </table>
  51. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  52. <b>libutf</b>
  53. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  54. <tr height=10><td width=20><td>
  55. <tr><td><td>
  56. Libutf is a port of Plan 9's support library for UTF-8 and Unicode.
  57. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  58. <font size=-1>manual:</font>
  59. <!-- [ 9 man -w `{nm /usr/local/lib/libutf.a | awk '$2=="T" {print $3}'} ]-->
  60. <a href="man/isalpharune3.html"><i>isalpharune</i>(3)</a>,
  61. <a href="man/rune3.html"><i>rune</i>(3)</a>,
  62. <a href="man/runestrcat3.html"><i>runestrcat</i>(3)</a>,
  63. <a href="man/utf7.html"><i>utf</i>(7)</a>
  64. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  65. <font size=-1>download:</font> <a href="libutf.tgz">libutf.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/libutf.tgz">checksums</a>)</font>
  66. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  67. <font size=-1>license: original <a href="license-bl.txt">Bell Labs MIT-like</a>
  68. or <a href="http://plan9.bell-labs.com/plan9dist/license.html">Lucent Public License</a></font>
  69. </table>
  70. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  71. <b>libfmt</b>
  72. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  73. <tr height=10><td width=20><td>
  74. <tr><td><td>
  75. Libfmt is a port of Plan 9's formatted print library.
  76. As a base it provides all the syntax of ANSI C's printf but adds
  77. the ability for client programs to install new print verbs.
  78. One such print verb (installed by default) is <font size=+1><tt>%r</tt></font>, which prints
  79. the system error string.
  80. Instead of <font size=+1><tt>perror("foo")</tt></font>, you can write
  81. <font size=+1><tt>fprint(2, "foo: %r\n");</tt></font>.
  82. This is especially nice when you write verbs to format the
  83. data structures used by your particular programs.
  84. Needs libutf.
  85. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  86. <font size=-1>manual:</font>
  87. <!-- [ 9 man -w `{nm /usr/local/lib/libfmt.a | awk '$2=="T" {print $3}'} ]-->
  88. <a href="man/print3.html"><i>print</i>(3)</a>,
  89. <a href="man/fmtinstall3.html"><i>fmtinstall</i>(3)</a>,
  90. <a href="man/quote3.html"><i>quote</i>(3)</a>,
  91. <a href="man/fmtstrtod3.html"><i>fmtstrtod</i>(3)</a>
  92. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  93. <font size=-1>download:</font> <a href="libfmt.tgz">libfmt.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/libfmt.tgz">checksums</a>)</font>
  94. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  95. <font size=-1>License: original <a href="license-bl.txt">Bell Labs MIT-like</a>
  96. or <a href="http://plan9.bell-labs.com/plan9dist/license.html">Lucent Public License</a></font>
  97. </table>
  98. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  99. <b>libbio</b>
  100. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  101. <tr height=10><td width=20><td>
  102. <tr><td><td>
  103. Libbio is a port of Plan 9's buffered I/O library.
  104. It provides most of the same functionality as stdio or sfio,
  105. but with a simpler interface and smaller footprint.
  106. Needs libutf and libfmt.
  107. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  108. <font size=-1>manual:</font>
  109. <a href="man/bio3.html"><i>bio</i>(3)</a>
  110. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  111. <font size=-1>download:</font> <a href="libbio.tgz">libbio.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/libbio.tgz">checksums</a>)</font>
  112. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  113. <font size=-1>License: <a href="license-vn.txt">Vita Nuova MIT-like</a>
  114. or <a href="http://plan9.bell-labs.com/plan9dist/license.html">Lucent Public License</a></font>
  115. </table>
  116. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  117. <b>libregexp9</b>
  118. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  119. <tr height=10><td width=20><td>
  120. <tr><td><td>
  121. Libregexp9 is a port of Plan 9's Unicode-capable regular expression library.
  122. It is small and simple and provides the traditional extended regular
  123. expressions (without modern complications like
  124. <font size=+1><tt>{}</tt></font> and various <font size=+1><tt>\x</tt></font> character classes).
  125. It supports Unicode via wide character or UTF-8 encoding.
  126. Needs libutf and libfmt.
  127. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  128. <font size=-1>manual:</font>
  129. <a href="man/regexp93.html"><i>regexp9</i>(3)</a>,
  130. <a href="man/regexp97.html"><i>regexp9</i>(7)</a>
  131. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  132. <font size=-1>download:</font> <a href="libregexp9.tgz">libregexp9.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/libregexp9.tgz">checksums</a>)</font>
  133. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  134. <font size=-1>License: original <a href="license-bl.txt">Bell Labs MIT-like</a>
  135. or <a href="http://plan9.bell-labs.com/plan9dist/license.html">Lucent Public License</a></font>
  136. </table>
  137. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  138. <b>mk</b>
  139. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  140. <tr height=10><td width=20><td>
  141. <tr><td><td>
  142. Mk is a simple replacement for <i>make</i>.
  143. Needs libutf, libfmt, libbio, and libregexp9.
  144. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  145. <font size=-1>manual:</font>
  146. <a href="man/mk1.html"><i>mk</i>(1)</a>
  147. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  148. <font size=-1>download:</font> <a href="mk.tgz">mk.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/mk.tgz">checksums</a>)</font>
  149. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  150. <font size=-1>License: <a href="license-vn.txt">Vita Nuova MIT-like</a>
  151. or <a href="http://plan9.bell-labs.com/plan9dist/license.html">Lucent Public License</a></font>
  152. </table>
  153. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  154. <b>one with everything</b>
  155. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  156. <tr height=10><td width=20><td>
  157. <tr><td><td>
  158. Includes mk and all the libraries.
  159. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
  160. <font size=-1>download:</font> <a href="mk-with-libs.tgz">mk-with-libs.tgz</a> <font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/unix/mk-with-libs.tgz">checksums</a>)</font>
  161. </table>
  162. <table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=20><td></table>
  163. <b>contact</b>
  164. <table border=0 cellspacing=0 cellpadding=0 width=100%>
  165. <tr height=10><td width=20><td>
  166. <tr><td><td>
  167. Russ Cox <font size=-1>(<a href="mailto:rsc@swtch.com">rsc@swtch.com</a>)
  168. </table>
  169. <tr height=10><td>
  170. <tr><td><td><center><a href=".."><img src="../dist/spaceglenda100.png" border=1 alt="Space Glenda"></a></center>
  171. <tr height=10><td>
  172. </table>
  173. </body>
  174. </html>