Gentoo Archives: gentoo-commits

From: "Remi Cardona (remi)" <remi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xkeyboard-config: xkeyboard-config-1.7.ebuild ChangeLog
Date: Tue, 06 Oct 2009 10:47:09
Message-Id: E1Mv7ZP-0008Fl-1P@stork.gentoo.org
1 remi 09/10/06 10:47:03
2
3 Modified: ChangeLog
4 Added: xkeyboard-config-1.7.ebuild
5 Log:
6 x11-misc/xkeyboard-config: bump to 1.7, sync with x11 overlay
7 (Portage version: 2.2_rc44/cvs/Linux i686)
8
9 Revision Changes Path
10 1.73 x11-misc/xkeyboard-config/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 6 Oct 2009 09:45:27 -0000 1.72
23 +++ ChangeLog 6 Oct 2009 10:47:02 -0000 1.73
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/xkeyboard-config
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.72 2009/10/06 09:45:27 remi Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.73 2009/10/06 10:47:02 remi Exp $
29 +
30 +*xkeyboard-config-1.7 (06 Oct 2009)
31 +
32 + 06 Oct 2009; Rémi Cardona <remi@g.o> +xkeyboard-config-1.7.ebuild:
33 + bump to 1.7, sync with x11 overlay
34
35 06 Oct 2009; Rémi Cardona <remi@g.o> -xkeyboard-config-1.1.ebuild:
36 drop old ebuilds
37
38
39
40 1.1 x11-misc/xkeyboard-config/xkeyboard-config-1.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: xkeyboard-config-1.7.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.7.ebuild,v 1.1 2009/10/06 10:47:02 remi Exp $
50
51 EAPI="2"
52
53 if [[ ${PV} = 9999* ]]; then
54 GIT_ECLASS="git"
55 EGIT_REPO_URI="git://anongit.freedesktop.org/git/xkeyboard-config"
56 else
57 SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2"
58 fi
59
60 inherit ${GIT_ECLASS} autotools
61
62 DESCRIPTION="X keyboard configuration database"
63 HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig"
64
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
66 IUSE=""
67
68 LICENSE="MIT"
69 SLOT="0"
70
71 RDEPEND="x11-apps/xkbcomp"
72 DEPEND="${RDEPEND}
73 sys-devel/gettext
74 dev-perl/XML-Parser"
75
76 src_prepare() {
77 if [[ ${PV} = 9999* ]]; then
78 intltoolize
79 eautoreconf
80 fi
81 }
82
83 src_compile() {
84 econf \
85 --with-xkb-base=/usr/share/X11/xkb \
86 --enable-compat-rules \
87 --disable-xkbcomp-symlink \
88 --with-xkb-rules-symlink=xorg \
89 || die "configure failed"
90
91 emake || die "make failed"
92 }
93
94 src_install() {
95 make DESTDIR="${D}" install || die "install failed"
96 echo "CONFIG_PROTECT=\"/usr/share/X11/xkb\"" > "${T}"/10xkeyboard-config
97 doenvd "${T}"/10xkeyboard-config
98 }