summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Robby Workman2011-04-01 18:02:48 +0200
committer Robby Workman2011-04-03 16:59:46 +0200
commit851918807288e1388f97ca9dd96dd89544a08f64 (patch)
tree197e670a436eb4f5dfa5ed0dd1f83e8e7f39ceaa /desktop
parent63aaeae315260a0b14bdfe0f069f4209182d930f (diff)
downloadslackbuilds-851918807288e1388f97ca9dd96dd89544a08f64.tar.gz
desktop/dekorator: Removed (abandoned by maintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/dekorator/README8
-rw-r--r--desktop/dekorator/dekorator.SlackBuild102
-rw-r--r--desktop/dekorator/dekorator.info10
-rw-r--r--desktop/dekorator/doinst.sh3
-rw-r--r--desktop/dekorator/slack-desc19
5 files changed, 0 insertions, 142 deletions
diff --git a/desktop/dekorator/README b/desktop/dekorator/README
deleted file mode 100644
index 611ec6210b..0000000000
--- a/desktop/dekorator/README
+++ /dev/null
@@ -1,8 +0,0 @@
-deKorator (kwin window decoration theme)
-
-deKorator is a themable window decorator for KDE SC 4.x.
-
-You can find over 150 deKorator themes here:
-http://www.kde-look.org/index.php?xcontentmode=21.
-Additionally, many KDE 3.2+ theme packages include deKorator themes.
-
diff --git a/desktop/dekorator/dekorator.SlackBuild b/desktop/dekorator/dekorator.SlackBuild
deleted file mode 100644
index 68c0652c04..0000000000
--- a/desktop/dekorator/dekorator.SlackBuild
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for deKorator
-
-# Copyright 2010, mario <mario@slackverse.org>
-# 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=dekorator
-VERSION=${VERSION:-0.5.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-# Automatically determine the architecture we're building on:
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
- *) 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 -xjvf $CWD/*-$PRGNAM-$VERSION.tar.bz2
-cd $PRGNAM-$VERSION
-chown -R root:root .
-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 {} \;
-
-mkdir -p build
-cd build
-cmake \
- -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -DMAN_INSTALL_DIR=/usr/man \
- -DCMAKE_BUILD_TYPE=Release ..
-
-make VERBOSE=1
-make install VERBOSE=1 DESTDIR=$PKG
-cd -
-
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING ChangeLog 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
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/desktop/dekorator/dekorator.info b/desktop/dekorator/dekorator.info
deleted file mode 100644
index eac96a5d95..0000000000
--- a/desktop/dekorator/dekorator.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="dekorator"
-VERSION="0.5.1"
-HOMEPAGE="http://kde-look.org/content/show.php/deKorator?content=87921"
-DOWNLOAD="http://kde-look.org/CONTENT/content-files/87921-dekorator-0.5.1.tar.bz2"
-MD5SUM="4b88cda85554df436e2cd6ad278ee480"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="mario"
-EMAIL="mario@slackverse.org"
-APPROVED="dsomero"
diff --git a/desktop/dekorator/doinst.sh b/desktop/dekorator/doinst.sh
deleted file mode 100644
index 5fb28930db..0000000000
--- a/desktop/dekorator/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/desktop/dekorator/slack-desc b/desktop/dekorator/slack-desc
deleted file mode 100644
index 09641aba2c..0000000000
--- a/desktop/dekorator/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-dekorator: deKorator (kwin window decoration theme)
-dekorator:
-dekorator: deKorator is a themable window decorator for KDE SC 4.x.
-dekorator:
-dekorator: You can find over 150 deKorator themes here:
-dekorator: http://www.kde-look.org/index.php?xcontentmode=21.
-dekorator: Additionally, many KDE 3.2+ theme packages include deKorator themes.
-dekorator:
-dekorator:
-dekorator:
-dekorator: