This file is indexed.

/usr/share/doc/racc/README.ja.html is in racc 1.4.14-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" ?>
<!DOCTYPE html 
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>README.ja</title>
</head>
<body>
<h1><a name="label-0" id="label-0">Racc</a></h1><!-- RDLabel: "Racc" -->
<ul>
<li>http://i.loveruby.net/en/projects/racc/</li>
<li>http://racc.rubyforge.org/</li>
</ul>
<h2><a name="label-1" id="label-1">DESCRIPTION:</a></h2><!-- RDLabel: "DESCRIPTION:" -->
<pre>Racc は LALR(1) パーサジェネレータです。
yacc の Ruby 版に相当します。

NOTE:
Ruby 1.8.0 からは Racc のランタイムが標準添付されているので、
Racc で生成したパーサを安心して配布できます。また Ruby 1.6 系に
対応させたい場合は racc -E で生成してください。</pre>
<h2><a name="label-2" id="label-2">必要環境</a></h2><!-- RDLabel: "必要環境" -->
<ul>
<li>Ruby 1.8 以降</li>
</ul>
<pre>(*) C コンパイラと make</pre>
<h2><a name="label-3" id="label-3">インストール</a></h2><!-- RDLabel: "インストール" -->
<pre>gem インストール:

  $ gem install racc

setup.rb インストル:

パッケージのトップディレクトリで次のように入力してください。
($ は通常ユーザ、# はルートのプロンプトです)

    $ ruby setup.rb config
    $ ruby setup.rb setup
   ($ su)
    # ruby setup.rb install

これで通常のパスに Racc がインストールされます。自分の好き
なディレクトリにインストールしたいときは、setup.rb config に
各種オプションをつけて実行してください。オプションのリストは

    $ ruby setup.rb --help

で見られます。


コンパイラがない場合
--------------------

config を以下のようにすれば、拡張モジュールなしで
インストールできます。

    $ ruby setup.rb config --without-ext</pre>
<h2><a name="label-4" id="label-4">テスト</a></h2><!-- RDLabel: "テスト" -->
<pre>sample/ 以下にいくつか Racc の文法ファイルのサンプルが用意
してあります。動くのも動かないのもありますが、少なくとも
calc-ja.y は動くのでこれを処理してみましょう。Racc をインス
トールしたあと

    $ racc -ocalc.rb calc-ja.y

として下さい。処理は一瞬から数秒で終わるので、

    $ ruby calc.rb

を実行してください。ちゃんと動いてますか?

Racc の文法など詳しいことは doc.ja/ ディレクトリ以下の HTML を
見てください。</pre>
<h2><a name="label-5" id="label-5">ライセンス</a></h2><!-- RDLabel: "ライセンス" -->
<pre>このパッケージに付属するファイルの著作権は青木峰郎が保持します。
ライセンスは GNU Lesser General Public License (LGPL) version 2
です。ただしユーザが書いた規則ファイルや、Racc がそこから生成し
た Ruby スクリプトはその対象外です。好きなライセンスで配布して
ください。</pre>
<h2><a name="label-6" id="label-6">バグなど</a></h2><!-- RDLabel: "バグなど" -->
<pre>Racc を使っていてバグらしき現象に遭遇したら、下記のアドレスまで
メールをください。作者にはバグを修正する義務はありませんがその
意思はあります。また、そのときはできるだけバグを再現できる文法
ファイルを付けてください。


                                       青木峰郎(あおきみねろう)
                                            aamine@loveruby.net
                                          http://i.loveruby.net</pre>

</body>
</html>