Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/gnome-dictionary/
Date: Fri, 07 Dec 2018 19:05:36
Message-Id: 1544209452.db0f62bd42b5f955a5ccef6f3d8dfaa5f0d75653.leio@gentoo
1 commit: db0f62bd42b5f955a5ccef6f3d8dfaa5f0d75653
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 7 17:08:21 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 7 19:04:12 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0f62bd
7
8 app-dicts/gnome-dictionary: bump to 3.26.1
9
10 Does not provide a public libgdict anymore; only remaining
11 consumer was an old gtranslator version.
12
13 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
14 Package-Manager: Portage-2.3.52, Repoman-2.3.11
15
16 app-dicts/gnome-dictionary/Manifest | 1 +
17 .../gnome-dictionary-3.26.1.ebuild | 48 ++++++++++++++++++++++
18 2 files changed, 49 insertions(+)
19
20 diff --git a/app-dicts/gnome-dictionary/Manifest b/app-dicts/gnome-dictionary/Manifest
21 index 308dc357594..691aebe1768 100644
22 --- a/app-dicts/gnome-dictionary/Manifest
23 +++ b/app-dicts/gnome-dictionary/Manifest
24 @@ -1 +1,2 @@
25 DIST gnome-dictionary-3.24.1.tar.xz 880500 BLAKE2B f730276612d2578e7b25121b49be9639cf7a9fc67bda9687285f6d3873d3b825301246447d968b24ed29240a1b0e7fc48d63c8454e704b799eebdf340f5f6da2 SHA512 b3ee838888a97e914add58dd4b61fa096b9488aab360815f2e7b674e7a57b237849a1ccaf107c1e94968e534b24ee24d827c42a3a1b0dfd8c5ef25eeb90456d3
26 +DIST gnome-dictionary-3.26.1.tar.xz 662048 BLAKE2B 3b77d3632629f8502476f029ab9ba3c66225cd619992e185b1403adfeba718b7e0fa0f32762eb086c1e9ef80a08cf79cd872e2ca3026b8cb3975954077c5f7c1 SHA512 da7169795740295c13f02143f5263603f0f6c621e96cecf88a4ee089114399d59f083987bc4571821467da64dc43f00bebbe4ea66b46a035088f85d35d6aee27
27
28 diff --git a/app-dicts/gnome-dictionary/gnome-dictionary-3.26.1.ebuild b/app-dicts/gnome-dictionary/gnome-dictionary-3.26.1.ebuild
29 new file mode 100644
30 index 00000000000..d5ced459001
31 --- /dev/null
32 +++ b/app-dicts/gnome-dictionary/gnome-dictionary-3.26.1.ebuild
33 @@ -0,0 +1,48 @@
34 +# Copyright 1999-2018 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +inherit gnome.org gnome2-utils meson xdg
39 +
40 +DESCRIPTION="Dictionary utility for GNOME"
41 +HOMEPAGE="https://wiki.gnome.org/Apps/Dictionary"
42 +
43 +LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
44 +SLOT="0" # does not provide a public libgdict-1.0.so anymore
45 +IUSE="ipv6"
46 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
47 +
48 +COMMON_DEPEND="
49 + >=dev-libs/glib-2.42:2
50 + >=x11-libs/gtk+-3.21.2:3
51 +"
52 +RDEPEND="${COMMON_DEPEND}
53 + gnome-base/gsettings-desktop-schemas
54 +"
55 +DEPEND="${COMMON_DEPEND}
56 + app-text/docbook-xsl-stylesheets
57 + app-text/docbook-xml-dtd:4.3
58 + dev-libs/libxslt
59 + dev-util/glib-utils
60 + dev-util/itstool
61 + >=sys-devel/gettext-0.19.8
62 + virtual/pkgconfig
63 +"
64 +
65 +src_configure() {
66 + local emesonargs=(
67 + $(meson_use ipv6 use_ipv6)
68 + -Dbuild_man=true
69 + )
70 + meson_src_configure
71 +}
72 +
73 +pkg_postinst() {
74 + xdg_pkg_postinst
75 + gnome2_schemas_update
76 +}
77 +
78 +pkg_postrm() {
79 + xdg_pkg_postrm
80 + gnome2_schemas_update
81 +}