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: kbd-1.15.4.ebuild ChangeLog
Date: Sun, 02 Dec 2012 21:27:41
Message-Id: 20121202212731.89EE92171D@flycatcher.gentoo.org
1 vapier 12/12/02 21:27:31
2
3 Modified: ChangeLog
4 Added: kbd-1.15.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.106 sys-apps/kbd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.106&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?rev=1.106&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/ChangeLog?r1=1.105&r2=1.106
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v
20 retrieving revision 1.105
21 retrieving revision 1.106
22 diff -u -r1.105 -r1.106
23 --- ChangeLog 11 Oct 2011 16:44:58 -0000 1.105
24 +++ ChangeLog 2 Dec 2012 21:27:31 -0000 1.106
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/kbd
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.105 2011/10/11 16:44:58 jer Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/ChangeLog,v 1.106 2012/12/02 21:27:31 vapier Exp $
31 +
32 +*kbd-1.15.4 (02 Dec 2012)
33 +
34 + 02 Dec 2012; Mike Frysinger <vapier@g.o> +kbd-1.15.4.ebuild:
35 + Version bump.
36
37 11 Oct 2011; Jeroen Roovers <jer@g.o> kbd-1.15.3.ebuild:
38 Stable for HPPA (bug #329693).
39
40
41
42 1.1 sys-apps/kbd/kbd-1.15.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-1.15.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kbd/kbd-1.15.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kbd-1.15.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-apps/kbd/kbd-1.15.4.ebuild,v 1.1 2012/12/02 21:27:31 vapier Exp $
52
53 EAPI="4"
54
55 DESCRIPTION="Keyboard and console utilities"
56 HOMEPAGE="http://freshmeat.net/projects/kbd/"
57 SRC_URI="ftp://ftp.altlinux.org/pub/people/legion/kbd/${P}.tar.xz
58 mirror://gentoo/${P}.tar.xz"
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 pam"
64
65 RDEPEND="pam? ( virtual/pam )"
66 DEPEND="${RDEPEND}"
67
68 src_unpack() {
69 default
70 cd "${S}"
71
72 # broken file ... upstream git punted it
73 rm po/es.po
74
75 # Rename conflicting keymaps to have unique names, bug #293228
76 cd "${S}"/data/keymaps/i386
77 mv dvorak/no.map dvorak/no-dvorak.map
78 mv fgGIod/trf.map fgGIod/trf-fgGIod.map
79 mv olpc/es.map olpc/es-olpc.map
80 mv olpc/pt.map olpc/pt-olpc.map
81 mv qwerty/cz.map qwerty/cz-qwerty.map
82 }
83
84 src_configure() {
85 econf \
86 $(use_enable nls) \
87 $(use_enable pam vlock)
88 }
89
90 src_install() {
91 default
92 dohtml doc/*.html
93 }