diff options
author | K.D.Hedger <kdhedger@yahoo.co.uk> | 2010-07-21 01:42:08 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-07-21 02:11:54 -0500 |
commit | 7372dafdf5b87f1049da6fc20d2e94a0fbbfac05 (patch) | |
tree | 77c3e62a4af33e301de3869e8b21ee38d3fdb792 /desktop/ClipboardViewer | |
parent | 0da945264588a8d82d1e38438edbb87b7c5fca13 (diff) | |
download | slackbuilds-7372dafdf5b87f1049da6fc20d2e94a0fbbfac05.tar.gz |
desktop/ClipboardViewer: Added (GUI to view the clipboard)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'desktop/ClipboardViewer')
-rw-r--r-- | desktop/ClipboardViewer/ClipboardViewer.SlackBuild | 86 | ||||
-rw-r--r-- | desktop/ClipboardViewer/ClipboardViewer.info | 10 | ||||
-rw-r--r-- | desktop/ClipboardViewer/README | 11 | ||||
-rw-r--r-- | desktop/ClipboardViewer/doinst.sh | 10 | ||||
-rw-r--r-- | desktop/ClipboardViewer/slack-desc | 19 |
5 files changed, 136 insertions, 0 deletions
diff --git a/desktop/ClipboardViewer/ClipboardViewer.SlackBuild b/desktop/ClipboardViewer/ClipboardViewer.SlackBuild new file mode 100644 index 0000000000..897b387fb7 --- /dev/null +++ b/desktop/ClipboardViewer/ClipboardViewer.SlackBuild @@ -0,0 +1,86 @@ +#!/bin/sh + +# Slackware build script for ClipboardViewer + +# Written by K.D.Hedger kdhedger@yahoo.co.uk + +PRGNAM=ClipboardViewer +VERSION=0.1 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +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" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/121667-$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 \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +# NEWS AUTHORS ChangeLog are empty +cp -a \ + COPYING INSTALL README \ + $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.${PKGTYPE:-tgz} diff --git a/desktop/ClipboardViewer/ClipboardViewer.info b/desktop/ClipboardViewer/ClipboardViewer.info new file mode 100644 index 0000000000..3377d31076 --- /dev/null +++ b/desktop/ClipboardViewer/ClipboardViewer.info @@ -0,0 +1,10 @@ +PRGNAM="ClipboardViewer" +VERSION="0.1" +HOMEPAGE="http://keithhedger.freetzi.com/index.html" +DOWNLOAD="http://gtk-apps.org/CONTENT/content-files/121667-ClipboardViewer-0.1.tar.gz" +MD5SUM="52b6492adc517da2138fb3f1c90b1f43" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="K.D.Hedger" +EMAIL="kdhedger@yahoo.co.uk" +APPROVED="rworkman" diff --git a/desktop/ClipboardViewer/README b/desktop/ClipboardViewer/README new file mode 100644 index 0000000000..935aa04c8e --- /dev/null +++ b/desktop/ClipboardViewer/README @@ -0,0 +1,11 @@ +ClipboardViewer is a qui app to display the current gnome clipboard either +as text or a picture ( a la OSX ) in a small window. You can also use it +from the command line ( or script ) to print the text on the clipboard to +stdout or create a png image file in the current directory. + +A nautilus script to convert the clipboard contents into either a text or a +picture clipping is installed in /usr/share/ClipboardViewer/scripts/ - you +may want to create a symlink from this script to your own nautilus scripts +directory (usually ~/.gnome2/nautilus-scripts/) + +This requires libgnomeui. diff --git a/desktop/ClipboardViewer/doinst.sh b/desktop/ClipboardViewer/doinst.sh new file mode 100644 index 0000000000..1f8ff67ded --- /dev/null +++ b/desktop/ClipboardViewer/doinst.sh @@ -0,0 +1,10 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +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 + diff --git a/desktop/ClipboardViewer/slack-desc b/desktop/ClipboardViewer/slack-desc new file mode 100644 index 0000000000..b3650e4377 --- /dev/null +++ b/desktop/ClipboardViewer/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------------------------------------------------------| +ClipboardViewer: ClipboardViewer (GUI to view the clipboard) +ClipboardViewer: +ClipboardViewer: ClipboardViewer is a qui app to display the current gnome clipboard +ClipboardViewer: either as text or a picture ( a la OSX ) in a small window. +ClipboardViewer: You can also use it from the command line ( or script ) to print +ClipboardViewer: the text on the clipboard to stdout or create a png image file in +ClipboardViewer: the current directory. +ClipboardViewer: +ClipboardViewer: Homepage: http://keithhedger.freetzi.com/index.html +ClipboardViewer: +ClipboardViewer: |