Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/goffice/
Date: Thu, 22 Sep 2022 02:56:27
Message-Id: 1663815362.7d8595bc03c5910e167d4f68dae677cd6604da9d.mattst88@gentoo
1 commit: 7d8595bc03c5910e167d4f68dae677cd6604da9d
2 Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
3 AuthorDate: Wed Sep 21 14:51:18 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 02:56:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8595bc
7
8 x11-libs/goffice: bump to 0.10.53
9
10 Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
11 Closes: https://github.com/gentoo/gentoo/pull/27376
12 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
13
14 x11-libs/goffice/Manifest | 1 +
15 x11-libs/goffice/goffice-0.10.53.ebuild | 64 +++++++++++++++++++++++++++++++++
16 2 files changed, 65 insertions(+)
17
18 diff --git a/x11-libs/goffice/Manifest b/x11-libs/goffice/Manifest
19 index d959bf89a608..570ee5ede37f 100644
20 --- a/x11-libs/goffice/Manifest
21 +++ b/x11-libs/goffice/Manifest
22 @@ -1 +1,2 @@
23 DIST goffice-0.10.52.tar.xz 2436944 BLAKE2B 13c2d28cd9bd081d4636325e3df14193d5ffad913f4f9fa78251d848f293eeca5ee265058b2c9662b5bd48957b39f31714eb41469f3228359dba1923f918bea5 SHA512 8636bdfd436a0b5853aead6ecf09ae39c5059b2d9044cf04c9f2e0f4d2572aaa07e51cfd123b0dd153877d1c0d5f4af78a031d63b03c724bf1e8282d2e1cc841
24 +DIST goffice-0.10.53.tar.xz 2442336 BLAKE2B 8fda50c5d9f8223c082ea9f03334313b051bce47d18b3879c2d8a7c2bbce753f468b5135f0a3c49c54b8a695ee6f1dc355dc806c92e77f41f2d0c64b2bc30bf0 SHA512 cd2d0f49f803cb2f01b3a690bfbe3ea4be5c09e00e8ef643055f56c16549529b7c2c098b87286062d3a5048c1f64d600f74082f53710d8ed8cbb34cb6829dafd
25
26 diff --git a/x11-libs/goffice/goffice-0.10.53.ebuild b/x11-libs/goffice/goffice-0.10.53.ebuild
27 new file mode 100644
28 index 000000000000..2bcc131cd893
29 --- /dev/null
30 +++ b/x11-libs/goffice/goffice-0.10.53.ebuild
31 @@ -0,0 +1,64 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +inherit gnome.org libtool
37 +
38 +DESCRIPTION="A library of document-centric objects and utilities"
39 +HOMEPAGE="https://gitlab.gnome.org/GNOME/goffice/"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0.10"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
44 +IUSE="+introspection"
45 +
46 +# FIXME: add lasem to tree
47 +RDEPEND="
48 + >=app-text/libspectre-0.2.6:=
49 + >=dev-libs/glib-2.40.0:2
50 + >=dev-libs/libxml2-2.4.12:2
51 + dev-libs/libxslt
52 + >=gnome-base/librsvg-2.22:2
53 + >=gnome-extra/libgsf-1.14.24:=[introspection?]
54 + >=x11-libs/cairo-1.10:=[svg]
55 + >=x11-libs/gdk-pixbuf-2.22:2
56 + >=x11-libs/gtk+-3.20:3
57 + >=x11-libs/pango-1.24:=
58 + x11-libs/libXext:=
59 + x11-libs/libXrender:=
60 + introspection? (
61 + >=dev-libs/gobject-introspection-1:=
62 + >=gnome-extra/libgsf-1.14.23:=
63 + )"
64 +DEPEND="${RDEPEND}"
65 +BDEPEND="
66 + dev-lang/perl
67 + dev-util/glib-utils
68 + >=dev-util/gtk-doc-am-1.12
69 + >=dev-util/intltool-0.35
70 + virtual/perl-Compress-Raw-Zlib
71 + virtual/perl-Getopt-Long
72 + virtual/perl-IO-Compress
73 + virtual/pkgconfig"
74 +
75 +src_prepare() {
76 + default
77 + elibtoolize
78 +}
79 +
80 +src_configure() {
81 + econf \
82 + --disable-gtk-doc \
83 + --disable-maintainer-mode \
84 + --without-lasem \
85 + --with-gtk \
86 + --with-config-backend=gsettings \
87 + $(use_enable introspection)
88 +}
89 +
90 +src_install() {
91 + default
92 + dodoc MAINTAINERS
93 +
94 + find "${ED}" -name '*.la' -delete || die
95 +}