Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ltunify/
Date: Mon, 18 Nov 2019 05:35:23
Message-Id: 1574055242.3d12edfab9f0def9f9756e6a8ec61cfe892cb298.radhermit@gentoo
1 commit: 3d12edfab9f0def9f9756e6a8ec61cfe892cb298
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 18 05:34:02 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 18 05:34:02 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d12edfa
7
8 app-misc/ltunify: install udev rules as a doc file
9
10 Closes: https://bugs.gentoo.org/601470
11
12 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
13
14 app-misc/ltunify/ltunify-0.2-r2.ebuild | 28 ++++++++++++++++++++++++++++
15 1 file changed, 28 insertions(+)
16
17 diff --git a/app-misc/ltunify/ltunify-0.2-r2.ebuild b/app-misc/ltunify/ltunify-0.2-r2.ebuild
18 new file mode 100644
19 index 00000000000..55d2dd4a721
20 --- /dev/null
21 +++ b/app-misc/ltunify/ltunify-0.2-r2.ebuild
22 @@ -0,0 +1,28 @@
23 +# Copyright 1999-2019 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Tool for working with Logitech Unifying receivers and devices"
30 +HOMEPAGE="https://lekensteyn.nl/logitech-unifying.html https://git.lekensteyn.nl/ltunify/"
31 +SRC_URI="https://git.lekensteyn.nl/${PN}/snapshot/${P}.tar.gz"
32 +
33 +LICENSE="GPL-3+"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +src_prepare() {
38 + default
39 + sed -i '/^override CFLAGS/d' Makefile || die
40 + tc-export CC
41 +}
42 +
43 +src_compile() {
44 + emake ${PN}
45 +}
46 +
47 +src_install() {
48 + dobin ${PN}
49 + dodoc NEWS README.txt udev/42-logitech-unify-permissions.rules
50 +}