diff options
author | Grigorios Bouzakis <grbzks@xsmail.com> | 2010-06-20 18:45:58 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-22 06:01:24 -0500 |
commit | 7ae6262601882361a68c50d7645cc681e12d6626 (patch) | |
tree | 4cb6ea69bbf9e3fed018012eb9d4ae1a34f40c7f /network | |
parent | 9bf8a3f0116343b61918a7abcebdfc9907c06997 (diff) | |
download | slackbuilds-7ae6262601882361a68c50d7645cc681e12d6626.tar.gz |
network/kbluetooth: Added (bluetooth application for KDE)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/kbluetooth/README | 2 | ||||
-rw-r--r-- | network/kbluetooth/doinst.sh | 10 | ||||
-rw-r--r-- | network/kbluetooth/kbluetooth.SlackBuild | 95 | ||||
-rw-r--r-- | network/kbluetooth/kbluetooth.info | 10 | ||||
-rw-r--r-- | network/kbluetooth/slack-desc | 19 |
5 files changed, 136 insertions, 0 deletions
diff --git a/network/kbluetooth/README b/network/kbluetooth/README new file mode 100644 index 0000000000..76be6f5f2c --- /dev/null +++ b/network/kbluetooth/README @@ -0,0 +1,2 @@ +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 new file mode 100644 index 0000000000..1f8ff67ded --- /dev/null +++ b/network/kbluetooth/doinst.sh @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000000..8a8f6a6347 --- /dev/null +++ b/network/kbluetooth/kbluetooth.SlackBuild @@ -0,0 +1,95 @@ +#!/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 new file mode 100644 index 0000000000..ed857ef22c --- /dev/null +++ b/network/kbluetooth/kbluetooth.info @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000000..510d32cb10 --- /dev/null +++ b/network/kbluetooth/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---------------------------------------------------| +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: |