summaryrefslogtreecommitdiffstats
path: root/system/gdm/gdm.SlackBuild
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2016-01-03 18:58:26 -0600
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-01-17 09:40:16 +0700
commitb1350ddf30629bb5a87b6ba9ca16de6d504725af (patch)
tree56229b78be98058f4ab4960c0781b96d94a9581f /system/gdm/gdm.SlackBuild
parent3d937eb43dcd20ce24c951307eadb74c3a38d809 (diff)
downloadslackbuilds-b1350ddf30629bb5a87b6ba9ca16de6d504725af.tar.gz
slackbuilds-b1350ddf30629bb5a87b6ba9ca16de6d504725af.tar.xz
system/gdm: Removed (not functional with CK2)
I looked around in the gdm code and don't see anything obvious that would make it not work with CK2, and google turned up nothing useful. I did notice that PCLinuxOS is using gdm-2.20.11 as well, but aside from a special dbus config file (which I tried here with no change to behavior), I don't see anything special that they do. They use PAM though, so maybe that makes a difference. These days, I don't even use gdm any more - I'm on xdm with alienBOB's config (slightly modified) from his livecd work. The only things that users might miss are a session chooser (change $HOME.xinitrc instead) and switching users (I don't like that anyway), so good riddance to this one. Signed-off-by: Robby Workman <rworkman@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/gdm/gdm.SlackBuild')
-rw-r--r--system/gdm/gdm.SlackBuild124
1 files changed, 0 insertions, 124 deletions
diff --git a/system/gdm/gdm.SlackBuild b/system/gdm/gdm.SlackBuild
deleted file mode 100644
index 2cce07f45c..0000000000
--- a/system/gdm/gdm.SlackBuild
+++ /dev/null
@@ -1,124 +0,0 @@
-#!/bin/sh
-
-# Slackbuild Script for GDM
-#
-# Written by James Rich james@chowhouse.com
-#
-# Assumed to be in public domain per our submission guidelines
-# Modified by the SlackBuilds.org project
-# Modified by Frank Caraballo <fecaraballo{at}gmail{dot}com>
-# Maintained by Robby Workman <rworkman@slackbuilds.org>
-
-PRGNAM=gdm
-VERSION=${VERSION:-2.20.11}
-BUILD=${BUILD:-6}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
- LIBDIRSUFFIX=""
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
- LIBDIRSUFFIX="64"
-else
- SLKCFLAGS="-O2"
- LIBDIRSUFFIX=""
-
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \;
-
-# Don't automatically start ssh-agent -- this is the user's job
-patch -p1 < $CWD/patches/do_not_start_ssh-agent.diff
-
-# Fix crypt() usage with glibc-2.17 and later
-patch -p1 < $CWD/patches/gdm-2.20.11-crypt.diff
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --sysconfdir=/etc \
- --localstatedir=/var/lib \
- --mandir=/usr/man \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --disable-scrollkeeper \
- --enable-console-helper=no \
- --enable-static=no \
- --enable-ipv6=yes \
- --with-dmconfdir=/usr/share/xsessions \
- --build=$ARCH-slackware-linux
-
-make SUSPEND_COMMAND=/usr/sbin/pm-suspend
-make SUSPEND_COMMAND=/usr/sbin/pm-suspend install-strip DESTDIR=$PKG
-
-# Install some simple session files designed to work with Slackware
-mkdir -p $PKG/usr/share/xsessions
-cp $CWD/sessions/* $PKG/usr/share/xsessions
-chmod 0755 $PKG/usr/share/xsessions/*
-
-# Make xfce the default session
-patch -d $PKG -p1 < $CWD/patches/make_xfce_default_session.diff
-
-# Let's not clobber the configs
-mv $PKG/etc/gdm/custom.conf $PKG/etc/gdm/custom.conf.new
-mv $PKG/etc/gdm/Xsession $PKG/etc/gdm/Xsession.new
-mv $PKG/etc/gdm/Init/Default $PKG/etc/gdm/Init/Default.new
-mv $PKG/etc/gdm/PreSession/Default $PKG/etc/gdm/PreSession/Default.new
-mv $PKG/etc/gdm/PostSession/Default $PKG/etc/gdm/PostSession/Default.new
-mv $PKG/etc/gdm/XKeepsCrashing $PKG/etc/gdm/XKeepsCrashing.new
-mv $PKG/etc/gdm/locale.alias $PKG/etc/gdm/locale.alias.new
-mv $PKG/etc/gdm/modules/factory-AccessDwellMouseEvents \
- $PKG/etc/gdm/modules/factory-AccessDwellMouseEvents.new
-mv $PKG/etc/gdm/modules/AccessDwellMouseEvents \
- $PKG/etc/gdm/modules/AccessDwellMouseEvents.new
-mv $PKG/etc/gdm/modules/factory-AccessKeyMouseEvents \
- $PKG/etc/gdm/modules/factory-AccessKeyMouseEvents.new
-mv $PKG/etc/gdm/modules/AccessKeyMouseEvents \
- $PKG/etc/gdm/modules/AccessKeyMouseEvents.new
-
-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
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS ChangeLog COPYING INSTALL MAINTAINERS NEWS README* TODO docs/C/* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}