Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/
Date: Sat, 25 Jun 2016 19:13:32
Message-Id: 1466881989.03f19b3db6c955590510ca6edf11e0301f2dbb03.pacho@gentoo
1 commit: 03f19b3db6c955590510ca6edf11e0301f2dbb03
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 19:04:55 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 19:13:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f19b3d
7
8 gnome-extra/libgsf: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 gnome-extra/libgsf/Manifest | 1 +
13 gnome-extra/libgsf/libgsf-1.14.37.ebuild | 40 ++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
17 index d65501e..895348e 100644
18 --- a/gnome-extra/libgsf/Manifest
19 +++ b/gnome-extra/libgsf/Manifest
20 @@ -1,2 +1,3 @@
21 DIST libgsf-1.14.34.tar.xz 609880 SHA256 f0fea447e0374a73df45b498fd1701393f8e6acb39746119f8a292fb4a0cb528 SHA512 9a9fbb178147ed80572a8e727b1d3ba1f305c12c6a3b151016daf7eb51b7bf75b30d3397070ce98d6e83acf9617b15eb281fa976df291ab894119d2647826532 WHIRLPOOL c998d25adf0898b65219a9fe78075f8123a448e079fb167acc61b3cbe9093dcb2d9867a48d9d544b3a7b838a41559a3eac1b88e204294d56e49191f3d16f8e48
22 DIST libgsf-1.14.36.tar.xz 609764 SHA256 71b7507f86c0f7c341bb362bdc7925a2ae286729be0bf5b8fd9581ffbbd62940 SHA512 ca0345fa4190df4d392e7cf71187d2f3b0c4bbe2312f18c076f1a9fa90e7803a754cec9a7df3da9cd00ded800eb4ad78e7acb099350dcf44c35181cddade7a85 WHIRLPOOL e99ea9a087aad127c469d353c3632d75e98a12045c8e198bb02280991ad6970b0198654ab525dd067e038caba75e710a2203868463900aa409bae332c797b8d2
23 +DIST libgsf-1.14.37.tar.xz 611476 SHA256 9cfb98224b40fefa85606255ee194d58c38f129bf99443d759eaab7eb6dec055 SHA512 0e05f14e2ecaa6ce47c2f166e48cc603f40a7d125080f05cf670c437fad770f112be88ed102069448cc5c0d24767dfff6fa6ccfb73040d9cde55b4768f098c4c WHIRLPOOL fcc6a6eb23a0101dadc99be36b4e3ed8f42087567df31f7452256e1f4f0de4767559d1affa7bb0028f96b3a0f61af2a9fd20141e1977c59d85ccec9ba041f952
24
25 diff --git a/gnome-extra/libgsf/libgsf-1.14.37.ebuild b/gnome-extra/libgsf/libgsf-1.14.37.ebuild
26 new file mode 100644
27 index 0000000..0a6832a
28 --- /dev/null
29 +++ b/gnome-extra/libgsf/libgsf-1.14.37.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +inherit gnome2
37 +
38 +DESCRIPTION="The GNOME Structured File Library"
39 +HOMEPAGE="https://developer.gnome.org/gsf/"
40 +
41 +LICENSE="GPL-2 LGPL-2.1"
42 +SLOT="0/114" # libgsf-1.so version
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
44 +IUSE="bzip2 gtk +introspection"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.26:2
48 + >=dev-libs/libxml2-2.4.16:2
49 + sys-libs/zlib
50 + bzip2? ( app-arch/bzip2 )
51 + gtk? (
52 + x11-libs/gdk-pixbuf:2
53 + || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
54 + )
55 + introspection? ( >=dev-libs/gobject-introspection-1:= )
56 +"
57 +DEPEND="${RDEPEND}
58 + >=dev-util/gtk-doc-am-1.12
59 + >=dev-util/intltool-0.35.0
60 + dev-libs/gobject-introspection-common
61 + virtual/pkgconfig
62 +"
63 +
64 +src_configure() {
65 + gnome2_src_configure \
66 + --disable-static \
67 + $(use_with bzip2 bz2) \
68 + $(use_enable introspection) \
69 + $(use_with gtk gdk-pixbuf)
70 +}