2018-05-28 21:12:29 +02:00
|
|
|
#!/bin/bash
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
# Slackware build script for x11-ssh-askpass
|
|
|
|
# Written by "Vincent Batts <vbatts@batts.mine.nu>"
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
|
|
|
PKGNAM=x11-ssh-askpass
|
2009-08-26 17:00:38 +02:00
|
|
|
VERSION=1.2.4.1
|
2018-05-28 21:12:29 +02:00
|
|
|
BUILD=${BUILD:-3}
|
2009-08-26 17:00:38 +02:00
|
|
|
TAG=${TAG:-}
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
# Automatically determine the architecture we're building on:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2018-05-28 21:12:29 +02:00
|
|
|
i?86) export ARCH=i586 ;;
|
2011-04-25 15:37:00 +02:00
|
|
|
arm*) export ARCH=arm ;;
|
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) export ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
|
|
# the name of the created package would be, and then exit. This information
|
|
|
|
# could be useful to other scripts.
|
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2009-08-26 17:00:38 +02:00
|
|
|
TMP=${TMP:-/tmp}
|
|
|
|
PKG=$TMP/package-x11-ssh-askpass
|
|
|
|
|
2018-05-28 21:12:29 +02:00
|
|
|
if [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
2009-08-26 17:00:38 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "s390" ]; then
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2011-04-25 15:37:00 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2009-08-26 17:00:38 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf x11-ssh-askpass-$VERSION
|
2011-04-25 15:37:00 +02:00
|
|
|
tar xvf $CWD/x11-ssh-askpass-$VERSION.tar.gz || exit 1
|
|
|
|
cd x11-ssh-askpass-$VERSION || exit 1
|
2009-08-26 17:00:38 +02:00
|
|
|
chown -R root:root .
|
|
|
|
chmod -R a-s,u+rw,go+r-w .
|
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--with-app-defaults-dir=/etc/X11/app-defaults
|
|
|
|
|
|
|
|
xmkmf || exit 1
|
|
|
|
make includes || exit 1
|
|
|
|
make || exit 1
|
|
|
|
make install DESTDIR=$PKG || exit 1
|
|
|
|
make install.man DESTDIR=$PKG || exit 1
|
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2009-08-26 17:00:38 +02:00
|
|
|
|
2011-04-25 15:37:00 +02:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|
|
|
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/x11-ssh-askpass-$VERSION
|
2011-04-25 15:37:00 +02:00
|
|
|
cp -a \
|
|
|
|
README TODO ChangeLog $CWD/xprofile.sample \
|
|
|
|
$PKG/usr/doc/x11-ssh-askpass-$VERSION
|
|
|
|
chown -R root:root $PKG/usr/doc/x11-ssh-askpass-$VERSION
|
2009-08-26 17:00:38 +02:00
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
2011-04-25 15:37:00 +02:00
|
|
|
/sbin/makepkg -l y -c n $TMP/x11-ssh-askpass-$VERSION-$ARCH-$BUILD.txz
|