#!/bin/sh # $Id$ # Copyright (c) 2006 Eric Hameleers # Distributed under the terms of the GNU General Public License, Version 2 # ----------------------------------------------------------------------------- # # Slackware SlackBuild script # =========================== # By: Eric Hameleers # For: fuse # URL: http://fuse.sourceforge.net/ # Needs: # Changelog: # 2.2-1: 04/mar/2005 by Eric Hameleers # * Initial build. # 2.2-2: 17/mar/2005 by Eric Hameleers # * Separate kernel module into its own package. # 2.4.2-1: 19/dec/2005 by Eric Hameleers # * Update. Proper parametrisation of kernel version # and kernel sourcedirectory. Fixed 'bin' group ownership of # the binaries. try to run 'depmod -a' and add # '/sbin/modprobe fuse' to rc.modules. # 2.4.2-2: 23/dec/2005 by Eric Hameleers # * Fixed generation of the fuse-module-xxxxxx.txt file which is # basically the slack-desc- file. Also, added a "rm -rf $PKG2" # in the "--cleanup" section. # 2.5.3-1: 25/aug/2006 by Eric Hameleers # * Upgrade, script cleanup. # # Run 'sh SlackBuild --cleanup' to build a Slackware package. # The package (.tgz) plus descriptive .txt file are created in /tmp . # Install using 'installpkg'. # # ----------------------------------------------------------------------------- # --- INIT --- # Set initial variables: CWD=`pwd` if [ "$TMP" = "" ]; then TMP=/tmp fi PRGNAM=fuse PRGNAM2=fuse-module VERSION=2.5.3 KVER=${KVER:-`/usr/bin/uname -r`} KSRC=${KSRC:-/lib/modules/${KVER}/build} ARCH=${ARCH:-i486} BUILD=1 DOCS="AUTHORS COPYING COPYING.LIB ChangeLog FAQ Filesystems \ NEWS README README-2.4 README.NFS doc/how-fuse-works doc/kernel.txt" SOURCE="${PRGNAM}-${VERSION}.tar.gz" SRCURL="http://dl.sourceforge.net/${PRGNAM}/${PRGNAM}-${VERSION}.tar.gz" # Slackware 11 and up need other option (gcc > 3.3.x) if [ `gcc -dumpversion | tr -d '.' |cut -c 1-2` -gt 33 ]; then MOPT=tune else MOPT=cpu fi if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -m${MOPT}=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -m${MOPT}=i686" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi PKG=$TMP/package-$PRGNAM PKG2=$TMP/package-$PRGNAM2 if [ ! -d $TMP/tmp-$PRGNAM ]; then mkdir -p $TMP/tmp-$PRGNAM # location to build the source elif [ "$1" != "--oldbuild" ]; then # If the "--oldbuild" parameter is present, we keep # the old build files and continue; # By default we remove the remnants of previous build and continue: rm -rf $TMP/tmp-$PRGNAM/* fi if [ ! -d $PKG ]; then mkdir -p $PKG # place for the package to be built else rm -rf $PKG/* # cleanup target before the build fi if [ ! -d $PKG2 ]; then mkdir -p $PKG2 # place for the package to be built else rm -rf $PKG2/* # cleanup target before the build fi # Download the sources if requested if [ "${SOURCE}" != "" ] && ! [ -f ${CWD}/${SOURCE} ]; then echo "Source '${SOURCE}' not available yet... will download now:" wget -nv -O ${CWD}/${SOURCE} "${SRCURL}" if [ $? -ne 0 ]; then echo "Downloading '${SOURCE}' failed... aborting the build." mv -f ${CWD}/${SOURCE} ${CWD}/${SOURCE}.FAIL exit 1 fi fi if [ "$1" == "--download" ]; then echo "Download complete." exit 0 fi # --- PACKAGE BUILDING --- echo "++" echo "|| $PRGNAM-$VERSION" echo "++" cd $PKG # Explode the package framework: if [ -f $CWD/_$PRGNAM.tar.gz ]; then explodepkg $CWD/_$PRGNAM.tar.gz fi cd $TMP/tmp-$PRGNAM # --- TARBALL EXTRACTION,PATCH,MODIFY --- echo "Extracting the program tarball for $PRGNAM..." if `file $CWD/${SOURCE} | grep -q ": bzip2"`; then tar -xjvf $CWD/${SOURCE} else tar -xzvf $CWD/${SOURCE} fi if [ $? -ne 0 ]; then echo "Error in unpacking '${SOURCE}!' Aborting..." exit $? fi cd ${PRGNAM}-${VERSION} chown -R root.root * # --- BUILDING --- echo Building ... CFLAGS="$SLKCFLAGS" \ ./configure --prefix=/usr \ --localstatedir=/var \ --sysconfdir=/etc \ --enable-kernel-module \ --with-kernel=${KSRC} \ --enable-lib \ --enable-util \ --enable-example \ 2>&1 | tee $CWD/configure-${PRGNAM}.log make 2>&1 | tee $CWD/make-${PRGNAM}.log # # Install all the needed stuff to the package dir # # Use installwatch if available: which installwatch > /dev/null 2>&1 if [ $? == 0 ]; then installwatch -o $CWD/install-${PRGNAM}.log make DESTDIR=$PKG install else make DESTDIR=$PKG install 2>&1 |tee $CWD/install-${PRGNAM}.log fi # --- DOCUMENTATION --- mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS \ $PKG/usr/doc/$PRGNAM-$VERSION chmod -R a-w $PKG/usr/doc/$PRGNAM-$VERSION/* # Compress the man page(s) find $PKG/usr/man -name "*.?" -type f -exec gzip -9f {} \; # Strip binaries ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) # --- OWNERSHIP, RIGHTS --- chmod -R o-w $PKG # Some people might find this a security risk. The fuse documentation thinks it # is wrapped in adequate safety guards. If you do not make fusermount setuid root, # then the normal user will not be able to mount a fuse filesystem. chmod 4755 $PKG/usr/bin/fusermount # --- PACKAGE DESCRIPTION --- mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc if [ -f $CWD/doinst.sh ]; then cat $CWD/doinst.sh > $PKG/install/doinst.sh fi # --- BUILDING --- # Build the packages: cd $PKG mv lib $PKG2/ makepkg --linkadd y --chown n $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD.tgz \ 2>&1 | tee $CWD/makepkg-${PRGNAM}.log (cd $TMP && md5sum $PRGNAM-$VERSION-$ARCH-$BUILD.tgz > $PRGNAM-$VERSION-$ARCH-$BUILD.tgz.md5) cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD.txt # Create the module package cd $PKG2 mkdir -p $PKG2/install cat <<-EEOOTT > $PKG2/install/doinst.sh # Only run depmod on matching running kernel # Slackware will run depmod anyway on reboot): MYMODVER=$KVER MYKERNEL=\`uname -r\` if [ "\$MYKERNEL" = "\$MYMODVER" ]; then if [ -x sbin/depmod ]; then chroot . /sbin/depmod -a \$MYKERNEL 1> /dev/null 2> /dev/null fi fi # Update rc.modules so that fuse will be loaded on boot if ! grep "^/sbin/modprobe fuse" etc/rc.d/rc.modules 1>/dev/null 2>&1 ; then cat <<_EOM_ >> etc/rc.d/rc.modules # Load fuse /sbin/modprobe fuse _EOM_ fi EEOOTT cat $CWD/${PRGNAM2}.slack-desc > $PKG2/install/slack-desc makepkg --linkadd y --chown n $TMP/$PRGNAM2-${VERSION}_${KVER}-$ARCH-$BUILD.tgz \ 2>&1 | tee $CWD/makepkg-${PRGNAM2}.log (cd $TMP && md5sum $PRGNAM2-${VERSION}_${KVER}-$ARCH-$BUILD.tgz > $PRGNAM2-${VERSION}_${KVER}-$ARCH-$BUILD.tgz.md5) cat $PKG2/install/slack-desc | grep "^${PRGNAM2}" > $TMP/$PRGNAM2-${VERSION}_${KVER}-$ARCH-$BUILD.txt # --- CLEANUP --- # Clean up the extra stuff: if [ "$1" = "--cleanup" ]; then rm -rf $TMP/tmp-$PRGNAM rm -rf $PKG rm -rf $PKG2 fi