diff options
author | Tim Harder <radhermit@gentoo.org> | 2019-11-17 22:34:02 -0700 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2019-11-17 22:34:02 -0700 |
commit | 3d12edfab9f0def9f9756e6a8ec61cfe892cb298 (patch) | |
tree | c67d1203d67fb378272fb229710c1b7f48017768 /app-misc/ltunify | |
parent | net-misc/proxychains: drop myself as a maintainer (diff) | |
download | gentoo-3d12edfab9f0def9f9756e6a8ec61cfe892cb298.tar.gz gentoo-3d12edfab9f0def9f9756e6a8ec61cfe892cb298.tar.bz2 gentoo-3d12edfab9f0def9f9756e6a8ec61cfe892cb298.zip |
app-misc/ltunify: install udev rules as a doc file
Closes: https://bugs.gentoo.org/601470
Signed-off-by: Tim Harder <radhermit@gentoo.org>
Diffstat (limited to 'app-misc/ltunify')
-rw-r--r-- | app-misc/ltunify/ltunify-0.2-r2.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-misc/ltunify/ltunify-0.2-r2.ebuild b/app-misc/ltunify/ltunify-0.2-r2.ebuild new file mode 100644 index 000000000000..55d2dd4a7211 --- /dev/null +++ b/app-misc/ltunify/ltunify-0.2-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +DESCRIPTION="Tool for working with Logitech Unifying receivers and devices" +HOMEPAGE="https://lekensteyn.nl/logitech-unifying.html https://git.lekensteyn.nl/ltunify/" +SRC_URI="https://git.lekensteyn.nl/${PN}/snapshot/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + sed -i '/^override CFLAGS/d' Makefile || die + tc-export CC +} + +src_compile() { + emake ${PN} +} + +src_install() { + dobin ${PN} + dodoc NEWS README.txt udev/42-logitech-unify-permissions.rules +} |