Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mouseremote/
Date: Tue, 26 Apr 2016 20:19:31
Message-Id: 1461701949.84162d3e1b38cc0a7fbb0ef38759bfa973fccc89.wizardedit@gentoo
1 commit: 84162d3e1b38cc0a7fbb0ef38759bfa973fccc89
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 20:19:09 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 20:19:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84162d3e
7
8 app-misc/mouseremote: remove mouseremote-0.90-r1
9
10 Package-Manager: portage-2.2.26
11
12 app-misc/mouseremote/mouseremote-0.90-r1.ebuild | 69 -------------------------
13 1 file changed, 69 deletions(-)
14
15 diff --git a/app-misc/mouseremote/mouseremote-0.90-r1.ebuild b/app-misc/mouseremote/mouseremote-0.90-r1.ebuild
16 deleted file mode 100644
17 index 7f96710..0000000
18 --- a/app-misc/mouseremote/mouseremote-0.90-r1.ebuild
19 +++ /dev/null
20 @@ -1,69 +0,0 @@
21 -# Copyright 1999-2011 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -inherit eutils
26 -
27 -S="${WORKDIR}/MouseRemote"
28 -DESCRIPTION="X10 MouseRemote"
29 -HOMEPAGE="http://www4.pair.com/gribnif/ha/"
30 -SRC_URI="http://www4.pair.com/gribnif/ha/MouseRemote.tar.gz"
31 -
32 -SLOT="0"
33 -LICENSE="GPL-2"
34 -KEYWORDS="amd64 ~ppc x86"
35 -IUSE=""
36 -
37 -DEPEND="virtual/perl-Time-HiRes"
38 -
39 -src_unpack() {
40 - unpack ${A}
41 - cd "${S}"
42 -
43 - epatch "${FILESDIR}"/${P}-makefile.diff
44 - epatch "${FILESDIR}"/${PN}-gentoo-${PVR}.diff
45 -}
46 -
47 -src_compile() {
48 - cd MultiMouse && emake \
49 - CC=$(tc-getCC) \
50 - PREFIX=/usr \
51 - LOCKDIR=/var/lock \
52 - JMANDIR=/usr/share/man/ja_JP.ujis || die
53 -}
54 -
55 -src_install() {
56 - dobin MultiMouse/multimouse || die
57 - dosbin MultiMouse/multimoused || die
58 -
59 - dodoc README MultiMouse/README.jis MultiMouse/README.newstuff || die
60 - newdoc MultiMouse/README README.MultiMouse || die
61 - newdoc client/MouseRemote.conf MouseRemote.conf.dist || die
62 - newdoc client/MouseRemote.pl MouseRemote.pl.dist || die
63 - newdoc client/MouseRemoteKeys.pl MouseRemoteKeys.pl.dist || die
64 -
65 - newinitd "${FILESDIR}"/mouseremote.start mouseremote || die
66 - newconfd "${FILESDIR}"/mouseremote.conf mouseremote || die
67 -}
68 -
69 -pkg_postinst() {
70 - [ -e /dev/mumse ] || mkfifo "${ROOT}"/dev/mumse
71 - [ -e /dev/x10fifo ] || mkfifo "${ROOT}"/dev/x10fifo
72 -
73 - elog "To use the mouse function in X, add the following to your XF86Config"
74 - elog "Section \"InputDevice\""
75 - elog " Identifier \"MouseREM\""
76 - elog " Driver \"mouse\""
77 - elog " Option \"Protocol\" \"MouseSystems\""
78 - elog " Option \"Device\" \"/dev/mumse\""
79 - elog "EndSection"
80 - elog
81 - elog "Don't forget to add the new device to the section \"ServerLayout\""
82 - elog "like: InputDevice \"MouseREM\" \"SendCoreEvents\""
83 - elog
84 - elog "Enable the daemon with \"rc-update add mouseremote default\"."
85 - elog
86 - elog "Configure the daemon is run in /etc/conf.d/mouseremote."
87 - elog
88 - elog "See /usr/share/doc/${PF} on how to configure the buttons."
89 -}