summaryrefslogtreecommitdiffstats
path: root/truecrypt/build/truecrypt.SlackBuild
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2006-04-18 14:32:06 +0000
committer Eric Hameleers <alien@slackware.com>2006-04-18 14:32:06 +0000
commitdbfc29bbd90e87a446e2254ee30c3671a1a3d9a3 (patch)
treea607249d8e9ba468dd0f55f6c6be1542eadf341f /truecrypt/build/truecrypt.SlackBuild
parenta8fb9cbdd1394d09960812af382f3c243d2a4f8e (diff)
downloadasb-dbfc29bbd90e87a446e2254ee30c3671a1a3d9a3.tar.gz
asb-dbfc29bbd90e87a446e2254ee30c3671a1a3d9a3.tar.xz
Initial revision
Diffstat (limited to 'truecrypt/build/truecrypt.SlackBuild')
-rwxr-xr-xtruecrypt/build/truecrypt.SlackBuild299
1 files changed, 299 insertions, 0 deletions
diff --git a/truecrypt/build/truecrypt.SlackBuild b/truecrypt/build/truecrypt.SlackBuild
new file mode 100755
index 00000000..d0f94184
--- /dev/null
+++ b/truecrypt/build/truecrypt.SlackBuild
@@ -0,0 +1,299 @@
+#!/bin/sh
+# Copyright (c) 2006 Eric Hameleers <alien@sox.homeip.net>
+# Distributed under the terms of the GNU General Public License, Version 2
+# -----------------------------------------------------------------------------
+#
+# Slackware SlackBuild script
+# ===========================
+# By: Eric Hameleers <alien@slackware.com>
+# For: truecrypt
+# URL: http://www.truecrypt.org/
+# Needs:
+# Changelog:
+# 4.0-1: 02/Nov/2005 by Eric Hameleers <alien@slackware.com>
+# * Initial build.
+#
+# 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=truecrypt
+VERSION=4.0
+ARCH=${ARCH:-i486}
+BUILD=1
+
+DOCS="README.1st Readme.txt License.txt userguide.pdf"
+
+# If you do *not* want non-admin users to be able to use truecrypt, set
+# BINPERM=0750
+BINPERM=4755
+
+# For now, the build script is quite fascist about the kernel version.
+# You can only build against the *running* kernel :-(
+KVER=${KVER:-`uname -r`}
+
+# If you have more source files, list them here as SOURCE[1], SOURCE[2], etc.
+# If you know the URL for a source file, you can put that into the SRCURL[]
+# variable, and the SlackBuild script will try to download it for you.
+
+SOURCE[0]="${PRGNAM}-${VERSION}-source-code.tar.gz"
+SRCURL[0]=""
+
+PATCH[0]="${PRGNAM}_ksrc.patch"
+PATCHURL[0]=""
+
+##
+## --- with a little luck, you won't have to edit below this point --- ##
+##
+
+if [ "$ARCH" = "i386" ]; then
+ SLKCFLAGS="-O2 -march=i386 -mcpu=i686"
+elif [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
+elif [ "$ARCH" = "s390" ]; then
+ SLKCFLAGS="-O2"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2"
+elif [ "$ARCH" = "athlon-xp" ]; then
+ SLKCFLAGS="-march=athlon-xp -O3 -pipe -fomit-frame-pointer"
+fi
+
+PKG=$TMP/package-$PRGNAM
+
+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
+fi
+
+
+# --- SOURCE FILE AVAILABILITY ---
+
+for (( i = 0; i < ${#SOURCE[*]}; i++ )) ; do
+ if ! [ -f ${CWD}/${SOURCE[$i]} ]; then
+ if ! [ "${SRCURL[$i]}" = "" ]; then
+ echo "Source '${SOURCE[$i]}' not available yet... will download now:"
+ wget -nv -O "${CWD}/${SOURCE[$i]}" "${SRCURL[$i]}"
+ if [ $? -ne 0 ]; then
+ echo "Downloading '${SOURCE[$i]}' failed... aborting the build."
+ exit 1
+ fi
+ else
+ echo "File '${SOURCE[$i]}' not available... aborting the build."
+ exit 1
+ fi
+ fi
+done
+
+for (( i = 0; i < ${#PATCH[*]}; i++ )) ; do
+ if ! [ -f ${CWD}/${PATCH[$i]} ]; then
+ if ! [ "${PATCHURL[$i]}" = "" ]; then
+ echo "Patch '${PATCH[$i]}' not available yet... will download now:"
+ wget -nv -O "${CWD}/${PATCH[$i]}" "${PATCHURL[$i]}"
+ if [ $? -ne 0 ]; then
+ echo "Downloading '${PATCH[$i]}' failed... aborting the build."
+ exit 1
+ fi
+ else
+ echo "File '${PATCH[$i]}' not available... aborting the build."
+ exit 1
+ fi
+ fi
+done
+
+if [ "$1" == "--download" ]; then
+ echo "Download complete."
+ exit 0
+fi
+
+# --- PACKAGE BUILDING ---
+
+echo "++"
+echo "|| $PRGNAM-$VERSION"
+echo "++"
+
+# Safety net 8-)
+if [ "$PKG" = "" -o "$PKG" = "/" ] ; then
+ cat <<-EOT
+ Your script sucks!!!
+ You were about to delete the contents of your computer's hard disk!
+ Please provide a value for the variable 'PKG'.
+ EOT
+ exit 1
+fi
+# We always erase old package's contents:
+rm -rf $PKG/*
+
+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(s) for $PRGNAM..."
+for (( i = 0; i < ${#SOURCE[*]}; i++ )) ; do
+ if `file $CWD/${SOURCE[$i]} | grep -q ": bzip2"`; then
+ tar -xjvf $CWD/${SOURCE[$i]}
+ elif `file $CWD/${SOURCE[$i]} | grep -qi ": zip"`; then
+ unzip $CWD/${SOURCE[$i]}
+ else
+ tar -xzvf $CWD/${SOURCE[$i]}
+ fi
+done
+cd ${PRGNAM}-${VERSION}
+patch -p1 < $CWD/${PRGNAM}_ksrc.patch
+
+chown -R root.root *
+find . -perm 777 -exec chmod 755 {} \;
+find . -exec chmod +r {} \;
+
+
+# --- BUILDING ---
+
+echo Building ...
+
+cd Linux
+CFLAGS="$SLKCFLAGS" \
+./build.sh 2>&1 | tee $CWD/build-${PRGNAM}.log
+
+# Run a test
+./Cli/truecrypt --test 2>&1 | tee -a $CWD/build-${PRGNAM}.log
+
+#
+# Install all the needed stuff to the package dir
+#
+mkdir -p $PKG/usr/bin
+mkdir -p $PKG/usr/man/man1
+mkdir -p $PKG/lib/modules/$KVER/extra
+
+cp -a Cli/truecrypt $PKG/usr/bin/
+cp -a Cli/Man/truecrypt.1 $PKG/usr/man/man1/
+cp -a Kernel/truecrypt.ko $PKG/lib/modules/$KVER/extra
+chmod 600 $PKG/lib/modules/$KVER/extra/truecrypt.ko
+
+cd ..
+
+# --- DOINST.SH ---
+# And now write the doinst.sh :
+mkdir -p $PKG/install
+cat <<-EEOOTT > $PKG/install/doinst.sh
+ # TrueCrypt install script
+ if [ ! -x usr/sbin/dmsetup ] ; then
+ echo "TrueCrypt requires device mapper tools (dmsetup) 1.00.08 or later."
+ echo "Please install the 'device-mapper' package before trying to use truecrypt."
+ fi
+
+ # Set the correct access bits on the binary:
+ chmod $BINPERM usr/bin/truecrypt
+
+ # Make the device mapper module load on boot:
+ if ! grep -e "^[^#]* dm-mod" etc/rc.d/rc.modules >/dev/null ; then
+ echo "# Loading device mapper module (for truecrypt amongst others)" >> etc/rc.d/rc.modules
+ echo "/sbin/modprobe dm-mod" >> etc/rc.d/rc.modules
+ fi
+
+ # Make truecrypt module load on boot:
+ if ! grep -e "^[^#]* truecrypt" etc/rc.d/rc.modules >/dev/null ; then
+ echo "# TrueCrypt OTFE (On The Fly Encryption)" >> etc/rc.d/rc.modules
+ echo "/sbin/modprobe truecrypt" >> etc/rc.d/rc.modules
+ fi
+
+ # 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
+ # This probably doesn't hurt:
+ modprobe -r truecrypt >/dev/null 2>&1
+ modprobe dm-mod >/dev/null 2>&1
+ modprobe truecrypt >/dev/null 2>&1
+ fi
+ fi
+ EEOOTT
+
+
+# --- DOCUMENTATION ---
+
+cp Release/Readme.txt README.1st
+cp Release/Setup\ Files/TrueCrypt\ User\ Guide.pdf userguide.pdf
+
+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)
+gzip -9f $PKG/usr/man/*/*
+gzip -9f $PKG/usr/man/*/*/*
+
+# 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
+chown root:bin $PKG/usr/bin/* $PKG/usr/sbin/* $PKG/bin/* $PKG/sbin/* \
+ $PKG/usr/X11R6/bin/* $PKG/opt/kde/bin/* 2>/dev/null
+
+
+# --- PACKAGE DESCRIPTION ---
+
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+# Substitute correct versions
+sed -i -e "s#\@\@KERNELVERS\@\@#${KVER}#g" $PKG/install/slack-desc
+# I give in :-/
+if [ -f $CWD/slack-requires ]; then
+ cat $CWD/slack-requires > $PKG/install/slack-requires
+fi
+
+
+# --- BUILDING ---
+
+# Build the package:
+cd $PKG
+makepkg --linkadd y --chown n $TMP/${PRGNAM}-${VERSION}_${KVER}-${ARCH}-${BUILD}.tgz \
+ 2>&1 | tee $CWD/makepkg-${PRGNAM}.log
+(cd $TMP && md5sum ${PRGNAM}-${VERSION}_${KVER}-${ARCH}-${BUILD}.tgz > ${PRGNAM}-${VERSION}_${KVER}-${ARCH}-${BUILD}.tgz.md5)
+cat $PKG/install/slack-desc | grep "^${PRGNAM}" > $TMP/${PRGNAM}-${VERSION}_${KVER}-${ARCH}-${BUILD}.txt
+if [ -f $CWD/slack-requires ]; then
+ cat $CWD/slack-requires > $TMP/${PRGNAM}-${VERSION}_${KVER}-${ARCH}-${BUILD}.dep
+fi
+
+
+# --- CLEANUP ---
+
+# Clean up the extra stuff:
+if [ "$1" = "--cleanup" ]; then
+ rm -rf $TMP/tmp-$PRGNAM
+ rm -rf $PKG
+fi