Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xkeyboard-config: ChangeLog xkeyboard-config-1.2.ebuild
Date: Wed, 30 Jan 2008 23:57:19
Message-Id: E1JKMns-0001i2-7r@stork.gentoo.org
1 dberkholz 08/01/30 23:57:16
2
3 Modified: ChangeLog
4 Added: xkeyboard-config-1.2.ebuild
5 Log:
6 Bump.
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.45 x11-misc/xkeyboard-config/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.45&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?rev=1.45&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog?r1=1.44&r2=1.45
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v
19 retrieving revision 1.44
20 retrieving revision 1.45
21 diff -u -r1.44 -r1.45
22 --- ChangeLog 27 Jan 2008 19:18:32 -0000 1.44
23 +++ ChangeLog 30 Jan 2008 23:57:15 -0000 1.45
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/xkeyboard-config
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.44 2008/01/27 19:18:32 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/ChangeLog,v 1.45 2008/01/30 23:57:15 dberkholz Exp $
29 +
30 +*xkeyboard-config-1.2 (30 Jan 2008)
31 +
32 + 30 Jan 2008; Donnie Berkholz <dberkholz@g.o>;
33 + +xkeyboard-config-1.2.ebuild:
34 + Bump.
35
36 27 Jan 2008; Raúl Porcel <armin76@g.o>
37 xkeyboard-config-1.1.ebuild:
38
39
40
41 1.1 x11-misc/xkeyboard-config/xkeyboard-config-1.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xkeyboard-config-1.2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-1.2.ebuild,v 1.1 2008/01/30 23:57:15 dberkholz Exp $
51
52 inherit eutils multilib
53
54 DESCRIPTION="X keyboard configuration database"
55 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
56 HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig"
57 SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2"
58
59 LICENSE="MIT"
60 SLOT="0"
61
62 RDEPEND="x11-apps/xkbcomp
63 !x11-misc/xkbdata"
64 DEPEND="${RDEPEND}
65 dev-perl/XML-Parser"
66
67 pkg_setup() {
68 # (#130590) The old XKB directory can screw stuff up
69 local DIR="${ROOT}usr/$(get_libdir)/X11/xkb"
70 if [[ -d ${DIR} ]] ; then
71 eerror "Directory ${DIR} should be"
72 eerror "manually deleted/renamed/relocated before installing!"
73 die "Manually remove ${DIR}"
74 fi
75
76 # The old xkbdata 'pc' directory can screw stuff up, because portage won't
77 # let us overwrite a directory with a file
78 local PC="${ROOT}usr/share/X11/xkb/symbols/pc"
79 if [[ -d ${PC} ]] ; then
80 eerror "Directory ${PC} should be"
81 eerror "manually deleted/renamed/relocated before installing!"
82 die "Manually remove ${PC}"
83 fi
84 }
85
86 src_compile() {
87 econf \
88 --with-xkb-base=/usr/share/X11/xkb \
89 --enable-compat-rules \
90 --disable-xkbcomp-symlink \
91 --with-xkb-rules-symlink=xorg \
92 || die "configure failed"
93
94 emake || die "make failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "install failed"
99 }
100
101
102
103 --
104 gentoo-commits@l.g.o mailing list