diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-03-28 16:24:06 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-03-28 16:24:06 +0000 |
commit | e2bfde23afb235c7031786bf507610fa5669cdb9 (patch) | |
tree | 264d10d53af48ec0d53063dbd354fa14a0a09029 /app-accessibility | |
parent | Fix mask entry (diff) | |
download | gentoo-2-e2bfde23afb235c7031786bf507610fa5669cdb9.tar.gz gentoo-2-e2bfde23afb235c7031786bf507610fa5669cdb9.tar.bz2 gentoo-2-e2bfde23afb235c7031786bf507610fa5669cdb9.zip |
Version bump for Gnome 3.8
(Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/at-spi2-core/ChangeLog | 7 | ||||
-rw-r--r-- | app-accessibility/at-spi2-core/at-spi2-core-2.8.0.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/app-accessibility/at-spi2-core/ChangeLog b/app-accessibility/at-spi2-core/ChangeLog index 12f035e42a81..8e1296dfe34c 100644 --- a/app-accessibility/at-spi2-core/ChangeLog +++ b/app-accessibility/at-spi2-core/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/at-spi2-core # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog,v 1.39 2013/03/28 15:45:26 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/ChangeLog,v 1.40 2013/03/28 16:24:06 pacho Exp $ + +*at-spi2-core-2.8.0 (28 Mar 2013) + + 28 Mar 2013; Pacho Ramos <pacho@gentoo.org> +at-spi2-core-2.8.0.ebuild: + Version bump for Gnome 3.8 28 Mar 2013; Agostino Sarubbo <ago@gentoo.org> at-spi2-core-2.6.3.ebuild: Stable for arm, wrt bug #458984 diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.8.0.ebuild b/app-accessibility/at-spi2-core/at-spi2-core-2.8.0.ebuild new file mode 100644 index 000000000000..ec7fb8782dc8 --- /dev/null +++ b/app-accessibility/at-spi2-core/at-spi2-core-2.8.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/at-spi2-core/at-spi2-core-2.8.0.ebuild,v 1.1 2013/03/28 16:24:06 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit eutils gnome2 + +DESCRIPTION="D-Bus accessibility specifications and registration daemon" +HOMEPAGE="http://live.gnome.org/Accessibility" + +LICENSE="LGPL-2+" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +IUSE="+introspection" + +RDEPEND=">=dev-libs/glib-2.28:2 + >=sys-apps/dbus-1 + x11-libs/libX11 + x11-libs/libXi + x11-libs/libXtst + introspection? ( >=dev-libs/gobject-introspection-0.9.6 ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.9 + >=dev-util/intltool-0.40 + virtual/pkgconfig +" + +src_prepare() { + # xevie is deprecated/broken since xorg-1.6/1.7 + G2CONF="${G2CONF} + --disable-xevie + $(use_enable introspection)" + + # disable teamspaces test since that requires Novell.ICEDesktop.Daemon + epatch "${FILESDIR}/${PN}-2.0.2-disable-teamspaces-test.patch" + + gnome2_src_prepare +} |