diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2016-11-01 18:29:43 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2016-11-01 18:30:38 +0100 |
commit | bba5fdba124631038a7a3e7b0b220d1957b06674 (patch) | |
tree | 179bfb41a9a0f2daa285f82b173f1f05588c4c97 /app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild | |
parent | app-accessibility/at-spi2-core: version bump 2.20.2 → 2.22.0 (diff) | |
download | gentoo-bba5fdba124631038a7a3e7b0b220d1957b06674.tar.gz gentoo-bba5fdba124631038a7a3e7b0b220d1957b06674.tar.bz2 gentoo-bba5fdba124631038a7a3e7b0b220d1957b06674.zip |
app-accessibility/at-spi2-atk: version bump 2.20.1 → 2.22.0
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild')
-rw-r--r-- | app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild b/app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild new file mode 100644 index 000000000000..e848c4f717db --- /dev/null +++ b/app-accessibility/at-spi2-atk/at-spi2-atk-2.22.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +GNOME2_LA_PUNT="yes" + +inherit gnome2 multilib-minimal + +DESCRIPTION="Gtk module for bridging AT-SPI to Atk" +HOMEPAGE="https://wiki.gnome.org/Accessibility" + +LICENSE="LGPL-2+" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="test" + +COMMON_DEPEND=" + >=app-accessibility/at-spi2-core-2.17.90[${MULTILIB_USEDEP}] + >=dev-libs/atk-2.15.4[${MULTILIB_USEDEP}] + >=dev-libs/glib-2.32:2[${MULTILIB_USEDEP}] + >=sys-apps/dbus-1.5[${MULTILIB_USEDEP}] +" +RDEPEND="${COMMON_DEPEND} + !<gnome-extra/at-spi-1.32.0-r1 +" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig[${MULTILIB_USEDEP}] + test? ( >=dev-libs/libxml2-2.9.1 ) +" + +src_prepare() { + # Upstream forgot to put this in tarball, upstream #770615 + cp -n "${FILESDIR}"/${PN}-2.20.0-tests-data/*.xml "${S}"/tests/data/ || die + + gnome2_src_prepare +} + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + gnome2_src_configure --enable-p2p $(use_with test tests) +} + +multilib_src_test() { + emake check TESTS_ENVIRONMENT="dbus-run-session" +} + +multilib_src_compile() { gnome2_src_compile; } +multilib_src_install() { gnome2_src_install; } |