mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
desktop/slackware-xdm-theme: Added (Custom Slackware XDM Theme).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
02e8c64611
commit
bd2a3fb17c
5 changed files with 124 additions and 0 deletions
10
desktop/slackware-xdm-theme/README
Normal file
10
desktop/slackware-xdm-theme/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
slackware-xdm-theme (Custom Slackware XDM Theme)
|
||||
|
||||
This package contains a slightly modified version of alienBOB's
|
||||
xdm config used in the liveslak project.
|
||||
|
||||
You can customize the action buttons on the login window by
|
||||
editing /etc/X11/xdm/buttons - just follow the pattern already
|
||||
there.
|
||||
|
||||
Bug reports go to rworkman@slackbuilds.org
|
18
desktop/slackware-xdm-theme/doinst.sh
Normal file
18
desktop/slackware-xdm-theme/doinst.sh
Normal file
|
@ -0,0 +1,18 @@
|
|||
config() {
|
||||
NEW="$1"
|
||||
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||
# If there's no config file by that name, mv it over:
|
||||
if [ ! -r $OLD ]; then
|
||||
mv $NEW $OLD
|
||||
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||
# toss the redundant copy
|
||||
rm $NEW
|
||||
fi
|
||||
# Otherwise, we leave the .new copy for the admin to consider...
|
||||
}
|
||||
|
||||
config etc/X11/xdm/Xresources.new
|
||||
config etc/X11/xdm/Xstartup.new
|
||||
config etc/X11/xdm/xdm-config.new
|
||||
config etc/X11/xdm/Xsetup.new
|
||||
config etc/X11/xdm/buttons.new
|
19
desktop/slackware-xdm-theme/slack-desc
Normal file
19
desktop/slackware-xdm-theme/slack-desc
Normal file
|
@ -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 ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
slackware-xdm-theme: slackware-xdm-theme (Custom Slackware XDM Theme)
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme: This package contains a slightly modified version of alienBOB's
|
||||
slackware-xdm-theme: xdm config used in the liveslak project.
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme: Bug reports go to rworkman@slackbuilds.org
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme:
|
||||
slackware-xdm-theme:
|
67
desktop/slackware-xdm-theme/slackware-xdm-theme.SlackBuild
Normal file
67
desktop/slackware-xdm-theme/slackware-xdm-theme.SlackBuild
Normal file
|
@ -0,0 +1,67 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for slackware-xdm-theme
|
||||
|
||||
# Copyright 2017 Robby Workman, Tuscaloosa, Alabama, USA
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=slackware-xdm-theme
|
||||
VERSION=${VERSION:-20170522}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i586 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
tar xvf $CWD/$PRGNAM.tar.xz -C $PKG
|
||||
|
||||
sed -i "s,@LIBDIR@,lib${LIBDIRSUFFIX},g" $PKG/etc/X11/xdm/*
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a README $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
|
||||
chown -R root:root .
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
10
desktop/slackware-xdm-theme/slackware-xdm-theme.info
Normal file
10
desktop/slackware-xdm-theme/slackware-xdm-theme.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="slackware-xdm-theme"
|
||||
VERSION="20170522"
|
||||
HOMEPAGE="http://slackware.com/~rworkman/"
|
||||
DOWNLOAD="https://harrier.slackbuilds.org/misc/slackware-xdm-theme.tar.xz"
|
||||
MD5SUM="da26803cfcbbc80b3d72fbc2efcacd8a"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Robby Workman"
|
||||
EMAIL="rworkman@slackbuilds.org"
|
Loading…
Reference in a new issue