Magellan Linux

Contents of /branches/R11-stable/extras/synergy/synergy-1.3.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 15460 - (show annotations) (download)
Wed Jan 2 12:13:34 2013 UTC (11 years, 4 months ago) by niro
File size: 909 byte(s)
-release branches/R11-stable
1 # $Id$
2
3 PNAME="synergy"
4 PVER="1.3.8"
5 PBUILD="r1"
6
7 PCAT="x11-misc"
8
9 DESCRIPTION="Redirects the mouse and keyboard over network."
10 HOMEPAGE="http://synergy-foss.org/"
11
12 DEPEND=">= x11-libs/libX11-1.4
13 >= x11-libs/libXext-1.3
14 >= x11-libs/libXinerama-1.2
15 >= x11-libs/libXtst-1.2"
16
17 SRCFILE="${PNAME}-${PVER}-Source.tar.gz"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER}-Source"
19
20 sminclude mtools cmake
21
22 SRC_URI=(
23 http://${PNAME}.googlecode.com/files/${SRCFILE}
24 mirror://${PNAME}/${SRCFILE}
25 )
26
27 src_install()
28 {
29 cd ${SRCDIR}
30
31 # no install target in Makefile
32 minstallexec bin/synergyc || die
33 minstallexec bin/synergys || die
34
35 cp doc/synergyc.man synergyc.8 || die
36 cp doc/synergys.man synergys.8 || die
37 minstallman synergyc.8 || die
38 minstallman synergys.8 || die
39 minstalldir /etc || die
40 minstallfile doc/synergy.conf.example /etc/synergy.conf || die
41
42 minstalldocs ChangeLog COPYING README doc/synergy.conf* || die
43 }