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-util/glade/
Date: Fri, 14 Aug 2020 20:45:23
Message-Id: 1597437901.fa84d1d54566598a297f8c9667744c3a4f969024.leio@gentoo
1 commit: fa84d1d54566598a297f8c9667744c3a4f969024
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 14 20:38:09 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 14 20:45:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa84d1d5
7
8 dev-util/glade: bump to 3.36.0
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 dev-util/glade/Manifest | 1 +
14 dev-util/glade/glade-3.36.0.ebuild | 91 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 92 insertions(+)
16
17 diff --git a/dev-util/glade/Manifest b/dev-util/glade/Manifest
18 index 2ba3fd1c6e8..5306dcf6e7e 100644
19 --- a/dev-util/glade/Manifest
20 +++ b/dev-util/glade/Manifest
21 @@ -1 +1,2 @@
22 DIST glade-3.22.2.tar.xz 3550008 BLAKE2B e1217e221b36938937c57ae465a3707eeadc52bc9127b3af2fb6514e572676e3e284811d5332876dce110fd321e2bb33b9ac8b0afbd97dd747725eb73309dc15 SHA512 cb82684423ae055bc8e84a8705529ecdc72957563f444633c2c5c24a922130de84c212537323b6ed259f0e29349b52dff608822610b87babb8fc3cb468a5f4b0
23 +DIST glade-3.36.0.tar.xz 4466808 BLAKE2B ebc93c9471225782bcbcbafc4a475638e77ad763d607188d95e8ac77b3de70f76fefe963027bb6b32ae71adeb1daafdb1a2c98363b25030d83f20f767613f68e SHA512 c984613ade26e3fe68a700a48cccadf5ac96eb716a6e90aad36f3de684faeb607d9aaf112d74a048cd33e222a02388ee6583ca915648486f0259cc805e16d243
24
25 diff --git a/dev-util/glade/glade-3.36.0.ebuild b/dev-util/glade/glade-3.36.0.ebuild
26 new file mode 100644
27 index 00000000000..57e88a13c23
28 --- /dev/null
29 +++ b/dev-util/glade/glade-3.36.0.ebuild
30 @@ -0,0 +1,91 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GNOME2_LA_PUNT="yes"
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit gnome2 python-single-r1 virtualx
39 +
40 +DESCRIPTION="A user interface designer for GTK+ and GNOME"
41 +HOMEPAGE="https://glade.gnome.org/"
42 +
43 +LICENSE="GPL-2+ FDL-1.1+"
44 +SLOT="3.10/12" # subslot = suffix of libgladeui-2.so
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
46 +
47 +IUSE="+introspection python webkit"
48 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
49 +
50 +RDEPEND="
51 + dev-libs/atk[introspection?]
52 + >=dev-libs/glib-2.53.2:2
53 + >=dev-libs/libxml2-2.4.0:2
54 + x11-libs/cairo:=
55 + x11-libs/gdk-pixbuf:2[introspection?]
56 + >=x11-libs/gtk+-3.22.0:3[introspection?]
57 + x11-libs/pango[introspection?]
58 + introspection? ( >=dev-libs/gobject-introspection-1.32:= )
59 + python? (
60 + ${PYTHON_DEPS}
61 + x11-libs/gtk+:3[introspection]
62 + $(python_gen_cond_dep '
63 + >=dev-python/pygobject-3.8:3[${PYTHON_MULTI_USEDEP}]
64 + ')
65 + )
66 + webkit? ( >=net-libs/webkit-gtk-2.12.0:4 )
67 +"
68 +DEPEND="${RDEPEND}
69 + app-text/docbook-xml-dtd:4.1.2
70 + dev-libs/libxslt
71 + >=dev-util/gtk-doc-am-1.13
72 + dev-util/itstool
73 + >=sys-devel/gettext-0.19.8
74 + virtual/pkgconfig
75 +"
76 +# eautoreconf requires:
77 +# app-text/yelp-tools
78 +# dev-libs/gobject-introspection-common
79 +# gnome-base/gnome-common
80 +
81 +RESTRICT="test" # https://gitlab.gnome.org/GNOME/glade/issues/333
82 +
83 +PATCHES=(
84 + # To avoid file collison with other slots, rename help module.
85 + # Prevent the UI from loading glade:3's gladeui devhelp documentation.
86 + "${FILESDIR}"/${PN}-3.14.1-doc-version.patch
87 +)
88 +
89 +pkg_setup() {
90 + use python && python-single-r1_pkg_setup
91 +}
92 +
93 +src_configure() {
94 + gnome2_src_configure \
95 + --disable-static \
96 + --disable-debug \
97 + --enable-gladeui \
98 + --enable-libtool-lock \
99 + $(use_enable introspection) \
100 + $(use_enable python) \
101 + $(use_enable webkit webkit2gtk)
102 +}
103 +
104 +src_test() {
105 + virtx emake check
106 +}
107 +
108 +src_install() {
109 + # modify name in .devhelp2 file to avoid shadowing with glade:3 docs
110 + sed -e 's:name="gladeui":name="gladeui-2":' \
111 + -i doc/html/gladeui.devhelp2 || die "sed of gladeui.devhelp2 failed"
112 + gnome2_src_install
113 +}
114 +
115 +pkg_postinst() {
116 + gnome2_pkg_postinst
117 + if ! has_version dev-util/devhelp ; then
118 + elog "You may want to install dev-util/devhelp for integration API"
119 + elog "documentation support."
120 + fi
121 +}