diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/synergy-plus/README | 16 | ||||
-rw-r--r-- | desktop/synergy-plus/slack-desc | 19 | ||||
-rw-r--r-- | desktop/synergy-plus/synergy-plus.SlackBuild | 96 | ||||
-rw-r--r-- | desktop/synergy-plus/synergy-plus.info | 10 |
4 files changed, 141 insertions, 0 deletions
diff --git a/desktop/synergy-plus/README b/desktop/synergy-plus/README new file mode 100644 index 0000000000..29e21bca7c --- /dev/null +++ b/desktop/synergy-plus/README @@ -0,0 +1,16 @@ +Synergy+ (synergy-plus) lets you easily share a single mouse and keyboard +between multiple computers with different operating systems, without +special hardware. All you need is a LAN connection. It's intended +for users with multiple computers, where each system uses its own +display. It's a little like having a 2nd or a 3rd desktop. + +This build can co-exist with an existing synergy installation if +SYNERGYOLD is set to yes. This is set to no by default as synergy has +not been updated in some two and a half years. + +If SYNERGYOLD is set to yes, the two binaries synergyc (client) +and synergys (server) are suffixed with -plus to synergyc-plus and +synergys-plus. + +An example configuration file (synergy.conf) can be found in +/usr/doc/synergy-plus-1.3.4/. diff --git a/desktop/synergy-plus/slack-desc b/desktop/synergy-plus/slack-desc new file mode 100644 index 0000000000..1697f02ebe --- /dev/null +++ b/desktop/synergy-plus/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--------------------------------------------------| +synergy-plus: synergy-plus (share mouse/keyboard between multiple computers) +synergy-plus: +synergy-plus: Synergy+ (synergy-plus) lets you easily share a single mouse and +synergy-plus: keyboard between multiple computers with different operating +synergy-plus: systems, without special hardware. All you need is a LAN +synergy-plus: connection. It's intended for users with multiple computers, where +synergy-plus: each system uses its own display. It's a little like having a 2nd +synergy-plus: or a 3rd desktop... +synergy-plus: +synergy-plus: Homepage: http://code.google.com/p/synergy-plus/ +synergy-plus: diff --git a/desktop/synergy-plus/synergy-plus.SlackBuild b/desktop/synergy-plus/synergy-plus.SlackBuild new file mode 100644 index 0000000000..c5a18e89c8 --- /dev/null +++ b/desktop/synergy-plus/synergy-plus.SlackBuild @@ -0,0 +1,96 @@ +#!/bin/sh + +# Slackware build script for synergy-plus. +# +# Copyright 2009 Pierre Cazenave <pwcazenave {at} gmail [dot] com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=synergy-plus +VERSION=${VERSION:-1.3.4} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +# This program will conflict with an existing installation of +# synergy. Therefore, if SYNERGYOLD is set to yes, -plus will be +# appended to the two binaries synergyc and synergys as follows: +# synergyc-plus and synergys-plus. +SYNERGYOLD=${SYNERGYOLD:-no} + +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 + +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 . +chmod -R u+w,go+r-w,a-s . + +if [ $SYNERGYOLD == "yes" ]; then + BINSUFFIX="--program-suffix=-plus" +fi + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux \ + $BINSUFFIX + +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 +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog INSTALL NEWS README examples/synergy.conf \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README$TAG + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/synergy-plus/synergy-plus.info b/desktop/synergy-plus/synergy-plus.info new file mode 100644 index 0000000000..05c02cdb78 --- /dev/null +++ b/desktop/synergy-plus/synergy-plus.info @@ -0,0 +1,10 @@ +PRGNAM="synergy-plus" +VERSION="1.3.4" +HOMEPAGE="http://code.google.com/p/synergy-plus/" +DOWNLOAD="http://synergy-plus.googlecode.com/files/synergy-plus-1.3.4.tar.gz" +MD5SUM="2c565afe5f920d363eef38dd97449b73" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Pierre Cazenave" +EMAIL="pwcazenave <at> gmail {dot} com" +APPROVED="dsomero" |