Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/atk/
Date: Thu, 30 Aug 2018 20:50:45
Message-Id: 1535662214.07ada1db9106b2d18fa178a0a070c74aa6b88b36.leio@gentoo
1 commit: 07ada1db9106b2d18fa178a0a070c74aa6b88b36
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 30 19:39:11 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 30 20:50:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07ada1db
7
8 dev-libs/atk: bump to 2.28.1
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 dev-libs/atk/Manifest | 1 +
13 dev-libs/atk/atk-2.28.1.ebuild | 53 ++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-libs/atk/Manifest b/dev-libs/atk/Manifest
17 index d0d6cace521..84f17d6bbfc 100644
18 --- a/dev-libs/atk/Manifest
19 +++ b/dev-libs/atk/Manifest
20 @@ -1,2 +1,3 @@
21 DIST atk-2.22.0.tar.xz 745572 BLAKE2B 4764a6044446de8e08b54c47400727268ca68e676aa36c01877f2b3f973614a40f209406b649f0e96f4a5b75be883ce67ac3fbf20ac0c58adfbaf3509caac312 SHA512 af3f6197eb97de869ee706f19564449b02c1444c413e5418323e4bf4c8cf1d98c7c8baa25189f6879d63606d4bc75f33799cb901f4697c087e868bb9a5643cba
22 DIST atk-2.24.0.tar.xz 748972 BLAKE2B f9db7e35322cf4a1df5171c812c83eb935ba44b0167b20ca9a951109c00911392a48db88fac02a12074de4d9f458656f946e8bb7611e1d11cc0de841986f8cc7 SHA512 3ae0a4d5f28d5619d465135c685161f690732053bcb70a47669c951fbf389b5d2ccc5c7c73d4ee8c5a3b2df14e2f5b082e812a215f10a79b27b412d077f5e962
23 +DIST atk-2.28.1.tar.xz 712508 BLAKE2B 71aee8bc937e1e37d40e6a9820d0002bcc763dbf87385ede2484ec6fe17a9924d5753d74dc3a769602746c915d0c46da8eea78cc80c706e3c38faca2e5050364 SHA512 aa61e7718b3f4d9c33ec2b4747e35f894a51550ef39ecc4a7af5705811c029645bd3c728071f446b075a0b7aef0c35c1b73406a210cd30171838f24a8dfc0abb
24
25 diff --git a/dev-libs/atk/atk-2.28.1.ebuild b/dev-libs/atk/atk-2.28.1.ebuild
26 new file mode 100644
27 index 00000000000..00caaa9ac80
28 --- /dev/null
29 +++ b/dev-libs/atk/atk-2.28.1.ebuild
30 @@ -0,0 +1,53 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +inherit gnome2 multilib-minimal
36 +
37 +DESCRIPTION="GTK+ & GNOME Accessibility Toolkit"
38 +HOMEPAGE="https://wiki.gnome.org/Accessibility"
39 +
40 +LICENSE="LGPL-2+"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
43 +IUSE="+introspection nls test"
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
47 + introspection? ( >=dev-libs/gobject-introspection-1.32.0:= )
48 +"
49 +DEPEND="${RDEPEND}
50 + >=dev-lang/perl-5
51 + dev-util/glib-utils
52 + >=dev-util/gtk-doc-am-1.25
53 + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
54 + nls? ( >=sys-devel/gettext-0.19.2 )
55 +"
56 +
57 +src_prepare() {
58 + gnome2_src_prepare
59 +
60 + if ! use test; then
61 + # don't waste time building tests (bug #226353)
62 + sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
63 + || die "sed failed"
64 + fi
65 +
66 + # Building out of sources fails, https://bugzilla.gnome.org/show_bug.cgi?id=752507
67 + multilib_copy_sources
68 +}
69 +
70 +multilib_src_configure() {
71 +# ECONF_SOURCE=${S} \
72 + gnome2_src_configure \
73 + $(multilib_native_use_enable introspection)
74 +
75 + # work-around gtk-doc out-of-source brokedness
76 +# if multilib_is_native_abi; then
77 +# ln -s "${S}"/docs/html docs/html || die
78 +# fi
79 +}
80 +
81 +multilib_src_install() {
82 + gnome2_src_install
83 +}