From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ED4DF138CD3 for ; Tue, 9 Jun 2015 13:49:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 606EBE07D8; Tue, 9 Jun 2015 13:49:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82FAEE082D for ; Tue, 9 Jun 2015 13:49:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D3330340A15 for ; Tue, 9 Jun 2015 13:48:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CB54A31 for ; Tue, 9 Jun 2015 13:48:58 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1433857722.2978a7a3133237e830351be39673cb49d61b6b7b.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: app-accessibility/at-spi2-core/ X-VCS-Repository: proj/gnome X-VCS-Files: app-accessibility/at-spi2-core/at-spi2-core-2.16.0.ebuild X-VCS-Directories: app-accessibility/at-spi2-core/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 2978a7a3133237e830351be39673cb49d61b6b7b X-VCS-Branch: master Date: Tue, 9 Jun 2015 13:48:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 795ad426-9462-4e7c-81cf-9ebc8e8d2387 X-Archives-Hash: aa515157312290702da9c8e78048118f commit: 2978a7a3133237e830351be39673cb49d61b6b7b Author: Gilles Dartiguelongue gentoo org> AuthorDate: Tue Jun 9 09:52:26 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Tue Jun 9 13:48:42 2015 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=2978a7a3 app-accessibility/at-spi2-core: moved to gentoo-x86 .../at-spi2-core/at-spi2-core-2.16.0.ebuild | 65 ---------------------- 1 file changed, 65 deletions(-) diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.16.0.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.16.0.ebuild deleted file mode 100644 index 56c504a..0000000 --- a/app-accessibility/at-spi2-core/at-spi2-core-2.16.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" - -inherit eutils gnome2 multilib-minimal - -DESCRIPTION="D-Bus accessibility specifications and registration daemon" -HOMEPAGE="http://live.gnome.org/Accessibility" - -LICENSE="LGPL-2+" -SLOT="2" -IUSE="+X +introspection" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos" - -# x11-libs/libSM is needed until upstream #719808 is solved either -# making the dep unneeded or fixing their configure -# Only libX11 is optional right now -COMMON_DEPEND=" - >=dev-libs/glib-2.36:2[${MULTILIB_USEDEP}] - >=sys-apps/dbus-1[${MULTILIB_USEDEP}] - x11-libs/libSM[${MULTILIB_USEDEP}] - x11-libs/libXi[${MULTILIB_USEDEP}] - x11-libs/libXtst[${MULTILIB_USEDEP}] - introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) - X? ( x11-libs/libX11[${MULTILIB_USEDEP}] ) -" -RDEPEND="${COMMON_DEPEND} - abi_x86_32? ( - !<=app-emulation/emul-linux-x86-gtklibs-20140508-r3 - !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] - ) -" -DEPEND="${COMMON_DEPEND} - >=dev-util/gtk-doc-am-1.9 - >=dev-util/intltool-0.40 - virtual/pkgconfig[${MULTILIB_USEDEP}] -" - -src_prepare() { - # disable teamspaces test since that requires Novell.ICEDesktop.Daemon - epatch "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch" - - gnome2_src_prepare -} - -multilib_src_configure() { - # xevie is deprecated/broken since xorg-1.6/1.7 - ECONF_SOURCE=${S} \ - gnome2_src_configure \ - --disable-xevie \ - $(multilib_native_use_enable introspection) \ - $(use_enable X x11) - - # work-around gtk-doc out-of-source brokedness - if multilib_is_native_abi; then - ln -s "${S}"/doc/libatspi/html doc/libatspi/html || die - fi -} - -multilib_src_compile() { gnome2_src_compile; } -multilib_src_install() { gnome2_src_install; }