summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:15:10 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:15:10 +0000
commit1ee5eb98c00b10da7c3d4e65a544189fd38e76ec (patch)
treebd4ddf7263eb40fd13308c78f219885a2ef5282b /app-misc
parentRemove old (diff)
downloadgentoo-2-1ee5eb98c00b10da7c3d4e65a544189fd38e76ec.tar.gz
gentoo-2-1ee5eb98c00b10da7c3d4e65a544189fd38e76ec.tar.bz2
gentoo-2-1ee5eb98c00b10da7c3d4e65a544189fd38e76ec.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/mouseremote/ChangeLog7
-rw-r--r--app-misc/mouseremote/mouseremote-0.90.ebuild61
2 files changed, 5 insertions, 63 deletions
diff --git a/app-misc/mouseremote/ChangeLog b/app-misc/mouseremote/ChangeLog
index 1a81d2d46f72..25fbd4efcfe4 100644
--- a/app-misc/mouseremote/ChangeLog
+++ b/app-misc/mouseremote/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/mouseremote
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/mouseremote/ChangeLog,v 1.16 2011/12/07 07:45:22 phajdan.jr Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/mouseremote/ChangeLog,v 1.17 2012/05/10 15:15:10 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -mouseremote-0.90.ebuild:
+ Remove old
07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
mouseremote-0.90-r1.ebuild:
diff --git a/app-misc/mouseremote/mouseremote-0.90.ebuild b/app-misc/mouseremote/mouseremote-0.90.ebuild
deleted file mode 100644
index f81168f933d1..000000000000
--- a/app-misc/mouseremote/mouseremote-0.90.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/mouseremote/mouseremote-0.90.ebuild,v 1.17 2007/04/22 15:16:40 phreak Exp $
-
-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="~ppc x86"
-IUSE=""
-
-DEPEND="virtual/perl-Time-HiRes"
-
-src_compile() {
- epatch "${FILESDIR}"/${PN}-gentoo.diff
- cd MultiMouse && emake \
- PREFIX=/usr \
- LOCKDIR=/var/lock \
- JMANDIR=/usr/share/man/ja_JP.ujis || die
-}
-
-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."
-}