diff options
-rw-r--r-- | x11-misc/synergy-plus/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/synergy-plus/metadata.xml | 13 | ||||
-rw-r--r-- | x11-misc/synergy-plus/synergy-plus-1.3.4.ebuild | 42 |
3 files changed, 66 insertions, 0 deletions
diff --git a/x11-misc/synergy-plus/ChangeLog b/x11-misc/synergy-plus/ChangeLog new file mode 100644 index 000000000000..509fab0dad0f --- /dev/null +++ b/x11-misc/synergy-plus/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for x11-misc/synergy-plus +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/synergy-plus/ChangeLog,v 1.1 2009/10/21 16:15:37 cardoe Exp $ + +*synergy-plus-1.3.4 (21 Oct 2009) + + 21 Oct 2009; Doug Goldstein <cardoe@gentoo.org> + +synergy-plus-1.3.4.ebuild, +metadata.xml: + add initial work in progress version to the tree. ebuild from Ishan Arora + <ishanarora@gmail.com> on bug #277320 + diff --git a/x11-misc/synergy-plus/metadata.xml b/x11-misc/synergy-plus/metadata.xml new file mode 100644 index 000000000000..8cafa1bb824e --- /dev/null +++ b/x11-misc/synergy-plus/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>desktop-misc</herd> + <maintainer> + <email>flameeyes@gentoo.org</email> + <name>Diego Pettenò</name> + </maintainer> + <maintainer> + <email>cardoe@gentoo.org</email> + <name>Doug Goldstein</name> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/synergy-plus/synergy-plus-1.3.4.ebuild b/x11-misc/synergy-plus/synergy-plus-1.3.4.ebuild new file mode 100644 index 000000000000..a4bede8ea52f --- /dev/null +++ b/x11-misc/synergy-plus/synergy-plus-1.3.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2009 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.1 2009/10/21 16:15:37 cardoe Exp $ + +EAPI="2" + +DESCRIPTION="Lets you easily share a single mouse and keyboard between multiple +computers. An active fork of synergy" +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" +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 +} |