summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:31:01 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-11 20:31:01 +0200
commita9075ab42b4063ee720ee3be203bf642a6dad556 (patch)
tree40231eecbc277d58bb48d4231f7853de792c643e /system
parente0a9f99c7adbe54925233c3f8de42b8988db507d (diff)
downloadslackbuilds-a9075ab42b4063ee720ee3be203bf642a6dad556.tar.gz
slackbuilds-a9075ab42b4063ee720ee3be203bf642a6dad556.tar.xz
system/fuse: Removed from 12.1 repository
Diffstat (limited to 'system')
-rw-r--r--system/fuse/README9
-rw-r--r--system/fuse/doinst.sh24
-rw-r--r--system/fuse/fuse.SlackBuild80
-rw-r--r--system/fuse/fuse.info8
-rw-r--r--system/fuse/slack-desc19
5 files changed, 0 insertions, 140 deletions
diff --git a/system/fuse/README b/system/fuse/README
deleted file mode 100644
index 0f2c12cd22..0000000000
--- a/system/fuse/README
+++ /dev/null
@@ -1,9 +0,0 @@
-FUSE is a simple interface for userspace programs to export
-a virtual filesystem to the Linux kernel. FUSE also aims to
-provide a secure method for non privileged users to create
-and mount their own filesystem implementations.
-
-You'll need to start fuse from rc.local with something like this:
- if [ -x /etc/rc.d/rc.fuse ]; then
- /etc/rc.d/rc.fuse start
- fi
diff --git a/system/fuse/doinst.sh b/system/fuse/doinst.sh
deleted file mode 100644
index cbb9562449..0000000000
--- a/system/fuse/doinst.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-# Keep same perms on rc.fuse.new:
-if [ -e etc/rc.d/rc.fuse ]; then
- cp -a etc/rc.d/rc.fuse etc/rc.d/rc.fuse.new.incoming
- cat etc/rc.d/rc.fuse.new > etc/rc.d/rc.fuse.new.incoming
- mv etc/rc.d/rc.fuse.new.incoming etc/rc.d/rc.fuse.new
-fi
-
-config etc/rc.d/rc.fuse.new
-
diff --git a/system/fuse/fuse.SlackBuild b/system/fuse/fuse.SlackBuild
deleted file mode 100644
index 658723c7c8..0000000000
--- a/system/fuse/fuse.SlackBuild
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for fuse
-
-# Written by core <eroc@linuxmail.org>
-# Thanks to Helo Athena, Michiel van Wessem
-# and Robby Workman for ideas behind ./configure :)
-
-PRGNAM=fuse
-VERSION=2.7.3
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R a-s,u+rw,go-w .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --bindir=/bin \
- --sbindir=/sbin \
- --libdir=/lib \
- --with-pkgconfigdir=/usr/lib/pkgconfig \
- --includedir=/usr/include \
- --localstatedir=/var \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --enable-lib \
- --enable-util \
- --disable-static \
- --disable-kernel-module
-
-make
-make install DESTDIR=$PKG
-
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-)
-
-# Move the start|stop script of fuse to the right place.
-mv $PKG/etc/init.d $PKG/etc/rc.d
-mv $PKG/etc/rc.d/fuse $PKG/etc/rc.d/rc.fuse.new
-
-# udev handles device node creation
-rm -rf $PKG/dev
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS ChangeLog COPYING COPYING.LIB FAQ Filesystems \
- INSTALL NEWS README README.NFS doc/how-fuse-works doc/kernel.txt \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/system/fuse/fuse.info b/system/fuse/fuse.info
deleted file mode 100644
index 04c7a93de5..0000000000
--- a/system/fuse/fuse.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="fuse"
-VERSION="2.7.3"
-HOMEPAGE="http://fuse.sourceforge.net"
-DOWNLOAD="http://downloads.sourceforge.net/fuse/fuse-2.7.3.tar.gz"
-MD5SUM="98563fc7b265b7479a3178181cbcf59a"
-MAINTAINER="core"
-EMAIL="eroc@linuxmail.org"
-APPROVED="rworkman"
diff --git a/system/fuse/slack-desc b/system/fuse/slack-desc
deleted file mode 100644
index 4501cc73a4..0000000000
--- a/system/fuse/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-fuse: FUSE (Filesystem in Userspace)
-fuse:
-fuse: FUSE is a simple interface for userspace programs to export
-fuse: a virtual filesystem to the Linux kernel. FUSE also aims to
-fuse: provide a secure method for non privileged users to create
-fuse: and mount their own filesystem implementations.
-fuse:
-fuse: Homepage: http://fuse.sourceforge.net
-fuse:
-fuse:
-fuse: