diff options
author | Michael Wagner <lapinours@web.de> | 2010-05-11 15:01:29 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 15:01:29 +0200 |
commit | bcee618ad63ed2a4a212fb8dfa9030d4b8a3c0cd (patch) | |
tree | 64f3d50a6d4e8e5dc968c1d98169eae357557e7c | |
parent | 18025e4903d384578f2272e5dab27963228d25da (diff) | |
download | slackbuilds-bcee618ad63ed2a4a212fb8dfa9030d4b8a3c0cd.tar.gz |
network/kazehakase: Initial import
-rw-r--r-- | network/kazehakase/README | 4 | ||||
-rw-r--r-- | network/kazehakase/doinst.sh | 18 | ||||
-rw-r--r-- | network/kazehakase/kazehakase.SlackBuild | 90 | ||||
-rw-r--r-- | network/kazehakase/kazehakase.info | 8 | ||||
-rw-r--r-- | network/kazehakase/slack-desc | 19 |
5 files changed, 139 insertions, 0 deletions
diff --git a/network/kazehakase/README b/network/kazehakase/README new file mode 100644 index 0000000000..31dcc5742d --- /dev/null +++ b/network/kazehakase/README @@ -0,0 +1,4 @@ +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 new file mode 100644 index 0000000000..3f17567532 --- /dev/null +++ b/network/kazehakase/doinst.sh @@ -0,0 +1,18 @@ +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/kzrc.new +config etc/kazehakase/proxyrc.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 new file mode 100644 index 0000000000..d930b7430e --- /dev/null +++ b/network/kazehakase/kazehakase.SlackBuild @@ -0,0 +1,90 @@ +#!/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.4.7 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +DOCS="ABOUT-NLS AUTHORS COPYING* ChangeLog INSTALL NEWS README* TODO*" + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +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 + 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 $DOCS $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 +for i in kzrc proxyrc; do + mv $PKG/etc/$PRGNAM/$i $PKG/etc/$PRGNAM/$i.new +done + +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 new file mode 100644 index 0000000000..e8dec2ddbe --- /dev/null +++ b/network/kazehakase/kazehakase.info @@ -0,0 +1,8 @@ +PRGNAM="kazehakase" +VERSION="0.4.7" +HOMEPAGE="http://kazehakase.sourceforge.jp" +DOWNLOAD="http://osdn.dl.sourceforge.jp/kazehakase/25610/kazehakase-0.4.7.tar.gz" +MD5SUM="44d7105f394b982661ba0567a0d23b90" +MAINTAINER="Michael Wagner" +EMAIL="lapinours@web.de" +APPROVED="rworkman" diff --git a/network/kazehakase/slack-desc b/network/kazehakase/slack-desc new file mode 100644 index 0000000000..82948022d6 --- /dev/null +++ b/network/kazehakase/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------------------------------------------------------| +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: |