blob: cfe9dd8f9c9d54fe2ea295035f96355528a4ac58 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libxkbcommon/libxkbcommon-0.2.0.ebuild,v 1.2 2013/04/21 19:25:45 chithanh Exp $
EAPI=5
XORG_EAUTORECONF="yes"
if [[ ${PV} = *9999* ]]; then
GIT_ECLASS="git-2"
EXPERIMENTAL="true"
EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}"
KEYWORDS=""
else
XORG_BASE_INDIVIDUAL_URI=""
SRC_URI="http://xkbcommon.org/download/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
inherit xorg-2 ${GIT_ECLASS}
DESCRIPTION="X.Org xkbcommon library"
IUSE="doc"
RDEPEND="
x11-proto/xproto
>=x11-proto/kbproto-1.0.5"
DEPEND="${RDEPEND}
sys-devel/bison
sys-devel/flex
doc? ( app-doc/doxygen )"
XORG_CONFIGURE_OPTIONS=(
--with-xkb-config-root="${EPREFIX}/usr/share/X11/xkb" $(use_with doc doxygen)
)
|