summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:42 +0200
committer Heinz Wiesinger <pprkut@slackbuilds.org>2010-05-13 00:08:42 +0200
commit1c34a5edcafdd4a548c3a81f856ca5b538fbbb93 (patch)
treed13de341bb240b8eb95a8d32891587a345a56696 /network
parenteed609eec5e74859854bbb1734e02a20f0c187a9 (diff)
downloadslackbuilds-1c34a5edcafdd4a548c3a81f856ca5b538fbbb93.tar.gz
slackbuilds-1c34a5edcafdd4a548c3a81f856ca5b538fbbb93.tar.xz
network/kazehakase: Removed from 13.0 repository
Diffstat (limited to 'network')
-rw-r--r--network/kazehakase/README4
-rw-r--r--network/kazehakase/doinst.sh27
-rw-r--r--network/kazehakase/kazehakase.SlackBuild107
-rw-r--r--network/kazehakase/kazehakase.info8
-rw-r--r--network/kazehakase/slack-desc19
5 files changed, 0 insertions, 165 deletions
diff --git a/network/kazehakase/README b/network/kazehakase/README
deleted file mode 100644
index d4176b38dd..0000000000
--- a/network/kazehakase/README
+++ /dev/null
@@ -1,4 +0,0 @@
-Kazehakase is a GTK+2 web browser using Gecko as HTML rendering
-engine. It supports tabbed browsing, a "remote bookmark" feature
-through RSS in a menu or a sidebar, a variable UI, and customizable
-mouse gestures and key accelerators.
diff --git a/network/kazehakase/doinst.sh b/network/kazehakase/doinst.sh
deleted file mode 100644
index 33f1dcfea4..0000000000
--- a/network/kazehakase/doinst.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-config etc/kazehakase/bookmarkbar.xml.new
-config etc/kazehakase/bookmarks.xml.new
-config etc/kazehakase/kz-ui-beginner.xml.new
-config etc/kazehakase/kz-ui-medium.xml.new
-config etc/kazehakase/kz-ui-expert.xml.new
-config etc/kazehakase/kz-ui-bookmarks.xml.new
-config etc/kazehakase/kzrc.new
-config etc/kazehakase/proxyrc.new
-config etc/kazehakase/smartbookmarks.xml.new
-config etc/kazehakase/mozilla/encodings.xml.new
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications
-fi
diff --git a/network/kazehakase/kazehakase.SlackBuild b/network/kazehakase/kazehakase.SlackBuild
deleted file mode 100644
index c26474622c..0000000000
--- a/network/kazehakase/kazehakase.SlackBuild
+++ /dev/null
@@ -1,107 +0,0 @@
-#!/bin/sh
-#
-# Slackware build script for kazehakase
-# (C) 2007 Michael Wagner <lapinours@web.de>
-# 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.
-
-
-PRGNAM=kazehakase
-VERSION=0.5.4
-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"
-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 xvf $CWD/$PRGNAM-$VERSION.tar.gz
-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 {} \;
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/man \
- --with-gecko-engine=seamonkey \
- || exit 1
-
-make || exit 1
-make install DESTDIR=$PKG || exit 1
-
-( 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
-)
-
-
-( cd $PKG/usr/man
- find . -name "*.?" -type f 2> /dev/null | xargs gzip -9 2> /dev/null
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ABOUT-NLS AUTHORS COPYING* ChangeLog INSTALL NEWS README* TODO* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
-
-# Don't overwrite system-wide config files
-cd $PKG/etc/kazehakase
- mv kzrc kzrc.new
- mv proxyrc proxyrc.new
- mv smartbookmarks.xml smartbookmarks.xml.new
- mv bookmarks.xml bookmarks.xml.new
- mv bookmarkbar.xml bookmarkbar.xml.new
- mv kz-ui-bookmarks.xml kz-ui-bookmarks.xml.new
- mv kz-ui-expert.xml kz-ui-expert.xml.new
- mv kz-ui-medium.xml kz-ui-medium.xml.new
- mv kz-ui-beginner.xml kz-ui-beginner.xml.new
- mv mozilla/encodings.xml mozilla/encodings.xml.new
-cd -
-
-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/network/kazehakase/kazehakase.info b/network/kazehakase/kazehakase.info
deleted file mode 100644
index 569242d5c8..0000000000
--- a/network/kazehakase/kazehakase.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="kazehakase"
-VERSION="0.5.4"
-HOMEPAGE="http://kazehakase.sourceforge.jp"
-DOWNLOAD="http://downloads.sourceforge.jp/kazehakase/30219/kazehakase-0.5.4.tar.gz"
-MD5SUM="75f8afb9ddf4493c3a1fb4eb38a044df"
-MAINTAINER="Michael Wagner"
-EMAIL="lapinours@web.de"
-APPROVED="rworkman"
diff --git a/network/kazehakase/slack-desc b/network/kazehakase/slack-desc
deleted file mode 100644
index d480e32ea9..0000000000
--- a/network/kazehakase/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---------------------------------------------------|
-kazehakase: Kazehakase (GTK+2 web browser)
-kazehakase:
-kazehakase: Kazehakase is a GTK+2 web browser using Gecko as HTML rendering
-kazehakase: engine. It supports tabbed browsing, a "remote bookmark" feature
-kazehakase: through RSS in a menu or a sidebar, a variable UI and customizable
-kazehakase: mouse gestures and key accelerators.
-kazehakase:
-kazehakase: Homepage: http://kazehakase.sourceforge.jp
-kazehakase:
-kazehakase:
-kazehakase: