diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2024-02-15 16:57:44 -0300 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2024-02-17 17:55:35 +0200 |
commit | e1fc9634dd70bbaa6e69fd1678165cf1f5fcf950 (patch) | |
tree | 987af862ab5ad60ce25f1fa8372ab095a654677f /x11-libs/goffice | |
parent | dev-ml/time_now: update maintainers (diff) | |
download | gentoo-e1fc9634dd70bbaa6e69fd1678165cf1f5fcf950.tar.gz gentoo-e1fc9634dd70bbaa6e69fd1678165cf1f5fcf950.tar.bz2 gentoo-e1fc9634dd70bbaa6e69fd1678165cf1f5fcf950.zip |
x11-libs/goffice: Version bump to 0.10.57
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35354
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'x11-libs/goffice')
-rw-r--r-- | x11-libs/goffice/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/goffice/goffice-0.10.57.ebuild | 64 |
2 files changed, 65 insertions, 0 deletions
diff --git a/x11-libs/goffice/Manifest b/x11-libs/goffice/Manifest index 81175304f158..835e330b2366 100644 --- a/x11-libs/goffice/Manifest +++ b/x11-libs/goffice/Manifest @@ -1,2 +1,3 @@ DIST goffice-0.10.55.tar.xz 2455576 BLAKE2B 6a1a4670293e0d91c456b3ec162f92f373eeea218d4b4268ae4809b8157cefa4f3d89f3f8555ee2fd3db84fb5adcd0e4119f0e2f6c79cbd4e86d27a46c9ea726 SHA512 c49eec867e4147102b54b70847b495cad0e55fcb069c78a8374760121219b9097c1dfb5601b240e92ed68a6fb785ab5e771f7c579dd138e106ee25a1b9ddfe99 DIST goffice-0.10.56.tar.xz 2495240 BLAKE2B 3b6956a7fda37caf679e085faa8d34821c132e6e8cc12cb859cf03e5c8a99afbeb7952b0fcf5b184df8cb6225fe99828ee1f24d5360f480ce793a5d8de44bedb SHA512 5088a14057738452effa76920c7e0bfe9a45bae2f798f18f035225738c1da2fd79a0c6e84bb83507108b5438160a839fa26d792a877da37b1cf416c3af85ed9d +DIST goffice-0.10.57.tar.xz 2518848 BLAKE2B d513722cf882d3fb320b2b60830027bf9d393c4032ac6d88305ba08af0effa070f74301911d8b28392a2490a0c0b5cf394d5d0cf73f1ccb79a81dc47789aa99a SHA512 be5a9f269dc8d1177df5a98b2294cf2344548eb7512c8937682eaabb09f6dce700b66990552e3ba6e1c8bc58f3d748136c63f5011da048ec1d415ef547f76dfc diff --git a/x11-libs/goffice/goffice-0.10.57.ebuild b/x11-libs/goffice/goffice-0.10.57.ebuild new file mode 100644 index 000000000000..026fad22846d --- /dev/null +++ b/x11-libs/goffice/goffice-0.10.57.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gnome.org libtool + +DESCRIPTION="A library of document-centric objects and utilities" +HOMEPAGE="https://gitlab.gnome.org/GNOME/goffice/" + +LICENSE="GPL-2" +SLOT="0.10" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris" +IUSE="+introspection" + +# FIXME: add lasem to tree +RDEPEND=" + >=app-text/libspectre-0.2.6:= + >=dev-libs/glib-2.40.0:2 + >=dev-libs/libxml2-2.4.12:2 + dev-libs/libxslt + >=gnome-base/librsvg-2.22:2 + >=gnome-extra/libgsf-1.14.24:=[introspection?] + >=x11-libs/cairo-1.10:=[svg(+)] + >=x11-libs/gdk-pixbuf-2.22:2 + >=x11-libs/gtk+-3.20:3 + >=x11-libs/pango-1.24:= + x11-libs/libXext:= + x11-libs/libXrender:= + introspection? ( + >=dev-libs/gobject-introspection-1:= + >=gnome-extra/libgsf-1.14.23:= + )" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-lang/perl + dev-util/glib-utils + >=dev-build/gtk-doc-am-1.12 + >=dev-util/intltool-0.35 + virtual/perl-Compress-Raw-Zlib + virtual/perl-Getopt-Long + virtual/perl-IO-Compress + virtual/pkgconfig" + +src_prepare() { + default + elibtoolize +} + +src_configure() { + econf \ + --disable-gtk-doc \ + --disable-maintainer-mode \ + --without-lasem \ + --with-gtk \ + --with-config-backend=gsettings \ + $(use_enable introspection) +} + +src_install() { + default + dodoc MAINTAINERS + + find "${ED}" -name '*.la' -delete || die +} |