From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 95E7C138206 for ; Tue, 26 Apr 2016 20:19:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECEDC21C009; Tue, 26 Apr 2016 20:19:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77BD721C006 for ; Tue, 26 Apr 2016 20:19:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 445373409E6 for ; Tue, 26 Apr 2016 20:19:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B19BE967 for ; Tue, 26 Apr 2016 20:19:23 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1461701949.84162d3e1b38cc0a7fbb0ef38759bfa973fccc89.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mouseremote/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/mouseremote/mouseremote-0.90-r1.ebuild X-VCS-Directories: app-misc/mouseremote/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 84162d3e1b38cc0a7fbb0ef38759bfa973fccc89 X-VCS-Branch: master Date: Tue, 26 Apr 2016 20:19:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5b95f0fd-f767-44b2-8f41-e34141a44fad X-Archives-Hash: d54e23be6a084bf6db4f33403f885169 commit: 84162d3e1b38cc0a7fbb0ef38759bfa973fccc89 Author: Austin English gentoo org> AuthorDate: Tue Apr 26 20:19:09 2016 +0000 Commit: Austin English gentoo org> CommitDate: Tue Apr 26 20:19:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84162d3e app-misc/mouseremote: remove mouseremote-0.90-r1 Package-Manager: portage-2.2.26 app-misc/mouseremote/mouseremote-0.90-r1.ebuild | 69 ------------------------- 1 file changed, 69 deletions(-) diff --git a/app-misc/mouseremote/mouseremote-0.90-r1.ebuild b/app-misc/mouseremote/mouseremote-0.90-r1.ebuild deleted file mode 100644 index 7f96710..0000000 --- a/app-misc/mouseremote/mouseremote-0.90-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit eutils - -S="${WORKDIR}/MouseRemote" -DESCRIPTION="X10 MouseRemote" -HOMEPAGE="http://www4.pair.com/gribnif/ha/" -SRC_URI="http://www4.pair.com/gribnif/ha/MouseRemote.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc x86" -IUSE="" - -DEPEND="virtual/perl-Time-HiRes" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-makefile.diff - epatch "${FILESDIR}"/${PN}-gentoo-${PVR}.diff -} - -src_compile() { - cd MultiMouse && emake \ - CC=$(tc-getCC) \ - PREFIX=/usr \ - LOCKDIR=/var/lock \ - JMANDIR=/usr/share/man/ja_JP.ujis || die -} - -src_install() { - dobin MultiMouse/multimouse || die - dosbin MultiMouse/multimoused || die - - dodoc README MultiMouse/README.jis MultiMouse/README.newstuff || die - newdoc MultiMouse/README README.MultiMouse || die - newdoc client/MouseRemote.conf MouseRemote.conf.dist || die - newdoc client/MouseRemote.pl MouseRemote.pl.dist || die - newdoc client/MouseRemoteKeys.pl MouseRemoteKeys.pl.dist || die - - newinitd "${FILESDIR}"/mouseremote.start mouseremote || die - newconfd "${FILESDIR}"/mouseremote.conf mouseremote || die -} - -pkg_postinst() { - [ -e /dev/mumse ] || mkfifo "${ROOT}"/dev/mumse - [ -e /dev/x10fifo ] || mkfifo "${ROOT}"/dev/x10fifo - - elog "To use the mouse function in X, add the following to your XF86Config" - elog "Section \"InputDevice\"" - elog " Identifier \"MouseREM\"" - elog " Driver \"mouse\"" - elog " Option \"Protocol\" \"MouseSystems\"" - elog " Option \"Device\" \"/dev/mumse\"" - elog "EndSection" - elog - elog "Don't forget to add the new device to the section \"ServerLayout\"" - elog "like: InputDevice \"MouseREM\" \"SendCoreEvents\"" - elog - elog "Enable the daemon with \"rc-update add mouseremote default\"." - elog - elog "Configure the daemon is run in /etc/conf.d/mouseremote." - elog - elog "See /usr/share/doc/${PF} on how to configure the buttons." -}