summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Grigorios Bouzakis <grbzks@xsmail.com>2011-05-18 23:15:09 -0500
committer Robby Workman <rworkman@slackbuilds.org>2011-06-05 23:12:08 -0500
commitcb373c32c4049f8c82ea418ba6e39a96d02f4c40 (patch)
tree78e09a51e43d7246b24cbc774faa787d4906262a /network
parent0faafa6a00ec8aca90dd68bdc5ef30d2daf1e874 (diff)
downloadslackbuilds-cb373c32c4049f8c82ea418ba6e39a96d02f4c40.tar.gz
slackbuilds-cb373c32c4049f8c82ea418ba6e39a96d02f4c40.tar.xz
network/kbluetooth: Removed (abandoned by maintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/kbluetooth/README2
-rw-r--r--network/kbluetooth/doinst.sh10
-rw-r--r--network/kbluetooth/kbluetooth.SlackBuild95
-rw-r--r--network/kbluetooth/kbluetooth.info10
-rw-r--r--network/kbluetooth/slack-desc19
5 files changed, 0 insertions, 136 deletions
diff --git a/network/kbluetooth/README b/network/kbluetooth/README
deleted file mode 100644
index 76be6f5f2c..0000000000
--- a/network/kbluetooth/README
+++ /dev/null
@@ -1,2 +0,0 @@
-KBluetooth is a program which aims to provide a complete application
-for the usage of bluetooth within KDE.
diff --git a/network/kbluetooth/doinst.sh b/network/kbluetooth/doinst.sh
deleted file mode 100644
index 1f8ff67ded..0000000000
--- a/network/kbluetooth/doinst.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
-
diff --git a/network/kbluetooth/kbluetooth.SlackBuild b/network/kbluetooth/kbluetooth.SlackBuild
deleted file mode 100644
index 8a8f6a6347..0000000000
--- a/network/kbluetooth/kbluetooth.SlackBuild
+++ /dev/null
@@ -1,95 +0,0 @@
-#!/bin/sh
-# Slackware build script for kbluetooth
-
-# Copyright 2010 Grigorios Bouzakis <grbzks@xsmail.com>
-# All rights reserved.
-#
-# Permission to use, copy, modify, and distribute this software for any purpose
-# with or without fee is hereby granted, provided that the above copyright
-# notice and this permission notice appear in all copies.
-#
-# THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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
-# AUTHORS AND COPYRIGHT HOLDERS AND THEIR CONTRIBUTORS 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=kbluetooth
-VERSION=${VERSION:-0.4.2}
-BUILD=${BUILD:-1}
-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
-
-DOCS="AUTHORS COPYING ChangeLog TODO"
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/112110-$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_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- ..
- make
- make install 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 $DOCS $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/network/kbluetooth/kbluetooth.info b/network/kbluetooth/kbluetooth.info
deleted file mode 100644
index ed857ef22c..0000000000
--- a/network/kbluetooth/kbluetooth.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="kbluetooth"
-VERSION="0.4.2"
-HOMEPAGE="http://kde-apps.org/content/show.php/kbluetooth?content=112110"
-DOWNLOAD="http://kde-apps.org/CONTENT/content-files/112110-kbluetooth-0.4.2.tar.bz2"
-MD5SUM="f64e2c0133bc76aa119a5d453d760851"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Grigorios Bouzakis"
-EMAIL="grbzks@xsmail.com"
-APPROVED="dsomero"
diff --git a/network/kbluetooth/slack-desc b/network/kbluetooth/slack-desc
deleted file mode 100644
index 510d32cb10..0000000000
--- a/network/kbluetooth/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---------------------------------------------------|
-kbluetooth: kbluetooth (bluetooth application for KDE)
-kbluetooth:
-kbluetooth: KBluetooth is a program which aims to provide a complete application
-kbluetooth: for the usage of bluetooth within KDE.
-kbluetooth:
-kbluetooth: Homepage: http://kde-apps.org/content/show.php/kbluetooth?content=112110
-kbluetooth:
-kbluetooth:
-kbluetooth:
-kbluetooth:
-kbluetooth: