diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-27 16:00:03 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-27 16:00:03 +0000 |
commit | 42595b35a314c8e870d4f3ed9167e61ad865c91b (patch) | |
tree | 5aaf8b8f24b4bea6e4b859e7637de95d243f3f76 /dev-libs/atk | |
parent | Drop unused USE flag description (diff) | |
download | gentoo-2-42595b35a314c8e870d4f3ed9167e61ad865c91b.tar.gz gentoo-2-42595b35a314c8e870d4f3ed9167e61ad865c91b.tar.bz2 gentoo-2-42595b35a314c8e870d4f3ed9167e61ad865c91b.zip |
Version bump for Gnome 3.12.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'dev-libs/atk')
-rw-r--r-- | dev-libs/atk/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/atk/atk-2.12.0.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-libs/atk/ChangeLog b/dev-libs/atk/ChangeLog index 565cfe81fc3f..999bacc43241 100644 --- a/dev-libs/atk/ChangeLog +++ b/dev-libs/atk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/atk # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.284 2014/04/25 18:55:21 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/ChangeLog,v 1.285 2014/04/27 16:00:03 eva Exp $ + +*atk-2.12.0 (27 Apr 2014) + + 27 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> +atk-2.12.0.ebuild: + Version bump for Gnome 3.12. 25 Apr 2014; Pacho Ramos <pacho@gentoo.org> -atk-2.6.0.ebuild, -atk-2.8.0.ebuild: diff --git a/dev-libs/atk/atk-2.12.0.ebuild b/dev-libs/atk/atk-2.12.0.ebuild new file mode 100644 index 000000000000..4094f42483ef --- /dev/null +++ b/dev-libs/atk/atk-2.12.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-2.12.0.ebuild,v 1.1 2014/04/27 16:00:03 eva Exp $ + +EAPI="5" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="GTK+ & GNOME Accessibility Toolkit" +HOMEPAGE="http://projects.gnome.org/accessibility/" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="+introspection nls test" + +RDEPEND=" + >=dev-libs/glib-2.31.2:2 + introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) +" +DEPEND="${RDEPEND} + >=dev-lang/perl-5 + dev-util/gtk-doc-am + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" + +src_prepare() { + gnome2_src_prepare + + if ! use test; then + # don't waste time building tests (bug #226353) + sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \ + || die "sed failed" + fi +} + +src_configure() { + gnome2_src_configure $(use_enable introspection) +} |