From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 200E31395E3 for ; Mon, 21 Nov 2016 14:15:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 686F5E0B96; Mon, 21 Nov 2016 14:15:14 +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 40658E0B96 for ; Mon, 21 Nov 2016 14:15:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 597ED340FA4 for ; Mon, 21 Nov 2016 14:15:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B83A94A6 for ; Mon, 21 Nov 2016 14:15:11 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1479737707.ca3a7e1977fabcdce3378520add3f0edb81723a1.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/razertool/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/razertool/razertool-0.0.7-r3.ebuild X-VCS-Directories: app-misc/razertool/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: ca3a7e1977fabcdce3378520add3f0edb81723a1 X-VCS-Branch: master Date: Mon, 21 Nov 2016 14:15:11 +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: 84efbb3d-81ca-4e43-ba28-3a672378d03a X-Archives-Hash: d53f296ee0e039bbd50e98a9e52ce4ef commit: ca3a7e1977fabcdce3378520add3f0edb81723a1 Author: Lars Wendler gentoo org> AuthorDate: Mon Nov 21 14:14:39 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Nov 21 14:15:07 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3a7e19 app-misc/razertool: Removed old. Package-Manager: portage-2.3.2 app-misc/razertool/razertool-0.0.7-r3.ebuild | 62 ---------------------------- 1 file changed, 62 deletions(-) diff --git a/app-misc/razertool/razertool-0.0.7-r3.ebuild b/app-misc/razertool/razertool-0.0.7-r3.ebuild deleted file mode 100644 index aac0ec2..00000000 --- a/app-misc/razertool/razertool-0.0.7-r3.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=2 -inherit eutils - -DESCRIPTION="Unofficial tool for controlling the Razer Copperhead mouse" -HOMEPAGE="http://razertool.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P/-/_}.orig.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="gtk" - -RDEPEND="virtual/libusb:0 - gtk? ( - >=gnome-base/librsvg-2.0 - >=x11-libs/cairo-1.0.0 - >=x11-libs/gtk+-2.8.0:2 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - sed -i razertool.rules.example \ - -e 's:ACTION=="add", ::;s:BUS=:SUBSYSTEMS=:;s:SYSFS{:ATTRS{:g' \ - || die "sed razertool.rules.example action failed" - - # plugdev group may not exist (created by hal), default to usb - sed -i razertool.rules.example \ - -e 's:plugdev:usb:' \ - || die "sed razertool.rules.example plugdev failed" -} - -src_configure() { - econf $(use_enable gtk) -} - -src_install() { - emake DESTDIR="${D}" install || die - - insinto /lib/udev/rules.d - newins razertool.rules.example 90-razertool.rules || die - - dodoc AUTHORS ChangeLog NEWS README - - # Icon and desktop entry - dosym /usr/share/${PN}/pixmaps/${PN}-icon.png /usr/share/pixmaps/${PN}-icon.png - make_desktop_entry "razertool-gtk" "RazerTool" ${PN}-icon "GTK;Settings;HardwareSettings" -} - -pkg_postinst() { - elog "Razer Copperhead mice need firmware version 6.20 or higher" - elog "to work properly. Running ${PN} on mice with older firmwares" - elog "might lead to random USB-disconnects." - elog "To run as non-root, add yourself to the usb group:" - elog " gpasswd -a usb" - elog "or adapt permissions/owner/group in:" - elog " /etc/udev/rules.d/90-razertool.rules" - elog "Then unplug and plug in the mouse." -}