office/xpad: Initial import

This commit is contained in:
MagicMan 2010-05-11 15:03:05 +02:00 committed by Robby Workman
parent d9d0fb2ff7
commit fc4a5b94c0
5 changed files with 90 additions and 0 deletions

4
office/xpad/README Normal file
View File

@ -0,0 +1,4 @@
Xpad is a sticky note application written using GTK+ 2.0 that strives to be
simple, fault-tolerant, and customizable. Xpad consists of independent pad
windows; each is basically a text box in which notes can be written.

3
office/xpad/doinst.sh Normal file
View File

@ -0,0 +1,3 @@
if [ -x usr/bin/update-desktop-database ]; then
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
fi

11
office/xpad/slack-desc Normal file
View File

@ -0,0 +1,11 @@
xpad: Xpad (sticky notes)
xpad:
xpad: Xpad is a sticky note application written using GTK+ 2.0 that
xpad: strives to be simple, fault-tolerant, and customizable. Xpad
xpad: consists of independent pad windows; each is basically a text
xpad: box in which notes can be written.
xpad:
xpad: Homepage: http://xpad.sourceforge.net/
xpad:
xpad:
xpad:

View File

@ -0,0 +1,64 @@
#!/bin/sh
# Slackware build script for xpad
# Written by MagicMan <MagicMan07@bluebottle.com>
# No Guarantees. Use this SlackBuild at your own risk.
# Modified by the SlackBuilds.org project
PRGNAM=xpad
VERSION=2.12
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
PDOCS=${PDOCS:-AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS 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 -xvjf $CWD/$PRGNAM-$VERSION.tar.bz2 || 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 \
--localstatedir=/var/lib \
|| exit 1
make || exit 1
make install-strip DESTDIR=$PKG || exit 1
# Fix path to icon in desktop file
( cd $PKG/usr/share/applications
sed -i 's#^Icon=\(.\+\)$#Icon=/usr/share/pixmaps/\1.png#' $PRGNAM.desktop
)
find $PKG/usr/man -type f -exec gzip -9 {} \;
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $PDOCS $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 -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

8
office/xpad/xpad.info Normal file
View File

@ -0,0 +1,8 @@
PRGNAM="xpad"
VERSION="2.12"
HOMEPAGE="http://xpad.sourceforge.net/"
DOWNLOAD="http://dl.sourceforge.net/xpad/xpad-2.12.tar.bz2"
MD5SUM="2d469030c818ca03811ae0827073b59e"
MAINTAINER="MagicMan"
EMAIL="MagicMan07@bluebottle.com"
APPROVED="robw810"