From fa9bc1397b4988a90609b648f43032b9c156a9d0 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Sun, 24 Sep 2006 23:09:05 +0000 Subject: [PATCH] Initial commit. --- debian/changelog | 6 ++++ debian/compat | 1 + debian/control | 20 +++++++++++++ debian/copyright | 36 +++++++++++++++++++++++ debian/fusedav.1 | 53 ++++++++++++++++++++++++++++++++++ debian/rules | 75 ++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 191 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/fusedav.1 create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b5ea1b4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +fusedav (0.2-1) unstable; urgency=low + + * Initial release (Closes: #379147). + + -- Sebastian Harl Wed, 23 Aug 2006 21:45:44 +0200 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..905eecb --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: fusedav +Section: utils +Priority: optional +Maintainer: Sebastian Harl +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 new file mode 100644 index 0000000..de9195c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Sebastian Harl on +Wed, 23 Aug 2006 21:45:44 +0200. + +It was downloaded from . + +Upstream Author: + Lennart Poettering + +Copyright Holder: + Lennart Poettering + +License: + + Copyright (C) 2006 Lennart Poettering + + 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 and +is licensed under the GPL, see above. + diff --git a/debian/fusedav.1 b/debian/fusedav.1 new file mode 100644 index 0000000..15fce41 --- /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 , for the Debian +project (but may be used by others). + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..fa2988f --- /dev/null +++ b/debian/rules @@ -0,0 +1,75 @@ +#!/usr/bin/make -f +# debian/rules for fusedav +# +# Written by Sebastian Harl . + +# 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 + -- 2.30.2