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
|
# $Id: /trunk/debian/dists/libcgi-ssi-perl/debian/packages 34 2006-04-03T20:03:07.921854Z dexter $
# If the debian/rules or debian/control file is missing, rebuild the file:
#
# $ yada rebuild control
# $ yada rebuild rules
# Environment variables:
# don't run `make test'
# with_no_test=%{with_no_test}
Source: libcgi-ssi-perl
Section: perl
Priority: extra
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.6.2
Upstream-Source: <URL:http://www.cpan.org/modules/by-module/CGI/CGI-SSI-([0-9.]*)\.tar.gz>
Patches: patches/*.patch
Major-Changes:
%`cd debian/patches && ls *.patch | sed -e 's/^/ /'`
Description: perl CGI::SSI - Use SSI from CGI scripts
Copyright: .
Copyright 2000 James Tolley All Rights Reserved.
.
This is free software. You may copy and/or modify it under
the same terms as perl itself.
.
This program is free software; you can redistribute it and/or modify
it under the terms of either:
.
a) the GNU General Public License as published by the Free Software
Foundation; either version 1, or (at your option) any later
version, or
.
b) the "Artistic License" which comes with Perl.
.
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL' and
the Artistic Licence in `/usr/share/common-licenses/Artistic'.
Build-Depends-Indep: perl (>= 5.8)
%if %{!?without_test:1}
Build-Depends-Indep: libhtml-simpleparse-perl
Build-Depends-Indep: perl-modules
Build-Depends-Indep: libwww-perl
Build-Depends-Indep: liburi-perl
Build-Depends-Indep: libtimedate-perl
%endif
Build: sh
PERL=${PERL:-/usr/bin/perl}
$PERL Makefile.PL INSTALLDIRS=vendor
make
%if %{without_no_test}
make test
%endif
Clean: sh
test -f Makefile && touch Makefile && make distclean || true
Package: libcgi-ssi-perl
Architecture: all
Depends: libhtml-simpleparse-perl
Depends: perl-modules
Depends: libwww-perl
Depends: liburi-perl
Depends: libtimedate-perl
Depends: []
Description: perl CGI::SSI - Use SSI from CGI scripts
CGI::SSI is meant to be used as an easy way to filter shtml through CGI
scripts in a loose imitation of Apache's mod_include. If you're using
Apache, you may want to use either mod_include or the Apache::SSI module
instead of CGI::SSI. Limitations in a CGI script's knowledge of how the
server behaves make some SSI directives impossible to imitate from a CGI
script.
Install: sh
PERL=${PERL:-/usr/bin/perl}
make install PREFIX=$ROOT/usr
yada install -doc README
yada install -doc -as changelog Changes
|