Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xkeyboard-config: ChangeLog xkeyboard-config-2.4.1-r2.ebuild xkeyboard-config-2.4.1-r1.ebuild
Date: Mon, 21 Nov 2011 00:00:10
Message-Id: 20111121000000.427AE20033@flycatcher.gentoo.org
1 chithanh 11/11/21 00:00:00
2
3 Modified: ChangeLog
4 Added: xkeyboard-config-2.4.1-r2.ebuild
5 Removed: xkeyboard-config-2.4.1-r1.ebuild
6 Log:
7 Add upstream patch to unbreak shift-backspace, bug #391061 by tetromino.
8
9 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.145 x11-misc/xkeyboard-config/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.145&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.145&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?r1=1.144&r2=1.145
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v
21 retrieving revision 1.144
22 retrieving revision 1.145
23 diff -u -r1.144 -r1.145
24 --- ChangeLog 14 Oct 2011 22:07:52 -0000 1.144
25 +++ ChangeLog 21 Nov 2011 00:00:00 -0000 1.145
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/xkeyboard-config
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.144 2011/10/14 22:07:52 chithanh Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.145 2011/11/21 00:00:00 chithanh Exp $
31 +
32 +*xkeyboard-config-2.4.1-r2 (20 Nov 2011)
33 +
34 + 20 Nov 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 + -xkeyboard-config-2.4.1-r1.ebuild, +xkeyboard-config-2.4.1-r2.ebuild,
36 + +files/xkeyboard-config-2.4.1-shift-backspace.patch:
37 + Add upstream patch to unbreak shift-backspace, bug #391061 by tetromino.
38
39 *xkeyboard-config-2.4.1-r1 (14 Oct 2011)
40
41
42
43
44 1.1 x11-misc/xkeyboard-config/xkeyboard-config-2.4.1-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-2.4.1-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-2.4.1-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: xkeyboard-config-2.4.1-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-2.4.1-r2.ebuild,v 1.1 2011/11/21 00:00:00 chithanh Exp $
54
55 EAPI=4
56
57 XORG_STATIC=no
58 inherit xorg-2
59
60 EGIT_REPO_URI="git://anongit.freedesktop.org/git/xkeyboard-config"
61
62 DESCRIPTION="X keyboard configuration database"
63 HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig"
64 [[ ${PV} == *9999* ]] || SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2"
65
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
67 IUSE=""
68
69 LICENSE="MIT"
70 SLOT="0"
71
72 RDEPEND=">=x11-apps/xkbcomp-1.2.1
73 >=x11-libs/libX11-1.4.2"
74 DEPEND="${RDEPEND}
75 x11-proto/xproto
76 >=dev-util/intltool-0.30
77 dev-perl/XML-Parser"
78
79 XORG_CONFIGURE_OPTIONS=(
80 --with-xkb-base="${EPREFIX}/usr/share/X11/xkb"
81 --enable-compat-rules
82 # do not check for runtime deps
83 --disable-runtime-deps
84 --with-xkb-rules-symlink=xorg
85 )
86
87 PATCHES=(
88 "${FILESDIR}"/${P}-extended-function-keys.patch
89 "${FILESDIR}"/${P}-shift-backspace.patch
90 )
91
92 src_prepare() {
93 xorg-2_src_prepare
94 if [[ ${XORG_EAUTORECONF} != no ]]; then
95 intltoolize --copy --automake || die
96 fi
97 }
98
99 src_compile() {
100 # cleanup to make sure .dir files are regenerated
101 # bug #328455 c#26
102 xorg-2_src_compile clean
103 xorg-2_src_compile
104 }