You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
794 B
37 lines
794 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit eutils
|
|
|
|
MY_PN="input"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DESCRIPTION="Small collection of linux input layer utils"
|
|
HOMEPAGE="https://www.kraxel.org/blog/linux/input/"
|
|
SRC_URI="https://www.kraxel.org/releases/input/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_prepare() {
|
|
# Ported from Debian
|
|
#epatch "${FILESDIR}"/input-utils-0.0.1_pre20081014.patch
|
|
# version check stuff
|
|
#epatch "${FILESDIR}"/input-utils-0.0.1-protocol-mismatch-fix.patch
|
|
:
|
|
}
|
|
|
|
src_install() {
|
|
make install bindir="${D}"/usr/bin mandir="${D}"/usr/share/man STRIP="" || die "make install failed"
|
|
dodoc lircd.conf
|
|
dodoc README
|
|
}
|