blob: 616082c12be266918f86a5029f684d787b7e0ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-2.0-r1.ebuild,v 1.3 2010/12/23 11:53:49 ssuominen Exp $
EAPI=3
XORG_STATIC=no
inherit xorg-2
EGIT_REPO_URI="git://anongit.freedesktop.org/git/xkeyboard-config"
DESCRIPTION="X keyboard configuration database"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig"
SRC_URI="${BASE_INDIVIDUAL_URI}/data/xkeyboard-config/${P}.tar.bz2"
KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE=""
LICENSE="MIT"
SLOT="0"
RDEPEND="x11-apps/xkbcomp"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.30
dev-perl/XML-Parser"
CONFIGURE_OPTIONS="
--with-xkb-base=${EPREFIX}/usr/share/X11/xkb
--enable-compat-rules
--with-xkb-rules-symlink=xorg"
src_compile() {
# cleanup to make sure .dir files are regenerated
# bug #328455 c#26
emake clean || die
xorg-2_src_compile
}
|