Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/kbd: ChangeLog kbd-1.14.1-r1.ebuild kbd-1.14.1.ebuild
Date: Tue, 01 Apr 2008 15:16:12
Message-Id: E1JgiDX-0000eq-He@stork.gentoo.org
1 vapier 08/04/01 15:16:07
2
3 Modified: ChangeLog
4 Added: kbd-1.14.1-r1.ebuild
5 Removed: kbd-1.14.1.ebuild
6 Log:
7 Fix from Charles Clément for missing binaries #215610 by Massimo Maggi.
8 (Portage version: 2.2_pre5)
9
10 Revision Changes Path
11 1.72 sys-apps/kbd/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.72&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.72&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/kbd/ChangeLog?r1=1.71&r2=1.72
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v
20 retrieving revision 1.71
21 retrieving revision 1.72
22 diff -u -r1.71 -r1.72
23 --- ChangeLog 30 Mar 2008 17:09:26 -0000 1.71
24 +++ ChangeLog 1 Apr 2008 15:16:06 -0000 1.72
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sys-apps/kbd
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.71 2008/03/30 17:09:26 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.72 2008/04/01 15:16:06 vapier Exp $
30 +
31 +*kbd-1.14.1-r1 (01 Apr 2008)
32 +
33 + 01 Apr 2008; Mike Frysinger <vapier@g.o>
34 + +files/kbd-1.14.1-missing-configure.patch, -kbd-1.14.1.ebuild,
35 + +kbd-1.14.1-r1.ebuild:
36 + Fix from Charles Clément for missing binaries #215610 by Massimo Maggi.
37
38 *kbd-1.14.1 (30 Mar 2008)
39
40
41
42
43 1.1 sys-apps/kbd/kbd-1.14.1-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/kbd/kbd-1.14.1-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/kbd/kbd-1.14.1-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: kbd-1.14.1-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.14.1-r1.ebuild,v 1.1 2008/04/01 15:16:06 vapier Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Keyboard and console utilities"
57 HOMEPAGE="http://freshmeat.net/projects/kbd/"
58 SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="nls"
64
65 RDEPEND=""
66 DEPEND="${RDEPEND}
67 nls? ( sys-devel/gettext )"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 sed -i 's:install -s:install:' src/Makefile.in
73
74 # fix unimap path issue caused by Debian patch
75 epatch "${FILESDIR}"/${PN}-1.12-unimap.patch
76
77 # Provide a QWERTZ and QWERTY cz map #19010
78 cp data/keymaps/i386/{qwertz,qwerty}/cz.map || die "cz qwerty"
79 epatch "${FILESDIR}"/${PN}-1.12-cz-qwerty-map.patch
80
81 # Fix jp map to recognize Ctrl-[ as Escape #71870
82 epatch "${FILESDIR}"/${PN}-1.12-jp-escape.patch
83
84 epatch "${FILESDIR}"/${P}-missing-configure.patch #215610
85 }
86
87 src_compile() {
88 econf $(use_enable nls) || die
89 emake || die
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die
94 dodoc CHANGES CREDITS README
95 dohtml doc/*.html
96 }
97
98
99
100 --
101 gentoo-commits@l.g.o mailing list