Gentoo Archives: gentoo-commits

From: Dennis Lamm <expeditioneer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/
Date: Mon, 04 Feb 2019 19:37:22
Message-Id: 1549309000.089d5f82349c520157450cc4b80c8d3c3e4b7e7c.expeditioneer@gentoo
1 commit: 089d5f82349c520157450cc4b80c8d3c3e4b7e7c
2 Author: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 4 19:36:40 2019 +0000
4 Commit: Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 4 19:36:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=089d5f82
7
8 gnome-extra/libgsf: version bump
9
10 Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
11
12 gnome-extra/libgsf/Manifest | 1 +
13 gnome-extra/libgsf/libgsf-1.14.45.ebuild | 39 ++++++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
17 index e097abb676c..5a4594eb650 100644
18 --- a/gnome-extra/libgsf/Manifest
19 +++ b/gnome-extra/libgsf/Manifest
20 @@ -1 +1,2 @@
21 DIST libgsf-1.14.43.tar.xz 618272 BLAKE2B a381125ce75d06ae4bf1c9dbe9b2e207534ff7c3310e40984e482bc5120eae45a7e3ed4cfd878890037f31ee540c700dea3120119b9a533fa79cab317a0c83a8 SHA512 bb487de9358c057fc73f3414c9515726315be9b6d78456253daaca1cbd58281de8766e0b72914532d63fab04d3ae2cf90f711f436c7b4f70620d77e8a7802ac9
22 +DIST libgsf-1.14.45.tar.xz 618476 BLAKE2B f577859578de6ca359a7377dcced424e95779d3fd155cdbeb1c2874f7a0d0c7a09a2322d2538452b48798ea979e8260be77215140f298dc58ee32a0b9ead0e47 SHA512 2e993150b6fec336a14fd85d5c631e4a3b43187039dab0cba3b8badf62873f39814392db92bb737b92aa9a6d8b4ba41f1fb248c1fe07b88cddd28ded5e4d9ebd
23
24 diff --git a/gnome-extra/libgsf/libgsf-1.14.45.ebuild b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
25 new file mode 100644
26 index 00000000000..331e37c8781
27 --- /dev/null
28 +++ b/gnome-extra/libgsf/libgsf-1.14.45.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit gnome2
35 +
36 +DESCRIPTION="The GNOME Structured File Library"
37 +HOMEPAGE="https://developer.gnome.org/gsf/"
38 +
39 +LICENSE="GPL-2 LGPL-2.1"
40 +SLOT="0/114" # libgsf-1.so version
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
42 +IUSE="bzip2 gtk +introspection"
43 +
44 +RDEPEND="
45 + >=dev-libs/glib-2.26:2
46 + >=dev-libs/libxml2-2.4.16:2
47 + sys-libs/zlib
48 + bzip2? ( app-arch/bzip2 )
49 + gtk? (
50 + x11-libs/gdk-pixbuf:2
51 + virtual/imagemagick-tools
52 + )
53 + introspection? ( >=dev-libs/gobject-introspection-1:= )
54 +"
55 +DEPEND="${RDEPEND}
56 + >=dev-util/gtk-doc-am-1.12
57 + >=dev-util/intltool-0.35.0
58 + dev-libs/gobject-introspection-common
59 + virtual/pkgconfig
60 +"
61 +
62 +src_configure() {
63 + gnome2_src_configure \
64 + --disable-static \
65 + $(use_with bzip2 bz2) \
66 + $(use_enable introspection) \
67 + $(use_with gtk gdk-pixbuf)
68 +}