diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-04-26 13:48:30 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-04-26 13:48:30 +0200 |
commit | 6b6a92f95eef3f18e4a2fc96b1c2b8245356c150 (patch) | |
tree | 0857a3a723c374024bb8acecdb76bd0e7103bec9 /sys-apps/input-utils/input-utils-1.2.ebuild | |
parent | media-sound/kid3: Bump to version 3.4.0 (diff) | |
download | gentoo-6b6a92f95eef3f18e4a2fc96b1c2b8245356c150.tar.gz gentoo-6b6a92f95eef3f18e4a2fc96b1c2b8245356c150.tar.bz2 gentoo-6b6a92f95eef3f18e4a2fc96b1c2b8245356c150.zip |
sys-apps/input-utils: Bump to version 1.2
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps/input-utils/input-utils-1.2.ebuild')
-rw-r--r-- | sys-apps/input-utils/input-utils-1.2.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys-apps/input-utils/input-utils-1.2.ebuild b/sys-apps/input-utils/input-utils-1.2.ebuild new file mode 100644 index 000000000000..41de0c2c65b6 --- /dev/null +++ b/sys-apps/input-utils/input-utils-1.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 +} |