--- encfs-1.3.2-1.orig/debian/control +++ encfs-1.3.2-1/debian/control @@ -0,0 +1,17 @@ +Source: encfs +Section: utils +Priority: optional +Maintainer: Eduard Bloch +Build-Depends: debhelper (>= 4.0.0), librlog-dev, librlog1c2a, libfuse-dev (>> 2.5.3-4.4), libssl-dev (>> 0.9.8) +Standards-Version: 3.7.2 + +Package: encfs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, fuse-utils +Description: encrypted virtual filesystem + EncFS integrates file system encryption into the Unix(TM) file system. + Encrypted data is stored within the native file system, thus no + fixed-size loopback image is required. + . + EncFS uses the FUSE kernel driver and library as a backend. + --- encfs-1.3.2-1.orig/debian/README.Debian +++ encfs-1.3.2-1/debian/README.Debian @@ -0,0 +1,18 @@ +encfs for Debian +---------------- + +In order to use encfs, you need the fusermount program (package: fuse-utils) +and the FUSE kernel driver module (load with "modprobe fuse"). Since the module +is not shipped with stock kernels, you may need to build and install it. Run: + + module-assistant auto-install fuse + +if the module-assistant package is installed (recommended way) or see the +documentation of the fuse-source package for further details. + +The encfs utilities are not installed with setuid-root permissions since the +fusermount utility is used for sensitive operations. To mount and umount +encrypted directories as user, the user needs to be in the fuse users group. +See documentation of the fuse-utils package for details. + + -- Eduard Bloch , Thu, 10 Mar 2005 10:30:54 +0100 --- encfs-1.3.2-1.orig/debian/watch +++ encfs-1.3.2-1/debian/watch @@ -0,0 +1,4 @@ +version=3 +http://arg0.net/users/vgough/download/encfs-(.*)\.tgz +http://arg0.net/wiki/encfs +http://pobox.com/~vgough/encfs (?:.*/)?encfs-?_?([\d+\.]+|\d+)(\.tar|\.tgz)(\.gz|\.bz2| --- encfs-1.3.2-1.orig/debian/rules +++ encfs-1.3.2-1/debian/rules @@ -0,0 +1,106 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# 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 + # Add here commands to configure the package. + CFLAGS="$(CFLAGS)" ./configure --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/encfs.sgml > encfs.1 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean +#ifneq "$(wildcard /usr/share/misc/config.sub)" "" +# cp -f /usr/share/misc/config.sub config.sub +#endif +#ifneq "$(wildcard /usr/share/misc/config.guess)" "" +# cp -f /usr/share/misc/config.guess config.guess +#endif + + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/encfs. + $(MAKE) install DESTDIR=$(CURDIR)/debian/encfs + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- encfs-1.3.2-1.orig/debian/changelog +++ encfs-1.3.2-1/debian/changelog @@ -0,0 +1,69 @@ +encfs (1.3.2-1-1) unstable; urgency=low + + * New upstream release (closes: #405419) + * remove recommendation of module building from package description, FUSE is + in the kernel now (closes: #406233) + + -- Eduard Bloch Thu, 29 Mar 2007 21:30:16 +0200 + +encfs (1.2.5-1-1) unstable; urgency=low + + * New upstream release + * build-dep to conflict with broken libfuse-dev (2.4.0) + + -- Eduard Bloch Sat, 07 Jan 2006 15:51:59 +0100 + +encfs (1.2.4.1-2) unstable; urgency=low + + * forcing rebuild with libssl0.9.8 + + -- Eduard Bloch Mon, 10 Oct 2005 13:59:50 +0200 + +encfs (1.2.4.1-1) unstable; urgency=low + + * New upstream release (1.2.4-1, relabeled as usual) + * copyright file updates, OpenSSL statement in the README now + * added fuse-utils dependency (closes: #324997) + * added watch file + + -- Eduard Bloch Sun, 04 Sep 2005 10:40:33 +0200 + +encfs (1.2.3.1-2) unstable; urgency=low + + * g++-4.0 transition: depending on librlog1c2 + + -- Eduard Bloch Wed, 13 Jul 2005 18:55:21 +0200 + +encfs (1.2.3.1-1) unstable; urgency=low + + * New upstream release 1.2.3-1 (renamed for Debian version consistency) + + makes return code consistent (closes: #315623) + + encfsctl.cpp uses correct namespaces (closes: #302197) + + releases memory after bad access attempts correctly (closes: #308482) + + fixes rename operation failures on directories with invalid symlinks + therein (closes: #315624) + * forcing g++-3.3 as compiler for now, something is fishy with 3.4/4.0 + + -- Eduard Bloch Mon, 11 Jul 2005 17:31:57 +0200 + +encfs (1.2.0-3) unstable; urgency=low + + * fixed ugly punctuation errors in the description (closes: #301870) + + -- Eduard Bloch Tue, 29 Mar 2005 03:33:24 +0200 + +encfs (1.2.0-2) unstable; urgency=low + + * put the comlete text of the upstream mail with OpenSSL exception into + debian/copyright + + -- Eduard Bloch Mon, 28 Mar 2005 00:58:58 +0200 + +encfs (1.2.0-1) unstable; urgency=low + + * Initial Release (closes: #288081) + * Got more explicit OpenSSL linking permission in a signed mail, see + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288081 for details. + + -- Eduard Bloch Thu, 10 Mar 2005 10:30:54 +0100 + --- encfs-1.3.2-1.orig/debian/dirs +++ encfs-1.3.2-1/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- encfs-1.3.2-1.orig/debian/docs +++ encfs-1.3.2-1/debian/docs @@ -0,0 +1 @@ +README --- encfs-1.3.2-1.orig/debian/copyright +++ encfs-1.3.2-1/debian/copyright @@ -0,0 +1,22 @@ +This package was debianized by Eduard Bloch on +Thu, 10 Mar 2005 10:30:54 +0100. + +It was downloaded from http://arg0.net/wiki/encfs or +http://arg0.net/users/vgough/download/. + +Copyright: + +Upstream Author: Valient Gough + +License: + +GNU General Public License with extra permission to link with OpenSSL +(see below). Complete text of the GPL is available in the file +/usr/share/common-licenses/GPL on Debian systems. + +As a special exception to encfs's GPL license, the copyright holders give +permission to link the code or portions of this program with the OpenSSL +library, and distribute linked combinations including the two. This +exception should be construed as narrowly as possible to allow OpenSSL to be +used and distributed as part of encfs. + --- encfs-1.3.2-1.orig/debian/compat +++ encfs-1.3.2-1/debian/compat @@ -0,0 +1 @@ +4