blob: f0fa654b8db214b4dc4c127c58c666e54033006a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy/synergy-1.3.1-r1.ebuild,v 1.1 2009/10/30 09:24:21 wired Exp $
inherit eutils autotools
DESCRIPTION="Lets you easily share a single mouse and keyboard between multiple computers."
SRC_URI="mirror://sourceforge/${PN}2/${P}.tar.gz"
HOMEPAGE="http://synergy2.sourceforge.net/"
LICENSE="GPL-2"
KEYWORDS="~arm ~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
SLOT="0"
IUSE=""
RDEPEND="x11-libs/libXtst
x11-libs/libX11
x11-libs/libXext
x11-libs/libXinerama"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-proto/xproto
x11-proto/kbproto
x11-proto/xineramaproto
x11-libs/libXt"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}+gcc-4.3.patch"
# fix for #257794
epatch "${FILESDIR}/${P}-stuttered-delay-fix.patch"
# Remove -Werror usage.
sed -i -e '/ACX_CXX_WARNINGS_ARE_ERRORS/d' \
configure.in || die "unable to sed out -Werror usage."
eautoreconf
}
src_compile() {
# debug causes an assertion error in switchInDirection()
econf --sysconfdir=/etc \
--disable-dependency-tracking \
--disable-debug
emake || die
}
src_install () {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
insinto /etc
doins "${S}"/examples/synergy.conf
}
pkg_postinst() {
elog
elog "${PN} can also be used to connect to computers running Windows."
elog "Visit ${HOMEPAGE} to find the Windows client."
elog
}
|