desktop/xfce4-notes-plugin: Updated for version 1.7.1

This commit is contained in:
Robby Workman 2010-05-13 00:23:46 +02:00 committed by Michiel van Wessem
parent 2a8907fb34
commit 2be4ab61b1
4 changed files with 38 additions and 21 deletions

View file

@ -0,0 +1,6 @@
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
fi
fi

View file

@ -7,13 +7,13 @@
|-----handy-ruler------------------------------------------------------|
xfce4-notes-plugin: xfce4-notes-plugin (notes plugin for the Xfce panel)
xfce4-notes-plugin:
xfce4-notes-plugin: The notes plugin provides 'sticky notes' for
xfce4-notes-plugin: your desktop.
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin: The notes plugin provides 'sticky notes' for your desktop.
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:
xfce4-notes-plugin:

View file

@ -2,7 +2,7 @@
# Slackware build script for xfce4-notes-plugin
# Copyright 2006-2008 Robby Workman, Northport, Alabama, USA
# Copyright 2006-2009 Robby Workman, Northport, Alabama, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=xfce4-notes-plugin
VERSION=1.6.3
VERSION=1.7.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -35,10 +35,13 @@ OUTPUT=${OUTPUT:-/tmp}
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
@ -60,6 +63,8 @@ CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc/xfce \
--enable-shared=yes \
--enable-static=no \
--enable-debug=no \
@ -69,17 +74,21 @@ make
make install DESTDIR=$PKG
( 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
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 ChangeLog INSTALL NEWS README TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
$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
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -1,8 +1,10 @@
PRGNAM="xfce4-notes-plugin"
VERSION="1.6.3"
VERSION="1.7.1"
HOMEPAGE="http://goodies.xfce.org/"
DOWNLOAD="http://goodies.xfce.org/releases/xfce4-notes-plugin/xfce4-notes-plugin-1.6.3.tar.bz2"
MD5SUM="8a54229eca70f2e2b349401284f920ca"
DOWNLOAD="http://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.7/xfce4-notes-plugin-1.7.1.tar.bz2"
MD5SUM="c6d27d8c566fbd98a14bd59273da0adf"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Robby Workman"
EMAIL="rw@rlworkman.net"
APPROVED="dsomero"
APPROVED="michiel"