network/kazehakase: Updated for version 0.5.4

This commit is contained in:
Michael Wagner 2010-05-11 22:25:27 +02:00 committed by Robby Workman
parent e1791018f2
commit 23f30af033
5 changed files with 47 additions and 21 deletions

View file

@ -1,4 +1,4 @@
Kazehakase is a GTK+2 web browser using Gecko as HTML rendering Kazehakase is a GTK+2 web browser using Gecko as HTML rendering
engine. It supports tabbed browsing, a "remote bookmark" feature engine. It supports tabbed browsing, a "remote bookmark" feature
through RSS in a menu or a sidebar, a variable UI and customizable through RSS in a menu or a sidebar, a variable UI, and customizable
mouse gestures and key accelerators. mouse gestures and key accelerators.

View file

@ -1,18 +1,27 @@
config() { config() {
NEW="$1" NEW="$1"
OLD="`dirname $NEW`/`basename $NEW .new`" OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over: # If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then if [ ! -r $OLD ]; then
mv $NEW $OLD mv $NEW $OLD
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy # toss the redundant copy
rm $NEW rm $NEW
fi fi
# Otherwise, we leave the .new copy for the admin to consider... # 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/kzrc.new
config etc/kazehakase/proxyrc.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 if [ -x /usr/bin/update-desktop-database ]; then
usr/bin/update-desktop-database -q usr/share/applications /usr/bin/update-desktop-database -q usr/share/applications
fi fi

View file

@ -23,31 +23,38 @@
PRGNAM=kazehakase PRGNAM=kazehakase
VERSION=0.4.7 VERSION=0.5.4
ARCH=${ARCH:-i486} ARCH=${ARCH:-i486}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
CWD=$(pwd) CWD=$(pwd)
TMP=${TMP:-/tmp/SBo} TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
DOCS="ABOUT-NLS AUTHORS COPYING* ChangeLog INSTALL NEWS README* TODO*"
if [ "$ARCH" = "i486" ]; then if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686" SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686" SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
fi fi
set -e
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1 cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $PRGNAM-$VERSION
tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION || exit 1 cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
chmod -R u+w,go+r-w,a-s . 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" \ CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \
@ -62,7 +69,7 @@ make || exit 1
make install DESTDIR=$PKG || exit 1 make install DESTDIR=$PKG || exit 1
( cd $PKG ( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null 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 find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
) )
@ -73,14 +80,24 @@ make install DESTDIR=$PKG || exit 1
) )
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $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 cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/* chmod 644 $PKG/usr/doc/$PRGNAM-$VERSION/*
# Don't overwrite system-wide config files # Don't overwrite system-wide config files
for i in kzrc proxyrc; do cd $PKG/etc/kazehakase
mv $PKG/etc/$PRGNAM/$i $PKG/etc/$PRGNAM/$i.new mv kzrc kzrc.new
done 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 mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc

View file

@ -1,8 +1,8 @@
PRGNAM="kazehakase" PRGNAM="kazehakase"
VERSION="0.4.7" VERSION="0.5.4"
HOMEPAGE="http://kazehakase.sourceforge.jp" HOMEPAGE="http://kazehakase.sourceforge.jp"
DOWNLOAD="http://osdn.dl.sourceforge.jp/kazehakase/25610/kazehakase-0.4.7.tar.gz" DOWNLOAD="http://osdn.dl.sourceforge.jp/kazehakase/30219/kazehakase-0.5.4.tar.gz"
MD5SUM="44d7105f394b982661ba0567a0d23b90" MD5SUM="75f8afb9ddf4493c3a1fb4eb38a044df"
MAINTAINER="Michael Wagner" MAINTAINER="Michael Wagner"
EMAIL="lapinours@web.de" EMAIL="lapinours@web.de"
APPROVED="rworkman" APPROVED="rworkman"

View file

@ -5,7 +5,7 @@
# make exactly 11 lines for the formatting to be correct. It's also # make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'. # customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------| |-----handy-ruler---------------------------------------------------|
kazehakase: Kazehakase (GTK+2 web browser) kazehakase: Kazehakase (GTK+2 web browser)
kazehakase: kazehakase:
kazehakase: Kazehakase is a GTK+2 web browser using Gecko as HTML rendering kazehakase: Kazehakase is a GTK+2 web browser using Gecko as HTML rendering