author | Sebastian Harl <sh@tokkee.org> | |
Sun, 24 Sep 2006 23:09:05 +0000 (23:09 +0000) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sun, 24 Sep 2006 23:09:05 +0000 (23:09 +0000) |
debian/changelog | [new file with mode: 0644] | patch | blob |
debian/compat | [new file with mode: 0644] | patch | blob |
debian/control | [new file with mode: 0644] | patch | blob |
debian/copyright | [new file with mode: 0644] | patch | blob |
debian/fusedav.1 | [new file with mode: 0644] | patch | blob |
debian/rules | [new file with mode: 0755] | patch | blob |
diff --git a/debian/changelog b/debian/changelog
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+fusedav (0.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #379147).
+
+ -- Sebastian Harl <sh@tokkee.org> Wed, 23 Aug 2006 21:45:44 +0200
+
diff --git a/debian/control b/debian/control
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,20 @@
+Source: fusedav
+Section: utils
+Priority: optional
+Maintainer: Sebastian Harl <sh@tokkee.org>
+Build-Depends: debhelper (>= 5), autotools-dev, libneon26-gnutls-dev,
+ libfuse-dev (>= 2.5), libattr1-dev, lynx
+Standards-Version: 3.7.2
+
+Package: fusedav
+Architecture: any
+Depends: fuse-utils, ${shlibs:Depends}
+Description: mount WebDAV shares
+ fusedav is a userspace filesystem driver that allows you to mount WebDAV
+ shares. This way you can transparently edit and manage files on a remote
+ server.
+ .
+ It uses FUSE (Filesystem in USErspace), thus you need a FUSE-enabled kernel.
+ .
+ Homepage: http://0pointer.de/lennart/projects/fusedav/
+
diff --git a/debian/copyright b/debian/copyright
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+This package was debianized by Sebastian Harl <sh@tokkee.org> on
+Wed, 23 Aug 2006 21:45:44 +0200.
+
+It was downloaded from <http://0pointer.de/lennart/projects/fusedav/>.
+
+Upstream Author:
+ Lennart Poettering <mzshfrqni@0pointer.de>
+
+Copyright Holder:
+ Lennart Poettering <mzshfrqni@0pointer.de>
+
+License:
+
+ Copyright (C) 2006 Lennart Poettering <mzshfrqni@0pointer.de>
+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
+ USA.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2006, Sebastian Harl <sh@tokkee.org> and
+is licensed under the GPL, see above.
+
diff --git a/debian/fusedav.1 b/debian/fusedav.1
--- /dev/null
+++ b/debian/fusedav.1
@@ -0,0 +1,53 @@
+.TH FUSEDAV 1 "August 24, 2006"
+
+.SH NAME
+fusedav \- mount WebDAV shares
+
+.SH SYNOPSIS
+\fBfusedav\fR [\fB-hDL\fR]
+ [\fB-t\fR \fIsecs\fR]
+ [\fB-u\fR \fIusername\fR] [\fB-p\fR \fIpassword\fR]
+ [\fB-o\fR \fIoptions\fR]
+ \fIURL mountpoint\fR
+
+.SH DESCRIPTION
+\fBfusedav\fR is a userspace filesystem driver that allows you to mount WebDAV
+shares. This way you can transparently edit and manage files on a remote
+server. As long as the \fBfusedav\fR process is running, the WebDAV share
+located at \fIURL\fR is accessible under \fImountpoint\fR.
+
+.SH OPTIONS
+.TP
+\fB-h\fR
+Show summary of options.
+.TP
+\fB-D\fR
+Enable debug mode.
+.TP
+\fB-L\fR
+Lock the repository during mount.
+.TP
+\fB-t\fR \fIsecs\fR
+Set lock timeout to \fIsecs\fR seconds.
+.TP
+\fB-u\fR \fIusername\fR
+Use \fIusername\fR for authentication if required.
+.TP
+\fB-p\fR \fIpassword\fR
+Use \fIpassword\fR for authentication if required.
+.TP
+\fB-o\fR \fIoptions\fR
+Pass \fIoptions\fR as additional mount options to FUSE.
+.TP
+\fIURL\fR
+Location of the WebDAV share.
+.TP
+\fImountpoint\fR
+Local mountpoint of the WebDAV share.
+
+.SH AUTHOR
+\fBfusedav\fR was written by Lennart Poettering.
+.PP
+This manual page was written by Sebastian Harl <sh@tokkee.org>, for the Debian
+project (but may be used by others).
+
diff --git a/debian/rules b/debian/rules
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,75 @@
+#!/usr/bin/make -f
+# debian/rules for fusedav
+#
+# Written by Sebastian Harl <sh@tokkee.org>.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+config.status: configure
+ dh_testdir
+ CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \
+ --build=$(DEB_BUILD_GNU_TYPE) \
+ --prefix=/usr
+
+build: build-stamp
+
+build-stamp: config.status
+ dh_testdir
+
+ $(MAKE)
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ rm -f config.sub config.guess
+
+ -$(MAKE) distclean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/fusedav
+
+binary-indep:
+ # nothing to do here
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs README
+ dh_installman debian/fusedav.1
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
+