slackbuilds_ponce/system/gdm/gdm.SlackBuild

87 lines
2.3 KiB
Text
Raw Normal View History

2010-05-11 15:18:37 +02:00
#!/bin/sh
2010-05-11 19:46:27 +02:00
# Slackbuild Script for gdm
2010-05-11 15:18:37 +02:00
#
# Written by James Rich james@chowhouse.com
2010-05-11 19:46:27 +02:00
#
2010-05-11 15:18:37 +02:00
# Assumed to be in public domain per our submission guidelines
# Modified by the SlackBuilds.org project
2010-05-11 19:46:27 +02:00
# Script maintained by Frank Caraballo <fecaraballo{at}gmail{dot}com>
2010-05-11 15:18:37 +02:00
PRGNAM=gdm
2010-05-11 22:26:41 +02:00
VERSION=2.20.7
2010-05-11 15:18:37 +02:00
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
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
2010-05-11 19:46:27 +02:00
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
2010-05-11 15:18:37 +02:00
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
2010-05-11 19:46:27 +02:00
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
2010-05-11 15:18:37 +02:00
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc/X11 \
2010-05-11 22:26:41 +02:00
--localstatedir=/var/lib/$PRGNAM \
2010-05-11 19:46:27 +02:00
--mandir=/usr/man \
--docdir=/usr/doc/$PRGNAM-$VERSION \
--program-prefix="" \
--program-suffix="" \
2010-05-11 15:18:37 +02:00
--disable-scrollkeeper \
--enable-console-helper=no \
2010-05-11 19:46:27 +02:00
--enable-shared=yes \
2010-05-11 15:18:37 +02:00
--enable-static=no \
2010-05-11 19:46:27 +02:00
--enable-ipv6=yes \
2010-05-11 22:26:41 +02:00
--with-dmconfdir=/etc/X11/$PRGNAM \
2010-05-11 15:18:37 +02:00
|| exit 1
make || exit 1
2010-05-11 22:26:41 +02:00
make install DESTDIR=$PKG || exit 1
2010-05-11 15:18:37 +02:00
( cd $PKG
2010-05-11 22:26:41 +02:00
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
2010-05-11 15:18:37 +02:00
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
2010-05-11 19:46:27 +02:00
( cd $PKG/usr/man
find . -type f -exec gzip -9 {} \;
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
)
2010-05-11 15:18:37 +02:00
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
2010-05-11 19:46:27 +02:00
cp -a AUTHORS ChangeLog COPYING INSTALL MAINTAINERS NEWS README* TODO docs/C/* \
2010-05-11 15:18:37 +02:00
$PKG/usr/doc/$PRGNAM-$VERSION
2010-05-11 19:46:27 +02:00
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
2010-05-11 15:18:37 +02:00
# Simple session files designed to work with Slackware:
2010-05-11 22:26:41 +02:00
mkdir -p $PKG/etc/X11/$PRGNAM/Sessions
cp -r $CWD/Sessions/* $PKG/etc/X11/$PRGNAM/Sessions
chmod 0755 $PKG/etc/X11/$PRGNAM/Sessions/*
2010-05-11 15:18:37 +02:00
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz