Release: 1.0.3 -> 1.0.4cvs
[udpgate.git] / src / udpgate.pod.pl.in
1 #! /usr/bin/perl
2
3 # $Id$
4 # perlpod(1) source for udpgate(1) man page
5 # Copyright (C) 2004 Jan Kratochvil <project-udpgate@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 my $bindir='@bindir@';
28 $bindir=~s#\$\Q{exec_prefix}\E#'@exec_prefix@';#ge;
29 $bindir=~s#\$\Q{prefix}\E#'@prefix@';#ge;
30 $bindir="/usr/bin" if $bindir=~/^@/;
31
32 print <<'POD_EOF';
33 =head1 NAME
34
35 @PACKAGE@-cmdline - Command-line client for B<@PACKAGE@>(7) NTFS disk access
36
37
38 =head1 SYNOPSIS
39
40 =for man
41 \fB@PACKAGE@\fP
42
43
44 =head1 DESCRIPTION
45
46 Utility will transparently provide virtual MMS center on your personal
47 computer.  As GSM operators usually block all the alternate service gateways
48 they should not be able to block all the personal gateways of all their
49 customers.
50
51
52 =head1 SEE ALSO
53
54 uproxy
55
56
57 =head1 AUTHOR
58
59 Jan Kratochvil <B<project-@PACKAGE@@jankratochvil.net>>,
60                 I<http://www.jankratochvil.net/>
61 POD_EOF
62 1;