summaryrefslogtreecommitdiffstats
path: root/system/encfs
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@liwjatan.at>2010-05-11 22:26:39 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-11 22:26:39 +0200
commit303f6700b58ccc28dcd254c22148f53d6a222bd5 (patch)
tree426024e0a0af735629bab931e146a97d47323a1c /system/encfs
parentf18480faf7b65273a6ad87e69058f17e1cea3338 (diff)
downloadslackbuilds-303f6700b58ccc28dcd254c22148f53d6a222bd5.tar.gz
slackbuilds-303f6700b58ccc28dcd254c22148f53d6a222bd5.tar.xz
system/encfs: Updated for version 1.5
Diffstat (limited to 'system/encfs')
-rw-r--r--system/encfs/README2
-rw-r--r--system/encfs/encfs.SlackBuild17
-rw-r--r--system/encfs/encfs.info12
3 files changed, 19 insertions, 12 deletions
diff --git a/system/encfs/README b/system/encfs/README
index 88909f81f3..a39dc1e856 100644
--- a/system/encfs/README
+++ b/system/encfs/README
@@ -3,7 +3,7 @@ using the FUSE kernel module. FUSE provides a loadable kernel module
which exports a filesystem interface to user-mode. EncFS runs entirely in
user-mode and acts as a transparent encrypted filesystem.
-This requires rlog and fuse.
+This requires rlog and boost.
Usage:
mount: encfs /path/to/encrypted_dir /path/to/mountpoint
diff --git a/system/encfs/encfs.SlackBuild b/system/encfs/encfs.SlackBuild
index dd7181602e..2f5c82caba 100644
--- a/system/encfs/encfs.SlackBuild
+++ b/system/encfs/encfs.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for encfs
-# Copyright 2007-2008 Heinz Wiesinger <hmwiesinger@gmx.at>
+# Copyright 2007-2008 Heinz Wiesinger <pprkut@liwjatan.at>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=encfs
-VERSION=1.4.1.1
+VERSION=1.5
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -37,6 +37,8 @@ if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
fi
set -e
@@ -45,7 +47,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
+tar xvf $CWD/$PRGNAM-$VERSION-2.tgz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
@@ -57,12 +59,17 @@ CXXFLAGS="$SLKCFLAGS" \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
- --disable-static
+ --disable-static \
+ --build=$ARCH-slackware-linux \
+ --host=$ARCH-slackware-linux
make
make install-strip DESTDIR=$PKG
-gzip -9 $PKG/usr/man/man?/*.?
+( cd $PKG/usr/man
+ find . -type f -exec gzip -9 {} \;
+ for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a ABOUT-NLS AUTHORS ChangeLog COPYING INSTALL README \
diff --git a/system/encfs/encfs.info b/system/encfs/encfs.info
index 455db6bb47..78eb4c7429 100644
--- a/system/encfs/encfs.info
+++ b/system/encfs/encfs.info
@@ -1,8 +1,8 @@
PRGNAM="encfs"
-VERSION="1.4.1.1"
-HOMEPAGE="http://www.arg0.net"
-DOWNLOAD="http://encfs.googlecode.com/files/encfs-1.4.1.1.tar.gz"
-MD5SUM="dd73c2a15dfba0b2e20202dfdb1482f2"
+VERSION="1.5"
+HOMEPAGE="http://www.arg0.net/encfs"
+DOWNLOAD="http://encfs.googlecode.com/files/encfs-1.5-2.tgz"
+MD5SUM="b07008545545b4a57cf2bf65f08a14ad"
MAINTAINER="ppr:kut"
-EMAIL="HMWiesinger@gmx.at"
-APPROVED="rworkman"
+EMAIL="pprkut@liwjatan.at"
+APPROVED="David Somero" \ No newline at end of file