summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:31 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:31 +0200
commit54049361fe83c86f1e3e9ba927ff2632c80056ed (patch)
tree8aa0147eac8c3b6cc1a1b07c1aa86a5659457234 /desktop
parent18758fd3549a87a0886544a068119e60374f507a (diff)
downloadslackbuilds-54049361fe83c86f1e3e9ba927ff2632c80056ed.tar.gz
desktop/kbfx: Removed from 13.0 repository
Diffstat (limited to 'desktop')
-rw-r--r--desktop/kbfx/README6
-rw-r--r--desktop/kbfx/doinst.sh5
-rw-r--r--desktop/kbfx/kbfx.SlackBuild88
-rw-r--r--desktop/kbfx/kbfx.info8
-rw-r--r--desktop/kbfx/slack-desc19
5 files changed, 0 insertions, 126 deletions
diff --git a/desktop/kbfx/README b/desktop/kbfx/README
deleted file mode 100644
index 3d9d4ab700..0000000000
--- a/desktop/kbfx/README
+++ /dev/null
@@ -1,6 +0,0 @@
-KBFX - An alternative to the classical K-Menu button.
-
-KBFX is an alternative to the classical K-Menu button and its menu.
-It improves the user experience by enabling the user to set a
-bigger (and thus more visible) start button and by finally replacing
-the Win95-like K-Menu.
diff --git a/desktop/kbfx/doinst.sh b/desktop/kbfx/doinst.sh
deleted file mode 100644
index b310837870..0000000000
--- a/desktop/kbfx/doinst.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications
-fi
-
diff --git a/desktop/kbfx/kbfx.SlackBuild b/desktop/kbfx/kbfx.SlackBuild
deleted file mode 100644
index 3307783b8b..0000000000
--- a/desktop/kbfx/kbfx.SlackBuild
+++ /dev/null
@@ -1,88 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for kbfx
-
-# Copyright (c) 2008, Antonio Hernández Blas <hba.nihilismus@gmail.com>
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-# 1.- Redistributions of source code 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=kbfx
-VERSION=0.4.9.3.1
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-2}
-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"
-elif [ "$ARCH" = "x86_64" ]; then
- SLKCFLAGS="-O2 -fPIC"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar -jxvf $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 {} \;
-
-KDEPREF=$(kde-config --prefix) || true
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-cmake -DCMAKE_INSTALL_PREFIX="$KDEPREF"
-
-make
-make install DESTDIR=$PKG
-
-( 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
-)
-
-# Correct the permisions for the libs
-find $PKG/usr/lib/ -type f -exec chmod 755 {} \;
-
-# The documentation (HTML/ and kbfx-0.4.9.3.1/) is
-# under $PKG/usr/share/doc so just lets move them
-# to the right place.
-mkdir -p $PKG/usr/doc
-mv $PKG/usr/share/doc/$PRGNAM-$VERSION $PKG/usr/doc
-mv $PKG/usr/share/doc/HTML $PKG/usr/doc
-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.tgz
diff --git a/desktop/kbfx/kbfx.info b/desktop/kbfx/kbfx.info
deleted file mode 100644
index 2e55b56592..0000000000
--- a/desktop/kbfx/kbfx.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="kbfx"
-VERSION="0.4.9.3.1"
-HOMEPAGE="http://www.kbfx.org"
-DOWNLOAD="http://downloads.sourceforge.net/kbfx/kbfx-0.4.9.3.1.tar.bz2"
-MD5SUM="47bb5328a3f6dd2cc3f21279b9d0435c"
-MAINTAINER="Antonio Hernández Blas"
-EMAIL="hba.nihilismus@gmail.com"
-APPROVED="David Somero"
diff --git a/desktop/kbfx/slack-desc b/desktop/kbfx/slack-desc
deleted file mode 100644
index 524e7945c3..0000000000
--- a/desktop/kbfx/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------------------------------------------------------|
-kbfx: KBFX (An alternative to the classical K-Menu button)
-kbfx:
-kbfx: KBFX is an alternative to the classical K-Menu button and its menu.
-kbfx: It improves the user experience by enabling the user to set a
-kbfx: bigger (and thus more visible) start button and by finally replacing
-kbfx: the Win95-like K-Menu.
-kbfx:
-kbfx: Homepage: http://www.kbfx.org
-kbfx:
-kbfx:
-kbfx: