perlmodinstall >
5.10.1
との差分
perlmodinstall 5.10.1 と 5.32.0 の差分
1 | 1 | |
2 | 2 | =encoding utf8 |
3 | 3 | |
4 | 4 | =head1 NAME |
5 | 5 | |
6 | 6 | =begin original |
7 | 7 | |
8 | 8 | perlmodinstall - Installing CPAN Modules |
9 | 9 | |
10 | 10 | =end original |
11 | 11 | |
12 | 12 | perlmodinstall - CPAN モジュールのインストール |
13 | 13 | |
14 | 14 | =head1 DESCRIPTION |
15 | 15 | |
16 | 16 | =begin original |
17 | 17 | |
18 | 18 | You can think of a module as the fundamental unit of reusable Perl |
19 | 19 | code; see L<perlmod> for details. Whenever anyone creates a chunk of |
20 | 20 | Perl code that they think will be useful to the world, they register |
21 | as a Perl developer at http://www.cpan.org/modules/04pause.html | |
21 | as a Perl developer at L<https://www.cpan.org/modules/04pause.html> | |
22 | 22 | so that they can then upload their code to the CPAN. The CPAN is the |
23 | 23 | Comprehensive Perl Archive Network and can be accessed at |
24 | http://www.cpan.org/ , and searched at http:// | |
24 | L<https://www.cpan.org/> , and searched at L<https://metacpan.org/> . | |
25 | 25 | |
26 | 26 | =end original |
27 | 27 | |
28 | 28 | モジュールは、再利用可能な Perl コードの基本単位と考えることができます; |
29 | 29 | 詳しくは、L<perlmod> を参照してください。 |
30 | 30 | 誰かが世界に役立つと思う Perl コードの塊を作成したら、 |
31 | http://www.cpan.org/modules/04pause.html に Perl 開発者として登録し、 | |
31 | L<https://www.cpan.org/modules/04pause.html> に Perl 開発者として登録し、 | |
32 | 32 | CPAN にコードをアップロードできるようにします。 |
33 | 33 | CPAN は Comprehensive Perl Archive Network で、 |
34 | http://www.cpan.org/ でアクセスでき、http:// | |
34 | L<https://www.cpan.org/> でアクセスでき、L<https://metacpan.org/> で | |
35 | 検索できます。 | |
35 | 36 | |
36 | 37 | =begin original |
37 | 38 | |
38 | 39 | This documentation is for people who want to download CPAN modules |
39 | 40 | and install them on their own computer. |
40 | 41 | |
41 | 42 | =end original |
42 | 43 | |
43 | 44 | この文書は、CPAN モジュールをダウンロードして自分のコンピュータに |
44 | 45 | インストールしたい人のためのものです。 |
45 | 46 | |
46 | 47 | =head2 PREAMBLE |
47 | 48 | |
48 | 49 | =begin original |
49 | 50 | |
50 | 51 | First, are you sure that the module isn't already on your system? Try |
51 | 52 | C<perl -MFoo -e 1>. (Replace "Foo" with the name of the module; for |
52 | instance, C<perl -MCGI::Carp -e 1>. | |
53 | instance, C<perl -MCGI::Carp -e 1>.) | |
53 | 54 | |
54 | 55 | =end original |
55 | 56 | |
56 | 57 | まず、モジュールがまだシステムにインストールされていないことを |
57 | 58 | 確認しましたか? |
58 | C<perl -MFoo -e 1> を試してみてください | |
59 | C<perl -MFoo -e 1> を試してみてください。 | |
59 | ||
60 | ("Foo" をモジュールの名前に置き換え、 | |
61 | 例えば C<perl -MCGI::Carp -e 1> のようにします。) | |
60 | 62 | |
61 | 63 | =begin original |
62 | 64 | |
63 | 65 | If you don't see an error message, you have the module. (If you do |
64 | 66 | see an error message, it's still possible you have the module, but |
65 | 67 | that it's not in your path, which you can display with C<perl -e |
66 | 68 | "print qq(@INC)">.) For the remainder of this document, we'll assume |
67 | 69 | that you really honestly truly lack an installed module, but have |
68 | 70 | found it on the CPAN. |
69 | 71 | |
70 | 72 | =end original |
71 | 73 | |
72 | 74 | エラーメッセージが表示されない場合は、モジュールがあります |
73 | 75 | (エラーメッセージが表示された場合は、モジュールはまだありますが、 |
74 | 76 | そのモジュールがパスにない可能性があります。 |
75 | 77 | パスは C<perl -e "print qq(@INC)"> で表示できます)。 |
76 | 78 | この文書の残りの部分では、そのモジュールは実際に本当に絶対に |
77 | 79 | インストールされておらず、 |
78 | 80 | しかし CPAN 上にはモジュールがあると仮定します。 |
79 | 81 | |
80 | 82 | =begin original |
81 | 83 | |
82 | 84 | So now you have a file ending in .tar.gz (or, less often, .zip). You |
83 | 85 | know there's a tasty module inside. There are four steps you must now |
84 | 86 | take: |
85 | 87 | |
86 | 88 | =end original |
87 | 89 | |
88 | 90 | それで、今あなたは .tar.gz (または、それほど頻繁ではありませんが .zip)で |
89 | 91 | 終わるファイルを持っています。 |
90 | 92 | 中においしいモジュールがあることは知っています。 |
91 | 93 | 次の四つのステップを踏む必要があります: |
92 | 94 | |
93 | 95 | =over 5 |
94 | 96 | |
95 | 97 | =item B<DECOMPRESS> the file |
96 | 98 | |
97 | 99 | (ファイルを B<伸張> する) |
98 | 100 | |
99 | 101 | =item B<UNPACK> the file into a directory |
100 | 102 | |
101 | 103 | (ファイルをディレクトリに B<展開> する) |
102 | 104 | |
103 | 105 | =item B<BUILD> the module (sometimes unnecessary) |
104 | 106 | |
105 | 107 | (モジュールを B<ビルド> する (不要の場合もあります)) |
106 | 108 | |
107 | 109 | =item B<INSTALL> the module. |
108 | 110 | |
109 | 111 | (モジュールを B<インストール> する) |
110 | 112 | |
111 | 113 | =back |
112 | 114 | |
113 | 115 | =begin original |
114 | 116 | |
115 | 117 | Here's how to perform each step for each operating system. This is |
116 | 118 | <not> a substitute for reading the README and INSTALL files that |
117 | 119 | might have come with your module! |
118 | 120 | |
119 | 121 | =end original |
120 | 122 | |
121 | 123 | ここでは、各オペレーティングシステムに対して各ステップを実行する方法を |
122 | 124 | 説明します。 |
123 | 125 | これは、モジュールに付属している README ファイルと INSTALL ファイルを |
124 | 126 | 読む代わりでは <ありません>! |
125 | 127 | |
126 | 128 | =begin original |
127 | 129 | |
128 | 130 | Also note that these instructions are tailored for installing the |
129 | module into your system's repository of Perl modules | |
131 | module into your system's repository of Perl modules, but you can | |
130 | 132 | install modules into any directory you wish. For instance, where I |
131 | 133 | say C<perl Makefile.PL>, you can substitute C<perl Makefile.PL |
132 | 134 | PREFIX=/my/perl_directory> to install the modules into |
133 | ||
135 | F</my/perl_directory>. Then you can use the modules from your Perl | |
134 | 136 | programs with C<use lib "/my/perl_directory/lib/site_perl";> or |
135 | 137 | sometimes just C<use "/my/perl_directory";>. If you're on a system |
136 | 138 | that requires superuser/root access to install modules into the |
137 | 139 | directories you see when you type C<perl -e "print qq(@INC)">, you'll |
138 | 140 | want to install them into a local directory (such as your home |
139 | 141 | directory) and use this approach. |
140 | 142 | |
141 | 143 | =end original |
142 | 144 | |
143 | 145 | また、これらの指示は、システムの Perl モジュールのリポジトリにモジュールを |
144 | インストールするように調整されていることにも注意してください | |
146 | インストールするように調整されていることにも注意してください; | |
145 | 147 | ただし、モジュールは任意のディレクトリにインストールできます。 |
146 | 148 | 例えば、C<perl Makefile.PL> の場合、 |
147 | C< | |
149 | C</my/perl_directory> にインストールするために | |
148 | C</my/perl_directory> | |
150 | C<perl Makefile.PL PREFIX=/my/perl_directory> と | |
149 | ||
151 | 置き換えることができます。 | |
150 | 152 | 次に、Perl プログラムのモジュールを |
151 | 153 | C<use lib "/my/perl_directory/lib/site_perl";> で使用することもできますし、 |
152 | 154 | 場合によっては単に C<use "/my/perl_directory";> で使用することもできます。 |
153 | 155 | C<perl -e "print qq(@INC)"> と入力したときに表示されるディレクトリに |
154 | 156 | モジュールをインストールするためにスーパーユーザー /root アクセスを |
155 | 157 | 必要とするシステムを使用している場合は、ローカルディレクトリ |
156 | 158 | (ホームディレクトリなど)にモジュールをインストールし、 |
157 | 159 | この方法を使用します。 |
158 | 160 | |
159 | 161 | =over 4 |
160 | 162 | |
161 | 163 | =item * |
162 | 164 | |
163 | 165 | =begin original |
164 | 166 | |
165 | 167 | B<If you're on a Unix or Unix-like system,> |
166 | 168 | |
167 | 169 | =end original |
168 | 170 | |
169 | 171 | B<Unix または Unix 風のシステムの場合> |
170 | 172 | |
171 | 173 | =begin original |
172 | 174 | |
173 | 175 | You can use Andreas Koenig's CPAN module |
174 | ( http:// | |
176 | ( L<https://metacpan.org/release/CPAN> ) | |
175 | 177 | to automate the following steps, from DECOMPRESS through INSTALL. |
176 | 178 | |
177 | 179 | =end original |
178 | 180 | |
179 | 181 | Andreas Koenig の CPAN モジュール |
180 | (http://www.cpan.org/modules/by-module/CPAN) を使えば、 | |
182 | (L<http://www.cpan.org/modules/by-module/CPAN>) を使えば、 | |
181 | 183 | DECOMPRESS から INSTALL までのステップを自動化することができます。 |
182 | 184 | |
183 | 185 | =begin original |
184 | 186 | |
185 | 187 | A. DECOMPRESS |
186 | 188 | |
187 | 189 | =end original |
188 | 190 | |
189 | 191 | A. 伸張 |
190 | 192 | |
191 | 193 | =begin original |
192 | 194 | |
193 | 195 | Decompress the file with C<gzip -d yourmodule.tar.gz> |
194 | 196 | |
195 | 197 | =end original |
196 | 198 | |
197 | 199 | C<gzip -d yourmodule.tar.gz> でファイルを伸張します。 |
198 | 200 | |
199 | 201 | =begin original |
200 | 202 | |
201 | You can get gzip from ftp://prep.ai.mit.edu/pub/gnu/ | |
203 | You can get gzip from L<ftp://prep.ai.mit.edu/pub/gnu/> | |
202 | 204 | |
203 | 205 | =end original |
204 | 206 | |
205 | ftp://prep.ai.mit.edu/pub/gnu/ から gzip を入手できます。 | |
207 | L<ftp://prep.ai.mit.edu/pub/gnu/> から gzip を入手できます。 | |
206 | 208 | |
207 | 209 | =begin original |
208 | 210 | |
209 | 211 | Or, you can combine this step with the next to save disk space: |
210 | 212 | |
211 | 213 | =end original |
212 | 214 | |
213 | 215 | または、この手順と次の手順を組み合わせてディスク領域を節約することもできます: |
214 | 216 | |
215 | 217 | gzip -dc yourmodule.tar.gz | tar -xof - |
216 | 218 | |
217 | 219 | =begin original |
218 | 220 | |
219 | 221 | B. UNPACK |
220 | 222 | |
221 | 223 | =end original |
222 | 224 | |
223 | 225 | B. 展開 |
224 | 226 | |
225 | 227 | =begin original |
226 | 228 | |
227 | 229 | Unpack the result with C<tar -xof yourmodule.tar> |
228 | 230 | |
229 | 231 | =end original |
230 | 232 | |
231 | 233 | 結果 をC<tar -xof yourmodule.tar> で展開します。 |
232 | 234 | |
233 | 235 | =begin original |
234 | 236 | |
235 | 237 | C. BUILD |
236 | 238 | |
237 | 239 | =end original |
238 | 240 | |
239 | 241 | C. ビルド |
240 | 242 | |
241 | 243 | =begin original |
242 | 244 | |
243 | 245 | Go into the newly-created directory and type: |
244 | 246 | |
245 | 247 | =end original |
246 | 248 | |
247 | 249 | 新しく作成されたディレクトリに移動し、次のように入力します: |
248 | 250 | |
249 | 251 | perl Makefile.PL |
250 | 252 | make test |
251 | 253 | |
252 | 254 | =begin original |
253 | 255 | |
254 | 256 | or |
255 | 257 | |
256 | 258 | =end original |
257 | 259 | |
258 | 260 | または |
259 | 261 | |
260 | 262 | perl Makefile.PL PREFIX=/my/perl_directory |
261 | 263 | |
262 | 264 | =begin original |
263 | 265 | |
264 | 266 | to install it locally. (Remember that if you do this, you'll have to |
265 | 267 | put C<use lib "/my/perl_directory";> near the top of the program that |
266 | 268 | is to use this module. |
267 | 269 | |
268 | 270 | =end original |
269 | 271 | |
270 | 272 | とするとローカルにインストールします。 |
271 | 273 | (これを行う場合は、このモジュールを使うプログラムの先頭近くに |
272 | 274 | C<use lib "/my/perl_directory";> を置かなければならないことを |
273 | 275 | 覚えておいてください。) |
274 | 276 | |
275 | 277 | =begin original |
276 | 278 | |
277 | 279 | D. INSTALL |
278 | 280 | |
279 | 281 | =end original |
280 | 282 | |
281 | 283 | D. インストール |
282 | 284 | |
283 | 285 | =begin original |
284 | 286 | |
285 | 287 | While still in that directory, type: |
286 | 288 | |
287 | 289 | =end original |
288 | 290 | |
289 | 291 | そのディレクトリにある状態で、次のように入力します: |
290 | 292 | |
291 | 293 | make install |
292 | 294 | |
293 | 295 | =begin original |
294 | 296 | |
295 | 297 | Make sure you have the appropriate permissions to install the module |
296 | 298 | in your Perl 5 library directory. Often, you'll need to be root. |
297 | 299 | |
298 | 300 | =end original |
299 | 301 | |
300 | 302 | モジュールを Perl 5 ライブラリーディレクトリにインストールするための |
301 | 303 | 適切な許可を持っていることを確認してください。 |
302 | 304 | 多くの場合、root になる必要があります。 |
303 | 305 | |
304 | 306 | =begin original |
305 | 307 | |
306 | 308 | That's all you need to do on Unix systems with dynamic linking. |
307 | Most Unix systems have dynamic linking | |
309 | Most Unix systems have dynamic linking. If yours doesn't, or if for | |
308 | 310 | another reason you have a statically-linked perl, B<and> the |
309 | 311 | module requires compilation, you'll need to build a new Perl binary |
310 | 312 | that includes the module. Again, you'll probably need to be root. |
311 | 313 | |
312 | 314 | =end original |
313 | 315 | |
314 | 316 | 動的リンク機能を備えた Unix システムで行う必要があるのはこれだけです。 |
315 | ほとんどの Unix システムには動的リンク機能があります | |
317 | ほとんどの Unix システムには動的リンク機能があります。 | |
316 | 318 | 動的リンク機能がない場合や、別の理由で静的にリンクされた perl を |
317 | 319 | 持っていて、B<かつ> モジュールをコンパイルする必要がある場合は、 |
318 | 320 | このモジュールを含む新しい Perl バイナリを作成する必要があります。 |
319 | 321 | ここでもおそらく root になる必要があります。 |
320 | 322 | |
321 | 323 | =item * |
322 | 324 | |
323 | 325 | =begin original |
324 | 326 | |
325 | B<If you're running ActivePerl (Win95/98/2K/NT/XP, Linux, Solaris)> | |
327 | B<If you're running ActivePerl (Win95/98/2K/NT/XP, Linux, Solaris),> | |
326 | 328 | |
327 | 329 | =end original |
328 | 330 | |
329 | 331 | B<ActivePerl (Win95/98/2K/NT/XP, Linux, Solaris) を実行している場合> |
330 | 332 | |
331 | 333 | =begin original |
332 | 334 | |
333 | 335 | First, type C<ppm> from a shell and see whether ActiveState's PPM |
334 | 336 | repository has your module. If so, you can install it with C<ppm> and |
335 | 337 | you won't have to bother with any of the other steps here. You might |
336 | 338 | be able to use the CPAN instructions from the "Unix or Linux" section |
337 | 339 | above as well; give it a try. Otherwise, you'll have to follow the |
338 | 340 | steps below. |
339 | 341 | |
340 | 342 | =end original |
341 | 343 | |
342 | 344 | まず、シェルから C<ppm> と入力して、ActiveState の PPM リポジトリに |
343 | 345 | あなたのモジュールがあるかどうかを確認します。 |
344 | 346 | もしあるなら、C<ppm> と一緒にインストールすることができますし、 |
345 | 347 | ここで他の手順に煩わされることもありません。 |
346 | 348 | 上の「Unix または Linux」セクションにある CPAN の指示も |
347 | 349 | 使えるかもしれません; 試してみてください。 |
348 | 350 | そうでなければ、以下の手順に従わなければなりません。 |
349 | 351 | |
350 | 352 | A. DECOMPRESS |
351 | 353 | |
352 | 354 | =begin original |
353 | 355 | |
354 | You can use the | |
356 | You can use the | |
357 | open source 7-zip ( L<https://www.7-zip.org/> ) | |
358 | or the shareware Winzip ( L<https://www.winzip.com> ) to | |
355 | 359 | decompress and unpack modules. |
356 | 360 | |
357 | 361 | =end original |
358 | 362 | |
359 | ||
363 | オープンソースの 7-zip (L<https://www.7-zip.org/>) か | |
364 | シェアウェアの Winzip (L<https://www.winzip.com>) を使用して、 | |
360 | 365 | モジュールを伸張および展開できます。 |
361 | 366 | |
362 | 367 | B. UNPACK |
363 | 368 | |
364 | 369 | =begin original |
365 | 370 | |
366 | 371 | If you used WinZip, this was already done for you. |
367 | 372 | |
368 | 373 | =end original |
369 | 374 | |
370 | 375 | WinZip を使用している場合は、これは既に行われています。 |
371 | 376 | |
372 | 377 | C. BUILD |
373 | 378 | |
374 | 379 | =begin original |
375 | 380 | |
376 | 381 | You'll need the C<nmake> utility, available at |
377 | http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exe | |
382 | L<http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exe> | |
378 | 383 | or dmake, available on CPAN. |
379 | http:// | |
384 | L<https://metacpan.org/release/dmake> | |
380 | 385 | |
381 | 386 | =end original |
382 | 387 | |
383 | 388 | C<nmake> ユーティリティ |
384 | (http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exe | |
389 | (L<http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/nmake15.exe> | |
385 | 390 | から入手可能)または dmake (CPAN から入手可能)が必要です。 |
386 | http:// | |
391 | L<https://metacpan.org/release/dmake> | |
387 | 392 | |
388 | 393 | =begin original |
389 | 394 | |
390 | 395 | Does the module require compilation (i.e. does it have files that end |
391 | 396 | in .xs, .c, .h, .y, .cc, .cxx, or .C)? If it does, life is now |
392 | 397 | officially tough for you, because you have to compile the module |
393 | yourself | |
398 | yourself (no easy feat on Windows). You'll need a compiler such as | |
394 | 399 | Visual C++. Alternatively, you can download a pre-built PPM package |
395 | 400 | from ActiveState. |
396 | http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/ | |
401 | L<http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/> | |
397 | 402 | |
398 | 403 | =end original |
399 | 404 | |
400 | 405 | モジュールをコンパイルする必要がありますか |
401 | 406 | (.xs, .c, .h, .y, .cc, .cxx, .C で終わるファイルがありますか)? |
402 | 407 | もしそうなら、人生は公式に厳しいものです; |
403 | なぜなら、自分でモジュールをコンパイルしなければな | |
408 | なぜなら、自分でモジュールをコンパイルしなければなりません | |
404 | Windows では簡単にでき | |
409 | (Windows では簡単にはできません)。 | |
405 | 410 | Visual C++ などのコンパイラが必要になります。 |
406 | 411 | あるいは、ActiveState からビルド済みの PPM パッケージを |
407 | 412 | ダウンロードすることもできます。 |
408 | http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/ | |
413 | L<http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/> | |
409 | 414 | |
410 | 415 | =begin original |
411 | 416 | |
412 | 417 | Go into the newly-created directory and type: |
413 | 418 | |
414 | 419 | =end original |
415 | 420 | |
416 | 421 | 新しく作成されたディレクトリに移動し、次のように入力します: |
417 | 422 | |
418 | 423 | perl Makefile.PL |
419 | 424 | nmake test |
420 | 425 | |
421 | 426 | D. INSTALL |
422 | 427 | |
423 | 428 | =begin original |
424 | 429 | |
425 | 430 | While still in that directory, type: |
426 | 431 | |
427 | 432 | =end original |
428 | 433 | |
429 | 434 | そのディレクトリにいる状態で、次のように入力します。 |
430 | 435 | |
431 | 436 | nmake install |
432 | 437 | |
433 | 438 | =item * |
434 | 439 | |
435 | 440 | =begin original |
436 | 441 | |
437 | B<If you're using a Macintosh with "Classic" MacOS and MacPerl,> | |
438 | ||
439 | =end original | |
440 | ||
441 | B<Macintosh で "Classic" MacOS と MacPerl を使っているなら> | |
442 | ||
443 | =begin original | |
444 | ||
445 | A. DECOMPRESS | |
446 | ||
447 | =end original | |
448 | ||
449 | A. 伸張 | |
450 | ||
451 | =begin original | |
452 | ||
453 | First, make sure you have the latest B<cpan-mac> distribution ( | |
454 | http://www.cpan.org/authors/id/CNANDOR/ ), which has utilities for | |
455 | doing all of the steps. Read the cpan-mac directions carefully and | |
456 | install it. If you choose not to use cpan-mac for some reason, there | |
457 | are alternatives listed here. | |
458 | ||
459 | =end original | |
460 | ||
461 | まず、最新の B<cpan-mac> ディストリビューション | |
462 | (http://www.cpan.org/authors/id/CNANDOR/) があることを確認してください; | |
463 | このディストリビューションには、すべての手順を実行するための | |
464 | ユーティリティがあります。 | |
465 | cpan-mac の説明をよく読んでインストールしてください。 | |
466 | 何らかの理由で cpan-mac を使わないことを選択した場合は、 | |
467 | ここにリストされている他の方法があります。 | |
468 | ||
469 | =begin original | |
470 | ||
471 | After installing cpan-mac, drop the module archive on the | |
472 | B<untarzipme> droplet, which will decompress and unpack for you. | |
473 | ||
474 | =end original | |
475 | ||
476 | cpan-mac をインストールしたら、モジュールアーカイブ を | |
477 | B<untarzipme> droplet にドロップします。 | |
478 | これで伸張と展開が行われます。 | |
479 | ||
480 | =begin original | |
481 | ||
482 | B<Or>, you can either use the shareware B<StuffIt Expander> program | |
483 | ( http://www.aladdinsys.com/expander/ ) | |
484 | in combination with B<DropStuff with Expander Enhancer> | |
485 | ( http://www.aladdinsys.com/dropstuff/ ) | |
486 | or the freeware B<MacGzip> program ( | |
487 | http://persephone.cps.unizar.es/general/gente/spd/gzip/gzip.html ). | |
488 | ||
489 | =end original | |
490 | ||
491 | B<あるいは>、シェアウェアの B<StuffIt Expander> プログラム | |
492 | (http://www.aladdinsys.com/expander/) を | |
493 | B<DropStuff with Expander Enhancer> | |
494 | (http://www.aladdinsys.com/dropstuff/) と組み合わせて使うか、 | |
495 | フリーウェアの B<MacGzip> プログラム | |
496 | (http://persephone.cps.unizar.es/general/gente/spd/gzip/gzip.html) を | |
497 | 使うことができます。 | |
498 | ||
499 | =begin original | |
500 | ||
501 | B. UNPACK | |
502 | ||
503 | =end original | |
504 | ||
505 | B. 展開 | |
506 | ||
507 | =begin original | |
508 | ||
509 | If you're using untarzipme or StuffIt, the archive should be extracted | |
510 | now. B<Or>, you can use the freeware B<suntar> or I<Tar> ( | |
511 | http://hyperarchive.lcs.mit.edu/HyperArchive/Archive/cmp/ ). | |
512 | ||
513 | =end original | |
514 | ||
515 | untarzipme や StuffIt を使用している場合は、ここでアーカイブを | |
516 | 伸張する必要があります。 | |
517 | B<あるいは>、フリーウェアの B<suntar> や | |
518 | I<Tar>(http://hyperarchive.lcs.mit.edu/HyperArchive/Archive/cmp/) を | |
519 | 使用できます。 | |
520 | ||
521 | =begin original | |
522 | ||
523 | C. BUILD | |
524 | ||
525 | =end original | |
526 | ||
527 | C. ビルド | |
528 | ||
529 | =begin original | |
530 | ||
531 | Check the contents of the distribution. | |
532 | Read the module's documentation, looking for | |
533 | reasons why you might have trouble using it with MacPerl. Look for | |
534 | F<.xs> and F<.c> files, which normally denote that the distribution | |
535 | must be compiled, and you cannot install it "out of the box." | |
536 | (See L<"PORTABILITY">.) | |
537 | ||
538 | =end original | |
539 | ||
540 | 配布物の内容を確認してください。 | |
541 | モジュールの文書を読み、MacPerl での使用に問題がある理由を探してください。 | |
542 | F<.xs> ファイルと F<.c> ファイルを探してください; | |
543 | これらのファイルは通常、配布物をコンパイルする必要があることを示しており、 | |
544 | 「そのまま」インストールすることはできません (L<"PORTABILITY"> を参照)。 | |
545 | ||
546 | =begin original | |
547 | ||
548 | If a module does not work on MacPerl but should, or needs to be | |
549 | compiled, see if the module exists already as a port on the | |
550 | MacPerl Module Porters site ( http://pudge.net/mmp/ ). | |
551 | For more information on doing XS with MacPerl yourself, see | |
552 | Arved Sandstrom's XS tutorial ( http://macperl.com/depts/Tutorials/ ), | |
553 | and then consider uploading your binary to the CPAN and | |
554 | registering it on the MMP site. | |
555 | ||
556 | =end original | |
557 | ||
558 | MacPerl では動作しないモジュールを動かす必要がある、 | |
559 | あるいはコンパイルする必要がある場合は、 | |
560 | MacPerl Module Porters のサイト (http://pudge.net/mmp/) で、 | |
561 | そのモジュールが既にポートとして存在しているかどうかを確認してください。 | |
562 | 自分自身で MacPerl で XS を行うための詳細については、Arved Sandstrom による | |
563 | XS のチュートリアル (http://macperl.com/depts/Tutorials/)を参照し、 | |
564 | バイナリを CPAN にアップロードして MMP サイトに登録することを | |
565 | 検討してください。 | |
566 | ||
567 | =begin original | |
568 | ||
569 | D. INSTALL | |
570 | ||
571 | =end original | |
572 | ||
573 | D. インストール | |
574 | ||
575 | =begin original | |
576 | ||
577 | If you are using cpan-mac, just drop the folder on the | |
578 | B<installme> droplet, and use the module. | |
579 | ||
580 | =end original | |
581 | ||
582 | cpan-mac を使用している場合は、単に B<installme> droplet にフォルダを | |
583 | ドロップし、モジュールを使用します。 | |
584 | ||
585 | =begin original | |
586 | ||
587 | B<Or>, if you aren't using cpan-mac, do some manual labor. | |
588 | ||
589 | =end original | |
590 | ||
591 | B<または>、もしあなたが cpan-mac を使っていないなら、手作業をしてください。 | |
592 | ||
593 | =begin original | |
594 | ||
595 | Make sure the newlines for the modules are in Mac format, not Unix format. | |
596 | If they are not then you might have decompressed them incorrectly. Check | |
597 | your decompression and unpacking utilities settings to make sure they are | |
598 | translating text files properly. | |
599 | ||
600 | =end original | |
601 | ||
602 | モジュールの改行が Unix 形式ではなく Mac 形式であることを確認してください。 | |
603 | そうでない場合は、正しく解凍されていない可能性があります。 | |
604 | 伸張と展開のユーティリティの設定をチェックして、 | |
605 | テキストファイルが正しく変換されていることを確認してください。 | |
606 | ||
607 | =begin original | |
608 | ||
609 | As a last resort, you can use the perl one-liner: | |
610 | ||
611 | =end original | |
612 | ||
613 | 最後の手段として、perl の一行野郎を使用することができます: | |
614 | ||
615 | perl -i.bak -pe 's/(?:\015)?\012/\015/g' <filenames> | |
616 | ||
617 | =begin original | |
618 | ||
619 | on the source files. | |
620 | ||
621 | =end original | |
622 | ||
623 | これをソースファイルに行います。 | |
624 | ||
625 | =begin original | |
626 | ||
627 | Then move the files (probably just the F<.pm> files, though there | |
628 | may be some additional ones, too; check the module documentation) | |
629 | to their final destination: This will | |
630 | most likely be in C<$ENV{MACPERL}site_lib:> (i.e., | |
631 | C<HD:MacPerl folder:site_lib:>). You can add new paths to | |
632 | the default C<@INC> in the Preferences menu item in the | |
633 | MacPerl application (C<$ENV{MACPERL}site_lib:> is added | |
634 | automagically). Create whatever directory structures are required | |
635 | (i.e., for C<Some::Module>, create | |
636 | C<$ENV{MACPERL}site_lib:Some:> and put | |
637 | C<Module.pm> in that directory). | |
638 | ||
639 | =end original | |
640 | ||
641 | 次に、ファイル(おそらく F<.pm> ファイルだけですが、追加のファイルが | |
642 | あることもあります; モジュールの文書を確認してください) を | |
643 | 最終的なインストール先に移動させます: | |
644 | これはおそらく C<$ENV{MACPERL}site_lib:> (つまり | |
645 | C<HD:MacPerl folder:site_lib:>) でしょう。 | |
646 | MacPerl アプリケーションの環境設定メニュー項目でデフォルトの C<@INC> に | |
647 | 新しいパスを追加できます(C<$ENV{MACPERL}site_lib:>は自動的に追加されます)。 | |
648 | 必要なディレクトリ構造を (つまり、C<Some::Module>の場合は、 | |
649 | C<$ENV{MACPERL}site_lib:Some:>) を作成し、そのディレクトリに | |
650 | C<Module.pm> を配置します。 | |
651 | ||
652 | =begin original | |
653 | ||
654 | Then run the following script (or something like it): | |
655 | ||
656 | =end original | |
657 | ||
658 | 次のスクリプト (または同様のスクリプト) を実行します: | |
659 | ||
660 | #!perl -w | |
661 | use AutoSplit; | |
662 | my $dir = "${MACPERL}site_perl"; | |
663 | autosplit("$dir:Some:Module.pm", "$dir:auto", 0, 1, 1); | |
664 | ||
665 | =item * | |
666 | ||
667 | =begin original | |
668 | ||
669 | 442 | B<If you're on the DJGPP port of DOS,> |
670 | 443 | |
671 | 444 | =end original |
672 | 445 | |
673 | 446 | B<DOS の DJGPP 版を使っているなら> |
674 | 447 | |
675 | 448 | A. DECOMPRESS |
676 | 449 | |
677 | 450 | =begin original |
678 | 451 | |
679 | djtarx ( ftp://ftp. | |
452 | djtarx ( L<ftp://ftp.delorie.com/pub/djgpp/current/v2/> ) | |
680 | 453 | will both uncompress and unpack. |
681 | 454 | |
682 | 455 | =end original |
683 | 456 | |
684 | djtarx (ftp://ftp. | |
457 | djtarx ( L<ftp://ftp.delorie.com/pub/djgpp/current/v2/> ) は | |
685 | 458 | 伸張と展開の両方を行います。 |
686 | 459 | |
687 | 460 | B. UNPACK |
688 | 461 | |
689 | 462 | =begin original |
690 | 463 | |
691 | 464 | See above. |
692 | 465 | |
693 | 466 | =end original |
694 | 467 | |
695 | 468 | 上記を参照してください。 |
696 | 469 | |
697 | 470 | C. BUILD |
698 | 471 | |
699 | 472 | =begin original |
700 | 473 | |
701 | 474 | Go into the newly-created directory and type: |
702 | 475 | |
703 | 476 | =end original |
704 | 477 | |
705 | 478 | 新しく作成されたディレクトリに移動し、次のように入力します: |
706 | 479 | |
707 | 480 | perl Makefile.PL |
708 | 481 | make test |
709 | 482 | |
710 | 483 | =begin original |
711 | 484 | |
712 | 485 | You will need the packages mentioned in F<README.dos> |
713 | 486 | in the Perl distribution. |
714 | 487 | |
715 | 488 | =end original |
716 | 489 | |
717 | 490 | Perl ディストリビューションの F<README.dos> に記載されているパッケージが |
718 | 491 | 必要です。 |
719 | 492 | |
720 | 493 | D. INSTALL |
721 | 494 | |
722 | 495 | =begin original |
723 | 496 | |
724 | 497 | While still in that directory, type: |
725 | 498 | |
726 | 499 | =end original |
727 | 500 | |
728 | 501 | そのディレクトリにいる状態で、次のように入力します: |
729 | 502 | |
730 | 503 | make install |
731 | 504 | |
732 | 505 | =begin original |
733 | 506 | |
734 | 507 | You will need the packages mentioned in F<README.dos> in the Perl distribution. |
735 | 508 | |
736 | 509 | =end original |
737 | 510 | |
738 | 511 | Perl ディストリビューションの F<README.dos> に記載されているパッケージが |
739 | 512 | 必要です。 |
740 | 513 | |
741 | 514 | =item * |
742 | 515 | |
743 | 516 | =begin original |
744 | 517 | |
745 | 518 | B<If you're on OS/2,> |
746 | 519 | |
747 | 520 | =end original |
748 | 521 | |
749 | 522 | B<OS/2 を使用している場合> |
750 | 523 | |
751 | 524 | =begin original |
752 | 525 | |
753 | Get the EMX development suite and gzip/tar | |
526 | Get the EMX development suite and gzip/tar from Hobbes ( | |
754 | http://hobbes.nmsu.edu | |
527 | L<http://hobbes.nmsu.edu/h-browse.php?dir=/pub/os2/dev/emx/v0.9d> ), and then follow | |
755 | 528 | the instructions for Unix. |
756 | 529 | |
757 | 530 | =end original |
758 | 531 | |
759 | Hobbes (http://hobbes.nmsu.edu | |
532 | Hobbes (L<http://hobbes.nmsu.edu/h-browse.php?dir=/pub/os2/dev/emx/v0.9d>) から | |
760 | 533 | EMX 開発スイートと gzip/tar を入手し、Unix 用の指示に従ってください。 |
761 | 534 | |
762 | 535 | =item * |
763 | 536 | |
764 | 537 | =begin original |
765 | 538 | |
766 | 539 | B<If you're on VMS,> |
767 | 540 | |
768 | 541 | =end original |
769 | 542 | |
770 | 543 | B<VMS を使用している場合> |
771 | 544 | |
772 | 545 | =begin original |
773 | 546 | |
774 | 547 | When downloading from CPAN, save your file with a C<.tgz> |
775 | 548 | extension instead of C<.tar.gz>. All other periods in the |
776 | 549 | filename should be replaced with underscores. For example, |
777 | 550 | C<Your-Module-1.33.tar.gz> should be downloaded as |
778 | 551 | C<Your-Module-1_33.tgz>. |
779 | 552 | |
780 | 553 | =end original |
781 | 554 | |
782 | 555 | CPAN からダウンロードする場合は、ファイルを C<.tar.gz> ではなく |
783 | 556 | C<.tgz> 拡張子で保存します。 |
784 | 557 | ファイル名の他のすべてのピリオドはアンダースコアに置き換える必要があります。 |
785 | 558 | たとえば、C<Your-Module-1.33.tar.gz> は C<Your-Module-1_33.tgz> として |
786 | 559 | ダウンロードする必要があります。 |
787 | 560 | |
788 | 561 | =begin original |
789 | 562 | |
790 | 563 | A. DECOMPRESS |
791 | 564 | |
792 | 565 | =end original |
793 | 566 | |
794 | 567 | A. 伸張 |
795 | 568 | |
796 | 569 | =begin original |
797 | 570 | |
798 | 571 | Type |
799 | 572 | |
800 | 573 | =end original |
801 | 574 | |
802 | 575 | 次のように入力します: |
803 | 576 | |
804 | 577 | gzip -d Your-Module.tgz |
805 | 578 | |
806 | 579 | =begin original |
807 | 580 | |
808 | 581 | or, for zipped modules, type |
809 | 582 | |
810 | 583 | =end original |
811 | 584 | |
812 | 585 | または、zip モジュールの場合は、次のように入力します: |
813 | 586 | |
814 | 587 | unzip Your-Module.zip |
815 | 588 | |
816 | 589 | =begin original |
817 | 590 | |
818 | 591 | Executables for gzip, zip, and VMStar: |
819 | 592 | |
820 | 593 | =end original |
821 | 594 | |
822 | 595 | gzip, zip, VMStar 用の実行可能ファイル: |
823 | 596 | |
824 | http://www.openvms | |
597 | http://www.hp.com/go/openvms/freeware/ | |
825 | http://www.crinoid.com/utils/ | |
826 | 598 | |
827 | 599 | =begin original |
828 | 600 | |
829 | 601 | and their source code: |
830 | 602 | |
831 | 603 | =end original |
832 | 604 | |
833 | 605 | ソースコード: |
834 | 606 | |
835 | 607 | http://www.fsf.org/order/ftp.html |
836 | 608 | |
837 | 609 | =begin original |
838 | 610 | |
839 | 611 | Note that GNU's gzip/gunzip is not the same as Info-ZIP's zip/unzip |
840 | 612 | package. The former is a simple compression tool; the latter permits |
841 | 613 | creation of multi-file archives. |
842 | 614 | |
843 | 615 | =end original |
844 | 616 | |
845 | 617 | GNU の gzip/gunzip は Info-ZIP の zip/unzip パッケージと |
846 | 618 | 同じではないことに注意してください。 |
847 | 619 | 前者は単純な圧縮ツールです; 後者は複数ファイルの |
848 | 620 | アーカイブの作成を可能にします。 |
849 | 621 | |
850 | 622 | =begin original |
851 | 623 | |
852 | 624 | B. UNPACK |
853 | 625 | |
854 | 626 | =end original |
855 | 627 | |
856 | 628 | B. 展開 |
857 | 629 | |
858 | 630 | =begin original |
859 | 631 | |
860 | 632 | If you're using VMStar: |
861 | 633 | |
862 | 634 | =end original |
863 | 635 | |
864 | 636 | VMStar を使用する場合: |
865 | 637 | |
866 | 638 | VMStar xf Your-Module.tar |
867 | 639 | |
868 | 640 | =begin original |
869 | 641 | |
870 | 642 | Or, if you're fond of VMS command syntax: |
871 | 643 | |
872 | 644 | =end original |
873 | 645 | |
874 | 646 | あるいは、VMS コマンドの文法が好きなら: |
875 | 647 | |
876 | 648 | tar/extract/verbose Your_Module.tar |
877 | 649 | |
878 | 650 | =begin original |
879 | 651 | |
880 | 652 | C. BUILD |
881 | 653 | |
882 | 654 | =end original |
883 | 655 | |
884 | 656 | C. ビルド |
885 | 657 | |
886 | 658 | =begin original |
887 | 659 | |
888 | 660 | Make sure you have MMS (from Digital) or the freeware MMK ( available |
889 | from MadGoat at http://www.madgoat.com ). Then type this to create | |
661 | from MadGoat at L<http://www.madgoat.com> ). Then type this to create | |
890 | 662 | the DESCRIP.MMS for the module: |
891 | 663 | |
892 | 664 | =end original |
893 | 665 | |
894 | MMS(Digital から)かフリーウェアの MMK(MadGoat http://www.madgoat.com から | |
666 | MMS(Digital から)かフリーウェアの MMK(MadGoat L<http://www.madgoat.com> から | |
895 | 667 | 入手可能)があることを確認してください。 |
896 | 668 | 次に次のように入力してモジュール用の DESIPP.MMS を作成します: |
897 | 669 | |
898 | 670 | perl Makefile.PL |
899 | 671 | |
900 | 672 | =begin original |
901 | 673 | |
902 | 674 | Now you're ready to build: |
903 | 675 | |
904 | 676 | =end original |
905 | 677 | |
906 | 678 | これでビルドの準備ができました: |
907 | 679 | |
908 | 680 | mms test |
909 | 681 | |
910 | 682 | =begin original |
911 | 683 | |
912 | 684 | Substitute C<mmk> for C<mms> above if you're using MMK. |
913 | 685 | |
914 | 686 | =end original |
915 | 687 | |
916 | 688 | MMK を使っている場合は、上記の C<mms> を C<mmk> に置き換えてください。 |
917 | 689 | |
918 | 690 | =begin original |
919 | 691 | |
920 | 692 | D. INSTALL |
921 | 693 | |
922 | 694 | =end original |
923 | 695 | |
924 | 696 | D. インストール |
925 | 697 | |
926 | 698 | =begin original |
927 | 699 | |
928 | 700 | Type |
929 | 701 | |
930 | 702 | =end original |
931 | 703 | |
932 | 704 | 次のように入力します: |
933 | 705 | |
934 | 706 | mms install |
935 | 707 | |
936 | 708 | =begin original |
937 | 709 | |
938 | 710 | Substitute C<mmk> for C<mms> above if you're using MMK. |
939 | 711 | |
940 | 712 | =end original |
941 | 713 | |
942 | 714 | MMK を使っている場合は、上記の C<mms> を C<mmk> に置き換えてください。 |
943 | 715 | |
944 | 716 | =item * |
945 | 717 | |
946 | 718 | =begin original |
947 | 719 | |
948 | 720 | B<If you're on MVS>, |
949 | 721 | |
950 | 722 | =end original |
951 | 723 | |
952 | 724 | B<MVS を使っている場合> |
953 | 725 | |
954 | 726 | =begin original |
955 | 727 | |
956 | 728 | Introduce the F<.tar.gz> file into an HFS as binary; don't translate from |
957 | 729 | ASCII to EBCDIC. |
958 | 730 | |
959 | 731 | =end original |
960 | 732 | |
961 | 733 | F<.tar.gz> ファイルをバイナリとして HFS に導入します。 |
962 | 734 | ASCII から EBCDIC に変換しないでください。 |
963 | 735 | |
964 | 736 | =begin original |
965 | 737 | |
966 | 738 | A. DECOMPRESS |
967 | 739 | |
968 | 740 | =end original |
969 | 741 | |
970 | 742 | A. 伸張 |
971 | 743 | |
972 | 744 | =begin original |
973 | 745 | |
974 | 746 | Decompress the file with C<gzip -d yourmodule.tar.gz> |
975 | 747 | |
976 | 748 | =end original |
977 | 749 | |
978 | 750 | C<gzip -d yourmodule.tar.gz> でファイルを伸張します。 |
979 | 751 | |
980 | 752 | =begin original |
981 | 753 | |
982 | 754 | You can get gzip from |
983 | http://www.s390.ibm.com/products/oe/bpxqp1.html | |
755 | L<http://www.s390.ibm.com/products/oe/bpxqp1.html> | |
984 | 756 | |
985 | 757 | =end original |
986 | 758 | |
987 | gzip は http://www.s390.ibm.com/products/oe/bpxqp1.html から入手できます。 | |
759 | gzip は L<http://www.s390.ibm.com/products/oe/bpxqp1.html> から入手できます。 | |
988 | 760 | |
989 | 761 | =begin original |
990 | 762 | |
991 | 763 | B. UNPACK |
992 | 764 | |
993 | 765 | =end original |
994 | 766 | |
995 | 767 | B. 展開 |
996 | 768 | |
997 | 769 | =begin original |
998 | 770 | |
999 | 771 | Unpack the result with |
1000 | 772 | |
1001 | 773 | =end original |
1002 | 774 | |
1003 | 775 | 結果を次のように展開します。 |
1004 | 776 | |
1005 | 777 | pax -o to=IBM-1047,from=ISO8859-1 -r < yourmodule.tar |
1006 | 778 | |
1007 | 779 | =begin original |
1008 | 780 | |
1009 | 781 | The BUILD and INSTALL steps are identical to those for Unix. Some |
1010 | 782 | modules generate Makefiles that work better with GNU make, which is |
1011 | available from http://www.mks.com/s390/gnu/ | |
783 | available from L<http://www.mks.com/s390/gnu/> | |
1012 | 784 | |
1013 | 785 | =end original |
1014 | 786 | |
1015 | 787 | BUILD と INSTALL の手順は Unix の場合と同じです。 |
1016 | 788 | いくつかのモジュールは GNU make でより良く動作する Makefile を生成します; |
1017 | これは http://www.mks.com/s390/gnu/ から入手できます。 | |
789 | これは L<http://www.mks.com/s390/gnu/> から入手できます。 | |
1018 | 790 | |
1019 | 791 | =back |
1020 | 792 | |
1021 | 793 | =head1 PORTABILITY |
1022 | 794 | |
1023 | 795 | (移植性) |
1024 | 796 | |
1025 | 797 | =begin original |
1026 | 798 | |
1027 | 799 | Note that not all modules will work with on all platforms. |
1028 | 800 | See L<perlport> for more information on portability issues. |
1029 | 801 | Read the documentation to see if the module will work on your |
1030 | 802 | system. There are basically three categories |
1031 | 803 | of modules that will not work "out of the box" with all |
1032 | 804 | platforms (with some possibility of overlap): |
1033 | 805 | |
1034 | 806 | =end original |
1035 | 807 | |
1036 | 808 | すべてのモジュールがすべてのプラットフォームで |
1037 | 809 | 動作するわけではないことに注意してください。 |
1038 | 810 | 移植性の問題についての詳細は L<perlport> を参照してください。 |
1039 | 811 | モジュールがお使いのシステムで動作するかどうかは、 |
1040 | 812 | 文書を読んで確認してください。 |
1041 | 813 | すべてのプラットフォームで「そのままで」動作しないモジュールには、 |
1042 | 814 | 基本的に三つのカテゴリがあります(重複する可能性もあります): |
1043 | 815 | |
1044 | 816 | =over 4 |
1045 | 817 | |
1046 | 818 | =item * |
1047 | 819 | |
1048 | 820 | =begin original |
1049 | 821 | |
1050 | 822 | B<Those that should, but don't.> These need to be fixed; consider |
1051 | 823 | contacting the author and possibly writing a patch. |
1052 | 824 | |
1053 | 825 | =end original |
1054 | 826 | |
1055 | 827 | B<動作するはずなのに動作しない。> |
1056 | 828 | これらは修正する必要があります; |
1057 | 829 | 作者に連絡してパッチを書くことを検討してください。 |
1058 | 830 | |
1059 | 831 | =item * |
1060 | 832 | |
1061 | 833 | =begin original |
1062 | 834 | |
1063 | 835 | B<Those that need to be compiled, where the target platform |
1064 | 836 | doesn't have compilers readily available.> (These modules contain |
1065 | 837 | F<.xs> or F<.c> files, usually.) You might be able to find |
1066 | 838 | existing binaries on the CPAN or elsewhere, or you might |
1067 | 839 | want to try getting compilers and building it yourself, and then |
1068 | 840 | release the binary for other poor souls to use. |
1069 | 841 | |
1070 | 842 | =end original |
1071 | 843 | |
1072 | 844 | B<コンパイルする必要があるけれども、ターゲットプラットフォームに |
1073 | 845 | はすぐに入手できるコンパイラがない。> |
1074 | 846 | (これらのモジュールには、通常 F<.xs> または F<.c> ファイルが含まれています。) |
1075 | 847 | CPAN やその他の場所で既存のバイナリを見つけることができるかもしれませんし、 |
1076 | 848 | あるいはコンパイラを入手して自分でビルドしてみて、他の不運な人々が |
1077 | 849 | 使えるようにバイナリをリリースすることもできます。 |
1078 | 850 | |
1079 | 851 | =item * |
1080 | 852 | |
1081 | 853 | =begin original |
1082 | 854 | |
1083 | 855 | B<Those that are targeted at a specific platform.> |
1084 | 856 | (Such as the Win32:: modules.) If the module is targeted |
1085 | 857 | specifically at a platform other than yours, you're out |
1086 | 858 | of luck, most likely. |
1087 | 859 | |
1088 | 860 | =end original |
1089 | 861 | |
1090 | 862 | B<特定のプラットフォームをターゲットにしたモジュール。> |
1091 | 863 | (Win32:: モジュールなど。) |
1092 | 864 | モジュールがあなたのものでないプラットフォームをターゲットにしている場合は、 |
1093 | 865 | おそらく運がありません。 |
1094 | 866 | |
1095 | 867 | =back |
1096 | 868 | |
1097 | 869 | =begin original |
1098 | 870 | |
1099 | 871 | Check the CPAN Testers if a module should work with your platform |
1100 | 872 | but it doesn't behave as you'd expect, or you aren't sure whether or |
1101 | 873 | not a module will work under your platform. If the module you want |
1102 | 874 | isn't listed there, you can test it yourself and let CPAN Testers know, |
1103 | 875 | you can join CPAN Testers, or you can request it be tested. |
1104 | 876 | |
1105 | 877 | =end original |
1106 | 878 | |
1107 | 879 | モジュールがあなたのプラットフォームで |
1108 | 880 | 動作するはずなのに期待通りに動作しないか、またはモジュールが |
1109 | 881 | あなたのプラットフォームで動作するかどうか分からない場合は、 |
1110 | 882 | CPAN Testers をチェックしてください。 |
1111 | 883 | 必要なモジュールがリストにない場合は、自分でテストして |
1112 | 884 | CPAN Testers に知らせたり、CPAN Testers に参加したり、テストを |
1113 | 885 | リクエストしたりできます。 |
1114 | 886 | |
1115 | http://testers | |
887 | https://cpantesters.org/ | |
1116 | 888 | |
1117 | 889 | =head1 HEY |
1118 | 890 | |
1119 | 891 | =begin original |
1120 | 892 | |
1121 | 893 | If you have any suggested changes for this page, let me know. Please |
1122 | 894 | don't send me mail asking for help on how to install your modules. |
1123 | 895 | There are too many modules, and too few Orwants, for me to be able to |
1124 | 896 | answer or even acknowledge all your questions. Contact the module |
1125 | author instead, | |
897 | author instead, ask someone familiar with Perl on your operating | |
1126 | ||
898 | system, or if all else fails, file a ticket at L<https://rt.cpan.org/>. | |
1127 | 899 | |
1128 | 900 | =end original |
1129 | 901 | |
1130 | 902 | このページで提案された変更点がありましたら、お知らせください。 |
1131 | 903 | モジュールのインストール方法に関するヘルプを求めるメールを私に |
1132 | 904 | 送らないでください。 |
1133 | 905 | モジュールは多すぎ、Orwants は少なすぎます; |
1134 | 906 | 私はあなたの質問に答えることも、すべての質問に答えることもできません。 |
1135 | モジュールの作成者に問い合わせるか、 | |
907 | モジュールの作成者に問い合わせるか、 | |
1136 | オペレーティングシステムの Perl に精通した人に尋ねて | |
908 | オペレーティングシステムの Perl に精通した人に尋ねて、 | |
909 | どれもうまく行かなかった場合は、L<https://rt.cpan.org/> にチケットを | |
910 | 登録してください。 | |
1137 | 911 | |
1138 | 912 | =head1 AUTHOR |
1139 | 913 | |
1140 | 914 | Jon Orwant |
1141 | 915 | |
1142 | 916 | orwant@medita.mit.edu |
1143 | 917 | |
1144 | 918 | =begin original |
1145 | 919 | |
1146 | 920 | with invaluable help from Chris Nandor, and valuable help from Brandon |
1147 | 921 | Allbery, Charles Bailey, Graham Barr, Dominic Dunlop, Jarkko |
1148 | 922 | Hietaniemi, Ben Holzman, Tom Horsley, Nick Ing-Simmons, Tuomas |
1149 | 923 | J. Lukka, Laszlo Molnar, Alan Olsen, Peter Prymmer, Gurusamy Sarathy, |
1150 | 924 | Christoph Spalinger, Dan Sugalski, Larry Virden, and Ilya Zakharevich. |
1151 | 925 | |
1152 | 926 | =end original |
1153 | 927 | |
1154 | 928 | Chris Nandor からの貴重な支援、そして |
1155 | 929 | Brandon |
1156 | 930 | Allbery, Charles Bailey, Graham Barr, Dominic Dunlop, Jarkko |
1157 | 931 | Hietaniemi, Ben Holzman, Tom Horsley, Nick Ing-Simmons, Tuomas |
1158 | 932 | J. Lukka, Laszlo Molnar, Alan Olsen, Peter Prymmer, Gurusamy Sarathy, |
1159 | 933 | Christoph Spalinger, Dan Sugalski, Larry Virden, Ilya Zakharevich からの |
1160 | 934 | 価値ある助けと共に。 |
1161 | 935 | |
1162 | 936 | First version July 22, 1998; last revised November 21, 2001. |
1163 | 937 | |
1164 | 938 | =head1 COPYRIGHT |
1165 | 939 | |
1166 | 940 | Copyright (C) 1998, 2002, 2003 Jon Orwant. All Rights Reserved. |
1167 | 941 | |
1168 | ||
942 | This document may be distributed under the same terms as Perl itself. | |
1169 | documentation provided the copyright notice and this permission notice are | |
1170 | preserved on all copies. | |
1171 | ||
1172 | Permission is granted to copy and distribute modified versions of this | |
1173 | documentation under the conditions for verbatim copying, provided also | |
1174 | that they are marked clearly as modified versions, that the authors' | |
1175 | names and title are unchanged (though subtitles and additional | |
1176 | authors' names may be added), and that the entire resulting derived | |
1177 | work is distributed under the terms of a permission notice identical | |
1178 | to this one. | |
1179 | ||
1180 | Permission is granted to copy and distribute translations of this | |
1181 | documentation into another language, under the above conditions for | |
1182 | modified versions. | |
1183 | 943 | |
1184 | 944 | =begin meta |
1185 | 945 | |
1186 | 946 | Translate: SHIRAKATA Kentaro <argrath@ub32.org> |
1187 | 947 | Status: completed |
1188 | 948 | |
1189 | 949 | =end meta |