diff options
author | Andrey Maraev <andrew.maraev60@yandex.ru> | 2012-06-25 22:15:22 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2012-06-25 22:15:22 -0400 |
commit | 12831d410020c834de44cf46db61e7ae3a6f0193 (patch) | |
tree | 3cff6c8581ccab7e9e7e77d1404c04d809e33481 /desktop | |
parent | 20ef829ee08325155f1d8a92a57569a01ba1d2d0 (diff) | |
download | slackbuilds-12831d410020c834de44cf46db61e7ae3a6f0193.tar.gz |
desktop/clipit: Added (lightweight fully featured clipboard manager)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/clipit/README | 5 | ||||
-rw-r--r-- | desktop/clipit/clipit.SlackBuild | 85 | ||||
-rw-r--r-- | desktop/clipit/clipit.info | 10 | ||||
-rw-r--r-- | desktop/clipit/doinst.sh | 11 | ||||
-rw-r--r-- | desktop/clipit/slack-desc | 19 |
5 files changed, 130 insertions, 0 deletions
diff --git a/desktop/clipit/README b/desktop/clipit/README new file mode 100644 index 0000000000..62500a38d2 --- /dev/null +++ b/desktop/clipit/README @@ -0,0 +1,5 @@ +Clipit is lightweight, fully featured GTK+ clipboard manager +It was forked from Parcellite, adding additional features +(automatic paste functionality and other) and bugfixes to the project + +This requires: xdotool
\ No newline at end of file diff --git a/desktop/clipit/clipit.SlackBuild b/desktop/clipit/clipit.SlackBuild new file mode 100644 index 0000000000..df3978873c --- /dev/null +++ b/desktop/clipit/clipit.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh + +# Slackware build script for clipit + +# Written by Andrey Maraev <andrew.maraev60@yandex.ru> + +PRGNAM=clipit +VERSION=${VERSION:-1.4.2} +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/$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 -print0 | xargs -0 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 +cp -a \ + ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS 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/clipit/clipit.info b/desktop/clipit/clipit.info new file mode 100644 index 0000000000..1d6b2c9f51 --- /dev/null +++ b/desktop/clipit/clipit.info @@ -0,0 +1,10 @@ +PRGNAM="clipit" +VERSION="1.4.2" +HOMEPAGE="http://clipit.rspwn.com" +DOWNLOAD="http://sourceforge.net/projects/gtkclipit/files/Version%201/clipit-1.4.2.tar.gz" +MD5SUM="118175f26869adcf04909fdbb5021eff" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Andrey Maraev" +EMAIL="andrew.maraev60@yandex.ru" +APPROVED="dsomero" diff --git a/desktop/clipit/doinst.sh b/desktop/clipit/doinst.sh new file mode 100644 index 0000000000..922f8a99be --- /dev/null +++ b/desktop/clipit/doinst.sh @@ -0,0 +1,11 @@ +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/clipit/slack-desc b/desktop/clipit/slack-desc new file mode 100644 index 0000000000..ee3f53ceae --- /dev/null +++ b/desktop/clipit/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +clipit: Clipit (lightweight, fully featured GTK+ clipboard manager) +clipit: +clipit: It was forked from Parcellite, adding additional features +clipit: (automatic paste functionality and other) +clipit: and bugfixes to the project +clipit: +clipit: HomePage: http://clipit.rspwn.com +clipit: +clipit: +clipit: +clipit: |