public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mouseremote/, app-misc/mouseremote/files/
Date: Mon, 19 Apr 2021 19:41:36 +0000 (UTC)	[thread overview]
Message-ID: <1618861237.3e64a6f46c9b053988fc831295e73b9fcf540401.sam@gentoo> (raw)

commit:     3e64a6f46c9b053988fc831295e73b9fcf540401
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 19:37:00 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 19:40:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e64a6f4

app-misc/mouseremote: drop 0.90-r2

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-misc/mouseremote/files/mouseremote.start    | 28 ----------
 app-misc/mouseremote/mouseremote-0.90-r2.ebuild | 71 -------------------------
 2 files changed, 99 deletions(-)

diff --git a/app-misc/mouseremote/files/mouseremote.start b/app-misc/mouseremote/files/mouseremote.start
deleted file mode 100644
index e149dd8eb70..00000000000
--- a/app-misc/mouseremote/files/mouseremote.start
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
-	use modules logger
-	before xdm
-}
-
-checkconfig() {
-	[ -z "$DEV" ] || [ -z "$DRV" ] || return 0
-	eerror "You need to setup DEV and DRV in /etc/conf.d/mouseremote first"
-	return 1
-}
-
-start() {
-	checkconfig || return 1
-
-	ebegin "Starting X10 MouseRemote Server"
-	/usr/sbin/multimoused -${DRV} ${DEV} 2> /dev/null
-	eend $?
-}
-
-stop() {
-	ebegin "Stopping X10 MouseRemote Server"
-	kill $(cat /var/lock/MultiMouse.pid)
-	eend ${?} "Failed to stop MouseRemote Server"
-}

diff --git a/app-misc/mouseremote/mouseremote-0.90-r2.ebuild b/app-misc/mouseremote/mouseremote-0.90-r2.ebuild
deleted file mode 100644
index ddddb1fbdd1..00000000000
--- a/app-misc/mouseremote/mouseremote-0.90-r2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-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"
-
-S="${WORKDIR}/MouseRemote"
-
-src_prepare() {
-	eapply -p0 "${FILESDIR}"/${P}-makefile.diff
-	eapply "${FILESDIR}"/${P}-gentoo.diff
-	eapply -p0 "${FILESDIR}"/${P}-fix-warnings.diff
-
-	eapply_user
-}
-
-src_compile() {
-	cd MultiMouse && emake \
-		CC=$(tc-getCC) \
-		PREFIX=/usr \
-		LOCKDIR=/var/lock \
-	    JMANDIR=/usr/share/man/ja_JP.ujis
-}
-
-src_install() {
-	dobin MultiMouse/multimouse
-	dosbin MultiMouse/multimoused
-
-	dodoc README MultiMouse/README.jis MultiMouse/README.newstuff
-	newdoc MultiMouse/README README.MultiMouse
-	newdoc client/MouseRemote.conf MouseRemote.conf.dist
-	newdoc client/MouseRemote.pl MouseRemote.pl.dist
-	newdoc client/MouseRemoteKeys.pl MouseRemoteKeys.pl.dist
-
-	newinitd "${FILESDIR}"/mouseremote.start mouseremote
-	newconfd "${FILESDIR}"/mouseremote.conf mouseremote
-}
-
-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."
-}


             reply	other threads:[~2021-04-19 19:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-19 19:41 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-04-27 23:16 [gentoo-commits] repo/gentoo:master commit in: app-misc/mouseremote/, app-misc/mouseremote/files/ Austin English

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1618861237.3e64a6f46c9b053988fc831295e73b9fcf540401.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox