Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/synergy: ChangeLog synergy-1.4.2.ebuild
Date: Mon, 28 Feb 2011 22:39:03
Message-Id: 20110228223821.2F14720054@flycatcher.gentoo.org
1 xmw 11/02/28 22:38:21
2
3 Modified: ChangeLog
4 Added: synergy-1.4.2.ebuild
5 Log:
6 Version bump (bug 354037) and support qsynergy (bug 234673)
7
8 (Portage version: 2.1.9.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.66 x11-misc/synergy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/synergy/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/synergy/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/synergy/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/synergy/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 28 Feb 2011 20:35:32 -0000 1.65
24 +++ ChangeLog 28 Feb 2011 22:38:21 -0000 1.66
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-misc/synergy
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy/ChangeLog,v 1.65 2011/02/28 20:35:32 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy/ChangeLog,v 1.66 2011/02/28 22:38:21 xmw Exp $
30 +
31 +*synergy-1.4.2 (28 Feb 2011)
32 +
33 + 28 Feb 2011; Michael Weber <xmw@g.o> +synergy-1.4.2.ebuild:
34 + Version bump (bug 354037) and support qsynergy (bug 234673)
35
36 28 Feb 2011; Michael Weber <xmw@g.o> synergy-1.3.6.ebuild:
37 Added manpages
38
39
40
41 1.1 x11-misc/synergy/synergy-1.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/synergy/synergy-1.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/synergy/synergy-1.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: synergy-1.4.2.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy/synergy-1.4.2.ebuild,v 1.1 2011/02/28 22:38:21 xmw Exp $
51
52 EAPI=3
53
54 inherit cmake-utils qt4-r2
55
56 DESCRIPTION="Lets you easily share a single mouse and keyboard between multiple computers."
57 HOMEPAGE="http://synergy-foss.org/"
58 SRC_URI="http://${PN}.googlecode.com/files/${P}-Source.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris ~x86-solaris"
63 IUSE="qt4"
64
65 RDEPEND="x11-libs/libXtst
66 x11-libs/libX11
67 x11-libs/libXext
68 x11-libs/libXinerama
69 qt4? ( x11-libs/qt-gui )"
70 DEPEND="${RDEPEND}
71 x11-proto/xextproto
72 x11-proto/xproto
73 x11-proto/kbproto
74 x11-proto/xineramaproto
75 x11-libs/libXt"
76
77 S=${WORKDIR}/${P}-Source
78
79 src_configure() {
80 cmake-utils_src_configure
81
82 if use qt4 ; then
83 cd gui
84 qt4-r2_src_configure
85 fi
86 }
87
88 src_compile() {
89 cmake-utils_src_compile
90
91 if use qt4 ; then
92 cd gui
93 qt4-r2_src_compile
94 fi
95 }
96
97 src_install () {
98 dobin "${CMAKE_BUILD_DIR}"/${PN}{c,s} || die
99
100 if use qt4 ; then
101 dobin bin/q${PN} || die
102 insinto /usr/share/icons
103 newins gui/res/win/QSynergy.ico q${PN}.ico
104 make_desktop_entry q${PN} ${PN/s/S} q${PN} Utility;
105 fi
106
107 insinto /etc
108 doins conf/synergy.conf || die
109
110 mv doc/${PN}c.man doc/${PN}c.1 || die
111 mv doc/${PN}s.man doc/${PN}s.1 || die
112 doman doc/${PN}{c,s}.1 || die
113
114 dodoc README doc/synergy.conf.example* || die
115 }