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
|
# $Id: /trunk/debian/dists/libhttp-davserver-perl/debian/packages 5 2005-02-16T19:48:00.421413Z svm $
# Environment variables:
# without_test=%{$without_test} - don't run `make test'
%define without_test %{?$without_test:1}%{!?$without_test:0}
Source: libhttp-davserver-perl
Section: perl
Priority: extra
Maintainer: Piotr Roszatycki <dexter@debian.org>
Standards-Version: 3.6.1
Upstream-Source: <URL:http://www.cpan.org/modules/by-module/HTTP/HTTP-DAVServer-([0-9.]*)\.tar.gz>
Description: perl HTTP::DAVServer - server-side implementation of WebDAV protocol
Packaged-For: debian
Copyright: .
Copyright (c) 2003 Jay J. Lawrence, Infonium Inc. All rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
.
Copyright 1989-2001, Larry Wall All rights reserved.
.
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'.
Patches: patches/*.diff
Major-Changes:
[001] Various bugfixes and new features for upstream source.
Build-Depends-Indep: perl (>= 5.8)
%if %{!?without_test:1}
Build-Depends-Indep: libxml-simple-perl, libxml-sax-perl, libdatetime-perl
%endif
Build-Indep: sh
PERL=${PERL:-/usr/bin/perl}
$PERL Makefile.PL INSTALLDIRS=vendor
make
%if %{!?without_test:1}
make test
%endif
Clean: sh
test -f Makefile && touch Makefile && make distclean || true
Package: libhttp-davserver-perl
Architecture: all
Depends: libxml-simple-perl, libxml-sax-perl, libdatetime-perl, []
Suggests: httpd | apache, securecgi
Description: perl HTTP::DAVServer - server-side implementation of WebDAV protocol
HTTP::DAVServer allows you to write server-side functions to accept, process
and respond to WebDAV client requests. WebDAV - RFC 2518 - is a protocol
which allows clients to manipulate files on a remote server using HTTP.
.
You will need to add directives to Apache to request that certain
methods be handled by the CGI script:
.
Script PROPFIND /cgi-bin/nph-webdav
Script PUT /cgi-bin/nph-webdav
etc.
Install: sh
PERL=${PERL:-/usr/bin/perl}
make install PREFIX=$ROOT/usr
find $ROOT/usr/*/perl* -type f -print0 | xargs -0 chmod -x
yada install -script -into /usr/lib/cgi-bin cgi/nph-webdav
yada install -doc README
yada install -doc -as changelog Changes
yada install -doc -as README.Debian debian/README
|