summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2010-05-18 01:10:31 -0500
committer Robby Workman <rworkman@slackbuilds.org>2010-05-19 09:07:00 -0500
commit8355e4dbffbfcb058d665da2f399b01e98e5a5e5 (patch)
tree946a5f86560420908b94f2001bd4730baf72faf0 /desktop
parentf29bdc3213474f42b21bbebc525506aa565b6379 (diff)
downloadslackbuilds-8355e4dbffbfcb058d665da2f399b01e98e5a5e5.tar.gz
slackbuilds-8355e4dbffbfcb058d665da2f399b01e98e5a5e5.tar.xz
desktop/bilbo: Removed (part of Slackware 13.1 kde packages)
Diffstat (limited to 'desktop')
-rw-r--r--desktop/bilbo/README11
-rw-r--r--desktop/bilbo/bilbo.SlackBuild77
-rw-r--r--desktop/bilbo/bilbo.info10
-rw-r--r--desktop/bilbo/doinst.sh8
-rw-r--r--desktop/bilbo/slack-desc19
5 files changed, 0 insertions, 125 deletions
diff --git a/desktop/bilbo/README b/desktop/bilbo/README
deleted file mode 100644
index 5de7c5c7d4..0000000000
--- a/desktop/bilbo/README
+++ /dev/null
@@ -1,11 +0,0 @@
-Bilbo Blogger v1.0 (KDE4 blogging client) Bilbo is a Free/Open Source
-Blogging client, focused on simplicity and usability.
-
-Currently there is no support for adding categories from the Bilbo client.
-
-Due to trademark issues Bilbo v1.0 is the last release by this name,
-Blogilo is the new project name. You can visit the project's homepage
-for more information at http://blogilo.gnufolks.org/
-
-Blogilo is also now part of the official KDE PIM
-project, replacing KBlogger. \ No newline at end of file
diff --git a/desktop/bilbo/bilbo.SlackBuild b/desktop/bilbo/bilbo.SlackBuild
deleted file mode 100644
index a13440a00b..0000000000
--- a/desktop/bilbo/bilbo.SlackBuild
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/bin/sh
-# Slackware build script for bilbo
-# Written by Frank Perez <fperez.it@gmail.com>
-
-PRGNAM=bilbo
-VERSION=${VERSION:-1.0}
-ARCH=${ARCH:-i486}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-INSTDIR=${INSTDIR:-/usr}
-MANDIR=${MANDIR:-$INSTDIR}
-
-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 # Exit on most errors
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM
-tar xvf $CWD/$PRGNAM-$VERSION-src.tar.gz
-cd $PRGNAM
-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 build
-cd build
- cmake \
- -DCMAKE_C_FLAGS="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=$INSTDIR \
- -DLIB_SUFFIX=${LIBDIRSUFFIX} \
- -DMAN_INSTALL_DIR=$MANDIR/man \
- -DCMAKE_BUILD_TYPE=$ARCH-slackware-linux ..
-
- make
- make install 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/$MANDIR/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS CHANGELOG COPYING README TODO \
- $PKG/$MANDIR/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/$MANDIR/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/bilbo/bilbo.info b/desktop/bilbo/bilbo.info
deleted file mode 100644
index ff810acf20..0000000000
--- a/desktop/bilbo/bilbo.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="bilbo"
-VERSION="1.0"
-HOMEPAGE="http://blogilo.gnufolks.org/"
-DOWNLOAD="http://bilbo.gnufolks.org/packages/bilbo-1.0-src.tar.gz"
-MD5SUM="dcbb7e8392d13bebe94cd6405b2c86a9"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-MAINTAINER="Frank Perez"
-EMAIL="fperez.it@gmail.com"
-APPROVED="dsomero"
diff --git a/desktop/bilbo/doinst.sh b/desktop/bilbo/doinst.sh
deleted file mode 100644
index e4e6459838..0000000000
--- a/desktop/bilbo/doinst.sh
+++ /dev/null
@@ -1,8 +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 [ -x /usr/bin/update-mime-database ]; then
- /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
-fi
-
diff --git a/desktop/bilbo/slack-desc b/desktop/bilbo/slack-desc
deleted file mode 100644
index 5a383b25c5..0000000000
--- a/desktop/bilbo/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------------------------------------------------------|
-bilbo: Bilbo (KDE4 blogging client)
-bilbo:
-bilbo: Bilbo is a Free/Open Source Blogging client, focused on simplicity
-bilbo: and usability.
-bilbo:
-bilbo:
-bilbo:
-bilbo:
-bilbo:
-bilbo:
-bilbo: