diff options
author | mario <mario@slackverse.org> | 2010-04-19 18:33:35 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-15 10:38:26 +0200 |
commit | b38554df9c68c30d5c41d7bfa6542b36df605e4d (patch) | |
tree | 523bd152ecc4fb6ef7b6c395a364aab064648b0b /desktop/dekorator | |
parent | 6d78ae2f0952985433cdd0f0a81ad73c51af4595 (diff) |
desktop/dekorator: Added (themable window decorator)
Diffstat (limited to 'desktop/dekorator')
-rw-r--r-- | desktop/dekorator/README | 8 | ||||
-rw-r--r-- | desktop/dekorator/dekorator.SlackBuild | 94 | ||||
-rw-r--r-- | desktop/dekorator/dekorator.info | 10 | ||||
-rw-r--r-- | desktop/dekorator/doinst.sh | 3 | ||||
-rw-r--r-- | desktop/dekorator/slack-desc | 19 |
5 files changed, 134 insertions, 0 deletions
diff --git a/desktop/dekorator/README b/desktop/dekorator/README new file mode 100644 index 000000000000..611ec6210bcd --- /dev/null +++ b/desktop/dekorator/README @@ -0,0 +1,8 @@ +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 new file mode 100644 index 000000000000..c2af3163dc6e --- /dev/null +++ b/desktop/dekorator/dekorator.SlackBuild @@ -0,0 +1,94 @@ +#!/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} +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" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +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 - + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "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 new file mode 100644 index 000000000000..eac96a5d95ff --- /dev/null +++ b/desktop/dekorator/dekorator.info @@ -0,0 +1,10 @@ +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 new file mode 100644 index 000000000000..5fb28930db0b --- /dev/null +++ b/desktop/dekorator/doinst.sh @@ -0,0 +1,3 @@ +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 new file mode 100644 index 000000000000..09641aba2c42 --- /dev/null +++ b/desktop/dekorator/slack-desc @@ -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 ':'. + + |-----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: |