summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2012-08-10 13:49:23 +0000
committerJeremy Olexa <darkside@gentoo.org>2012-08-10 13:49:23 +0000
commit5d6ee5ec46f4790dd6914421cbbf51dd689ed744 (patch)
tree721371c9034cafdac0f868f4ef364e23d07d21fb /x11-misc/synergy/synergy-1.3.1.ebuild
parentStable for HPPA (bug #425076). (diff)
downloadhistorical-5d6ee5ec46f4790dd6914421cbbf51dd689ed744.tar.gz
historical-5d6ee5ec46f4790dd6914421cbbf51dd689ed744.tar.bz2
historical-5d6ee5ec46f4790dd6914421cbbf51dd689ed744.zip
Version bump from upstream with many, many bug fixes. Bug 430694 by Dustin C. Hatch
Package-Manager: portage-2.1.10.65/cvs/Linux i686
Diffstat (limited to 'x11-misc/synergy/synergy-1.3.1.ebuild')
-rw-r--r--x11-misc/synergy/synergy-1.3.1.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/x11-misc/synergy/synergy-1.3.1.ebuild b/x11-misc/synergy/synergy-1.3.1.ebuild
deleted file mode 100644
index 6ce116cceca0..000000000000
--- a/x11-misc/synergy/synergy-1.3.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2012 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.ebuild,v 1.15 2012/03/07 16:06:41 darkside 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="alpha amd64 ~arm 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"
-
- # 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
-}