diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-03-19 15:18:49 +0100 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-03-19 15:18:49 +0100 |
commit | 2109e57ebcccc802c906de63d50164c9f9952caa (patch) | |
tree | f618200bfea34951ea4b7ebeb60e38ecd7cd0a3b /x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild | |
parent | dev-python/colorama: Version bump to 0.3.7 (diff) | |
download | gentoo-2109e57ebcccc802c906de63d50164c9f9952caa.tar.gz gentoo-2109e57ebcccc802c906de63d50164c9f9952caa.tar.bz2 gentoo-2109e57ebcccc802c906de63d50164c9f9952caa.zip |
x11-libs/libxkbcommon: Version bump to 0.6.0
Package-Manager: portage-2.2.28
Diffstat (limited to 'x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild')
-rw-r--r-- | x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild b/x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild new file mode 100644 index 000000000000..b24928d3e630 --- /dev/null +++ b/x11-libs/libxkbcommon/libxkbcommon-0.6.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +XORG_EAUTORECONF="yes" +XORG_MULTILIB="yes" + +if [[ ${PV} = *9999* ]]; then + GIT_ECLASS="git-r3" + EXPERIMENTAL="true" + EGIT_REPO_URI="git://github.com/xkbcommon/${PN}" +else + XORG_BASE_INDIVIDUAL_URI="" + SRC_URI="http://xkbcommon.org/download/${P}.tar.xz" +fi + +inherit xorg-2 ${GIT_ECLASS} + +DESCRIPTION="X.Org xkbcommon library" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="X doc test" + +DEPEND="sys-devel/bison + sys-devel/flex + X? ( >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb] ) + >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}] + >=x11-proto/kbproto-1.0.6-r1[${MULTILIB_USEDEP}] + doc? ( app-doc/doxygen )" +RDEPEND="" + +pkg_setup() { + XORG_CONFIGURE_OPTIONS=( + --with-xkb-config-root="${EPREFIX}/usr/share/X11/xkb" + $(use X || use_enable X x11) + $(use_with doc doxygen) + ) + xorg-2_pkg_setup +} |