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 DAB61198003 for ; Fri, 8 Mar 2013 14:39:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 671C0E06FC; Fri, 8 Mar 2013 14:39:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF7EAE06FC for ; Fri, 8 Mar 2013 14:39:46 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DEB7733DF40 for ; Fri, 8 Mar 2013 14:39:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7F007E408F for ; Fri, 8 Mar 2013 14:39:44 +0000 (UTC) From: "Priit Laes" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Priit Laes" Message-ID: <1362753193.b718fd53d38bef21ae4f7692c1ccf18ad9581b7f.plaes@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: dev-libs/atk/ X-VCS-Repository: proj/gnome X-VCS-Files: dev-libs/atk/atk-2.7.91.ebuild X-VCS-Directories: dev-libs/atk/ X-VCS-Committer: plaes X-VCS-Committer-Name: Priit Laes X-VCS-Revision: b718fd53d38bef21ae4f7692c1ccf18ad9581b7f X-VCS-Branch: master Date: Fri, 8 Mar 2013 14:39:44 +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: d38179a0-25b5-47dc-831d-829ea5b2b93a X-Archives-Hash: fb758cfbf23902310fe64da214023058 commit: b718fd53d38bef21ae4f7692c1ccf18ad9581b7f Author: Priit Laes plaes org> AuthorDate: Fri Mar 8 14:33:13 2013 +0000 Commit: Priit Laes plaes org> CommitDate: Fri Mar 8 14:33:13 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b718fd53 dev-libs/atk: Add 2.7.91 to overlay --- dev-libs/atk/atk-2.7.91.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/dev-libs/atk/atk-2.7.91.ebuild b/dev-libs/atk/atk-2.7.91.ebuild new file mode 100644 index 0000000..b716eac --- /dev/null +++ b/dev-libs/atk/atk-2.7.91.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +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" + +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() { + G2CONF="${G2CONF} $(use_enable introspection)" + DOCS="AUTHORS ChangeLog NEWS README" + + 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 +}