diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-08-13 17:31:09 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-08-13 17:31:09 +0000 |
commit | 72b1b11da4fc9fe4e526d1c35a011333dda1eb7f (patch) | |
tree | 1d39b4c89084c1ba65a1ab5a7fa7e0c426456879 /sys-apps/input-utils | |
parent | amd64 stable - 519788 (diff) | |
download | gentoo-2-72b1b11da4fc9fe4e526d1c35a011333dda1eb7f.tar.gz gentoo-2-72b1b11da4fc9fe4e526d1c35a011333dda1eb7f.tar.bz2 gentoo-2-72b1b11da4fc9fe4e526d1c35a011333dda1eb7f.zip |
Bug #519794: version bump.
(Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-apps/input-utils')
-rw-r--r-- | sys-apps/input-utils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/input-utils/input-utils-1.1.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/sys-apps/input-utils/ChangeLog b/sys-apps/input-utils/ChangeLog index 9b4e0478eb79..47bb6c0a670e 100644 --- a/sys-apps/input-utils/ChangeLog +++ b/sys-apps/input-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/input-utils # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/ChangeLog,v 1.12 2014/05/31 02:12:25 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/ChangeLog,v 1.13 2014/08/13 17:31:09 robbat2 Exp $ + +*input-utils-1.1 (13 Aug 2014) + + 13 Aug 2014; Robin H. Johnson <robbat2@gentoo.org> +input-utils-1.1.ebuild: + Bug #519794: version bump. 31 May 2014; Patrick Lauer <patrick@gentoo.org> input-utils-0.0.1_pre20081014.ebuild: diff --git a/sys-apps/input-utils/input-utils-1.1.ebuild b/sys-apps/input-utils/input-utils-1.1.ebuild new file mode 100644 index 000000000000..1ca5c66515c0 --- /dev/null +++ b/sys-apps/input-utils/input-utils-1.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/input-utils-1.1.ebuild,v 1.1 2014/08/13 17:31:09 robbat2 Exp $ + +EAPI=4 +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 +} |