aboutsummaryrefslogtreecommitdiff
path: root/libgcrypt
diff options
context:
space:
mode:
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-07-31 20:45:44 +0000
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>2006-07-31 20:45:44 +0000
commit3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc (patch)
tree59f0163f13e99eefb959385243c564c5662bc5c2 /libgcrypt
downloadslackbuilds-3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc.tar.gz
slackbuilds-3ae891bbbaa3f96365f4c9fbe49e5cee26183fbc.tar.bz2
initial import
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@1 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'libgcrypt')
-rwxr-xr-xlibgcrypt/libgcrypt.SlackBuild131
-rw-r--r--libgcrypt/slack-desc19
2 files changed, 150 insertions, 0 deletions
diff --git a/libgcrypt/libgcrypt.SlackBuild b/libgcrypt/libgcrypt.SlackBuild
new file mode 100755
index 00000000..fdc753bf
--- /dev/null
+++ b/libgcrypt/libgcrypt.SlackBuild
@@ -0,0 +1,131 @@
+#!/bin/sh
+#
+# slackbuild for libgcrypt from http://www.slacky.it/download/libraries/libgcrypt/1.2.2/src
+#
+# Heavily based on the Slackware 10.2 SlackBuild
+# http://directory.fsf.org/security/libgcrypt.html
+#
+# small changes by rhatto
+#
+# TODO: check source signature
+#
+
+CWD=`pwd`
+
+# default settings
+PACKAGE="libgcrypt"
+_VERSION="1.2.2"
+_ARCH="x86_64"
+_BUILD="1rha"
+_TMP="/tmp"
+
+if [ -f "/etc/slackbuildrc" ]; then
+ source /etc/slackbuildrc
+fi
+
+if [ -f "~/.slackbuildrc" ]; then
+ source ~/.slackbuildrc
+fi
+
+if [ -z "$VERSION" ]; then
+ VERSION="$_VERSION"
+fi
+
+if [ -z "$ARCH" ]; then
+ ARCH="$_ARCH"
+fi
+
+if [ -z "$BUILD" ]; then
+ BUILD="$_BUILD"
+fi
+
+if [ "$ARCH" == "x86_64" ]; then
+ LIBDIR=/usr/lib64
+else
+ LIBDIR=/usr/lib
+fi
+
+if [ -z "$SRC" ]; then
+ SRC_DIR="$CWD"
+else
+ SRC_DIR="$SRC"
+fi
+
+if [ -z "$TMP" ]; then
+ TMP="$_TMP"
+fi
+
+RTOOL="wget"
+PACKAGE_EXT="bz2"
+NAME="$PACKAGE"
+SRC="$PACKAGE-$VERSION.tar.$PACKAGE_EXT"
+URL="ftp://ftp.gnupg.org/gcrypt/$PACKAGE/$SRC"
+PKG=$TMP/package-$PACKAGE
+
+if [ "$PACKAGE_EXT" == "bz2" ]; then
+ tarflag="j"
+else
+ tarflag="z"
+fi
+
+if [ "$RTOOL" == "wget" ] && [ ! -f "$SRC_DIR/$SRC" ]; then
+ wget "$URL" -O "$SRC_DIR/$SRC"
+ wget "$URL.sig" -O "$SRC_DIR/$SRC.sig"
+fi
+
+if [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mcpu=i686"
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mcpu=i686"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2"
+fi
+
+if [ ! -d $TMP ]; then
+ mkdir -p $TMP
+fi
+if [ ! -d $PKG ]; then
+ mkdir -p $PKG
+fi
+
+cd $TMP
+tar xvf$tarflag $SRC_DIR/$SRC
+cd $NAME-$VERSION
+chown -R root.root .
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+./configure --prefix=/usr --libdir="$LIBDIR" \
+--disable-static \
+--enable-m-guard \
+--program-prefix="" \
+--program-suffix="" \
+$ARCH-slackware-linux
+make
+make install DESTDIR=$PKG
+mkdir -p $PKG/usr/doc/$NAME-$VERSION
+cp -a AUTHORS BUGS COPYING* NEWS README* THANKS TODO VERSION \
+ $PKG/usr/doc/$NAME-$VERSION
+
+( 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
+)
+
+gzip $PKG/usr/info/*.info
+rm $PKG/usr/info/dir
+chown -R root.bin $PKG/usr/bin
+mkdir -p $PKG/install
+cat $CWD/slack-desc > $PKG/install/slack-desc
+cd $CWD
+cp -a *.SlackBuild slack-desc $PKG/usr/doc/$NAME-$VERSION
+chown -R root.root $PKG/usr/doc/$NAME-$VERSION
+echo 'chroot . /sbin/ldconfig' > $PKG/install/doinst.sh
+cd $PKG
+#requiredbuilder -v -y $PKG
+
+makepkg -l y -c n $TMP/$NAME-$VERSION-$ARCH-$BUILD.tgz
+
+if [ "$1" = "--cleanup" ]; then
+ rm -rf $TMP/$NAME-$VERSION
+ rm -rf $PKG
+fi
diff --git a/libgcrypt/slack-desc b/libgcrypt/slack-desc
new file mode 100644
index 00000000..a4bfb8bf
--- /dev/null
+++ b/libgcrypt/slack-desc
@@ -0,0 +1,19 @@
+# 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------------------------------------------------------|
+libgcrypt: LibGcrypt
+libgcrypt:
+libgcrypt: Libgcrypt is a general purpose crypto library based on the code
+libgcrypt: used in GnuPG. We can't start with a new version number because
+libgcrypt: libgcrypt was part of gnupg 1.1 and some applications already used
+libgcrypt: it and tested for the version number. We believe that the API can
+libgcrypt: stay as it is, except that new functions may be added in the
+libgcrypt: future.
+libgcrypt:
+libgcrypt:
+libgcrypt: