summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:07 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:06:07 +0200
commit5d0423bc0345ae7366a16f0d6eeea02e834e15b3 (patch)
tree68c29acb1c4ba1f428f4b20587555b77bfb9557c /desktop
parent9e8494655054554160feae42796aaf46f9503a87 (diff)
downloadslackbuilds-5d0423bc0345ae7366a16f0d6eeea02e834e15b3.tar.gz
desktop/Blokkal: Removed from 13.0 repository
Diffstat (limited to 'desktop')
-rw-r--r--desktop/Blokkal/Blokkal.SlackBuild93
-rw-r--r--desktop/Blokkal/Blokkal.info8
-rw-r--r--desktop/Blokkal/README23
-rw-r--r--desktop/Blokkal/doinst.sh4
-rw-r--r--desktop/Blokkal/slack-desc19
5 files changed, 0 insertions, 147 deletions
diff --git a/desktop/Blokkal/Blokkal.SlackBuild b/desktop/Blokkal/Blokkal.SlackBuild
deleted file mode 100644
index 65c91739ec..0000000000
--- a/desktop/Blokkal/Blokkal.SlackBuild
+++ /dev/null
@@ -1,93 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for Blokkal
-# Copyright 2008-2009 Vincent Batts, vbatts@hashbangbash.com, http://hashbangbash.com/
-# 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.
-
-## update provided by Michiel van Wessem, 2009
-
-
-PRGNAM=Blokkal
-VERSION=0.0.3
-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"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-fi
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/Blokkal-$VERSION.tar.bz2
-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 {} \;
-
-# Fix configure so it actually looks for aclocal/automake that comes with
-# Slackware and not for an old 1.9.
-sed -i 's#am__api_version="1.9"#am__api_version="1.10"#g' configure
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man
-
-make
-make install DESTDIR=$PKG
-
-# The Makefile is broken, and I don't have the patience to
-# unravel it right now, so...
-rm -rf $PKG/hicolor
-
-( 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
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a AUTHORS COPYING INSTALL README TODO doc/en/index.docbook \
- $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.tgz
diff --git a/desktop/Blokkal/Blokkal.info b/desktop/Blokkal/Blokkal.info
deleted file mode 100644
index 8ab32db9b5..0000000000
--- a/desktop/Blokkal/Blokkal.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="Blokkal"
-VERSION="0.0.3"
-HOMEPAGE="http://blokkal.sourceforge.net/"
-DOWNLOAD="http://downloads.sourceforge.net/blokkal/Blokkal-0.0.3.tar.bz2"
-MD5SUM="9b317d99fd3505d20bcee884913e68e7"
-MAINTAINER="Vincent Batts"
-EMAIL="vbatts@batts.mine.nu"
-APPROVED="dsomero"
diff --git a/desktop/Blokkal/README b/desktop/Blokkal/README
deleted file mode 100644
index 6286abfd8f..0000000000
--- a/desktop/Blokkal/README
+++ /dev/null
@@ -1,23 +0,0 @@
-Blokkal is an extendable KDE Blogging Client that supports multiple protocols
-and blogging sites. The goal is to provide a uniform way to access the
-most-commonly-used blogging systems. It has been designed for a maximum of
-modularity allowing for easy extension.
-
-Features
-
-Blokkal is capable of creating new entries as well as loading and editing
-entries that have already been posted into a blog. Additionally, new
-entries can be posted into multiple blogs at the same time and entries can
-be previewed before being posted. A couple of formatting options help to
-apply some common text formattings while editing the HTML-code of an entry,
-while syntax-highlighting aids in ensuring correct code. There exist
-dialogs that help inserting links and images, which can be dragged and
-dropped into the editor from other applications such as webbrowsers.
-
-Currently the following protocols are supported:
-
- * LiveJournal
- * Blogger 1.0
- * Blogger/GData
- * MetaWeblog API
- * MovableType
diff --git a/desktop/Blokkal/doinst.sh b/desktop/Blokkal/doinst.sh
deleted file mode 100644
index 2253dc6a02..0000000000
--- a/desktop/Blokkal/doinst.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-if [ -x /usr/bin/gtk-update-icon-cache ] \
- && [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
-fi
diff --git a/desktop/Blokkal/slack-desc b/desktop/Blokkal/slack-desc
deleted file mode 100644
index d2d6b291cd..0000000000
--- a/desktop/Blokkal/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-----------------------------------------------------|
-Blokkal: Blokkal (a KDE blogging client)
-Blokkal:
-Blokkal: Blokkal is a KDE blogging client designed to support
-Blokkal: multiple protocols and blogging sites. The goal is to
-Blokkal: provide a uniform way to access the most commonly
-Blokkal: used blogging systems.
-Blokkal:
-Blokkal: Homepage: http://blokkal.sourceforge.net/
-Blokkal:
-Blokkal:
-Blokkal: