blob: e9c49b0d1c5cc1e7f8579408a4370965c522078c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy-plus/synergy-plus-1.3.4.ebuild,v 1.5 2010/07/22 11:32:34 ssuominen Exp $
EAPI="2"
DESCRIPTION="Lets you easily share a single mouse and keyboard between multiple computers"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
#SRC_URI="mirror://google/files/${PN}/${P}.tar.gz"
HOMEPAGE="http://code.google.com/p/synergy-plus/"
LICENSE="GPL-2"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE=""
CDEPEND="x11-libs/libXtst
x11-libs/libX11
x11-libs/libXext
x11-libs/libXinerama"
RDEPEND="${CDEPEND}
!x11-misc/synergy"
DEPEND="${CDEPEND}
x11-proto/xextproto
x11-proto/xproto
x11-proto/kbproto
x11-proto/xineramaproto
x11-libs/libXt"
src_install () {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
insinto /etc
doins examples/synergy.conf || die "doins failed"
}
pkg_postinst() {
elog
elog "${PN} can also be used to connect to computers running Windows or Mac OS X."
elog "Visit ${HOMEPAGE} to find the Windows client and Mac OS X client."
elog
}
|