Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / libcaptive / captive.pod.pl.in
1 #! /usr/bin/perl
2
3 # $Id$
4 # perlpod(1) source for captive(7) man page
5 # Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 use vars qw($VERSION);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 use strict;
24 use warnings;
25
26
27 print <<'POD_EOF';
28 =head1 NAME
29
30 @PACKAGE@ - Microsoft Windows NT kernel emulation for NTFS disk access
31
32
33 =head1 DESCRIPTION
34
35 B<@PACKAGE@>(7) library allows applications running under the B<GNU/Linux>
36 operating system to access B<NTFS> drives. File system driver compatibility
37 with B<VFAT>, B<ISO9660> and B<EXT2> is also provided.
38
39 This man page B<@PACKAGE@>(7) show the common options of all B<@PACKAGE@>
40 clients. You will always use a specific client such as
41 B<mount.@PACKAGE@>(8) or B<@PACKAGE@-cmdline>(1).
42
43
44 POD_EOF
45 require "./client/options.pod.pl";
46 print <<'POD_EOF';
47 =head1 SEE ALSO
48
49 B<mount.@PACKAGE@>(8), B<@PACKAGE@-cmdline>(1), B<@PACKAGE@-install-acquire>(1)
50
51
52 =head1 AUTHOR
53
54 Jan Kratochvil <B<project-@PACKAGE@@jankratochvil.net>>,
55                 I<http://www.jankratochvil.net/>
56 POD_EOF
57 1;