Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/input-utils: ChangeLog input-utils-0.0.1_pre20081014.ebuild
Date: Sun, 03 Jul 2011 07:56:29
Message-Id: 20110703075619.7FAA720051@flycatcher.gentoo.org
1 robbat2 11/07/03 07:56:19
2
3 Modified: ChangeLog
4 Added: input-utils-0.0.1_pre20081014.ebuild
5 Log:
6 Version bump. Port Debian patch. Also fix bug #344579: protocol version mismatch.
7
8 (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 sys-apps/input-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/input-utils/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/input-utils/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/input-utils/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/input-utils/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -p -w -b -B -u -u -r1.7 -r1.8
23 --- ChangeLog 20 Jan 2008 18:47:24 -0000 1.7
24 +++ ChangeLog 3 Jul 2011 07:56:19 -0000 1.8
25 @@ -1,6 +1,15 @@
26 # ChangeLog for sys-apps/input-utils
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/ChangeLog,v 1.7 2008/01/20 18:47:24 angelos Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/ChangeLog,v 1.8 2011/07/03 07:56:19 robbat2 Exp $
31 +
32 +*input-utils-0.0.1_pre20081014 (03 Jul 2011)
33 +
34 + 03 Jul 2011; Robin H. Johnson <robbat2@g.o>
35 + +input-utils-0.0.1_pre20081014.ebuild,
36 + +files/input-utils-0.0.1-protocol-mismatch-fix.patch,
37 + +files/input-utils-0.0.1_pre20081014.patch:
38 + Version bump. Port Debian patch. Also fix bug #344579: protocol version
39 + mismatch.
40
41 20 Jan 2008; Christoph Mende <angelos@g.o>
42 input-utils-0.0.1_pre20051128-r1.ebuild:
43
44
45
46 1.1 sys-apps/input-utils/input-utils-0.0.1_pre20081014.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/input-utils/input-utils-0.0.1_pre20081014.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/input-utils/input-utils-0.0.1_pre20081014.ebuild?rev=1.1&content-type=text/plain
50
51 Index: input-utils-0.0.1_pre20081014.ebuild
52 ===================================================================
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sys-apps/input-utils/input-utils-0.0.1_pre20081014.ebuild,v 1.1 2011/07/03 07:56:19 robbat2 Exp $
56
57 EAPI=4
58 inherit eutils
59
60 MY_P="input-${PV/0.0.1_pre/}-101501"
61
62 DESCRIPTION="Small collection of linux input layer utils"
63 HOMEPAGE="http://dl.bytesex.org/cvs-snapshots/"
64 SRC_URI="http://dl.bytesex.org/cvs-snapshots/${MY_P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~x86"
69 IUSE=""
70
71 DEPEND=""
72 RDEPEND=""
73
74 S="${WORKDIR}/input"
75
76 src_prepare() {
77 cd "${S}"
78 # Ported from Debian
79 epatch "${FILESDIR}"/input-utils-0.0.1_pre20081014.patch
80 # version check stuff
81 epatch "${FILESDIR}"/input-utils-0.0.1-protocol-mismatch-fix.patch
82 }
83
84 src_install() {
85 make install bindir="${D}"/usr/bin mandir="${D}"/usr/share/man STRIP="" || die "make install failed"
86 dodoc lircd.conf
87 dodoc README
88 }