blob: 0bfe9a51e826660fd60ba9b1f23127897eff952c (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xkeyboard-config/xkeyboard-config-0.7.ebuild,v 1.4 2006/02/07 23:11:19 spyderous Exp $
DESCRIPTION="X keyboard configuration database"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~s390 ~sh ~sparc ~x86"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/XKeyboardConfig"
SRC_URI="http://xlibs.freedesktop.org/xkbdesc/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
RDEPEND="dev-perl/XML-Parser
x11-apps/xkbcomp
!x11-misc/xkbdata"
DEPEND="${RDEPEND}"
src_compile() {
econf \
--with-xkb-base=/usr/share/X11/xkb \
--enable-compat-rules \
--disable-xkbcomp-symlink \
--with-xkb-rules-symlink=xorg \
|| die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "install failed"
echo "CONFIG_PROTECT=\"/usr/share/X11/xkb\"" > ${T}/10xkeyboard-config
doenvd ${T}/10xkeyboard-config
}
|