Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libgxps/
Date: Sat, 02 Jul 2016 10:43:58
Message-Id: 1467456181.6a1950fb1d9251aa59c179a78ed88e6d78e0bbfc.pacho@gentoo
1 commit: 6a1950fb1d9251aa59c179a78ed88e6d78e0bbfc
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 10:12:39 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 10:43:01 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a1950fb
7
8 app-text/libgxps: Version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 app-text/libgxps/Manifest | 1 +
13 app-text/libgxps/libgxps-0.2.4.ebuild | 49 +++++++++++++++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/app-text/libgxps/Manifest b/app-text/libgxps/Manifest
17 index a0bf7dd..c6fcf51 100644
18 --- a/app-text/libgxps/Manifest
19 +++ b/app-text/libgxps/Manifest
20 @@ -1 +1,2 @@
21 DIST libgxps-0.2.3.2.tar.xz 323060 SHA256 6ea5f0ed85665a4e6702e31e38b5f1b2e5ae4f3d316a55d7f1fb1799224b4127 SHA512 fc1f8f1a3091efaa60f29a1842e997ed72c9888b8d903b613dd0073468172a8e2d757877207ab81b155fcb3988ec975c91490c20afb4ebae1e03e0e1cc620257 WHIRLPOOL d5069483f105ae1f4e4435c5b2fce18d7175a82354d59f311a0b8582d88a13695886870ef63772d7573dbaa1fdb3c1d68c2e975437d73ec4d24b2281033af399
22 +DIST libgxps-0.2.4.tar.xz 335256 SHA256 e9d6aa02836d9d4823a51705d3e1dee6fc4bce11d72566024042cfaac56ec7a4 SHA512 3e2821931a63483281952d9818dc77295caa8a514d0a25deffd922d98a9db8ced4141cc8489781715a021af361a2e41210aad1fb773f94dff0f864f8e45d2681 WHIRLPOOL 57a7f460e5cfc449b5ca95cd2e8d658d8857b4618cf79896a5da05fbd24e5c38092392f39ef5c96e20b30e1267317ef6e9c3bfd9eada105117bd29a53dd86ebf
23
24 diff --git a/app-text/libgxps/libgxps-0.2.4.ebuild b/app-text/libgxps/libgxps-0.2.4.ebuild
25 new file mode 100644
26 index 0000000..697cf56
27 --- /dev/null
28 +++ b/app-text/libgxps/libgxps-0.2.4.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +GNOME2_LA_PUNT="yes"
36 +
37 +inherit gnome2
38 +
39 +DESCRIPTION="Library for handling and rendering XPS documents"
40 +HOMEPAGE="https://wiki.gnome.org/Projects/libgxps"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
45 +IUSE="debug +introspection jpeg lcms static-libs tiff"
46 +
47 +RDEPEND="
48 + >=app-arch/libarchive-2.8
49 + >=dev-libs/glib-2.24:2
50 + media-libs/freetype:2
51 + media-libs/libpng:0
52 + >=x11-libs/cairo-1.10[svg]
53 + introspection? ( >=dev-libs/gobject-introspection-0.10.1:= )
54 + jpeg? ( virtual/jpeg:0 )
55 + lcms? ( media-libs/lcms:2 )
56 + tiff? ( media-libs/tiff:0[zlib] )
57 +"
58 +DEPEND="${RDEPEND}
59 + app-text/docbook-xsl-stylesheets
60 + dev-libs/libxslt
61 + dev-util/gtk-doc-am
62 + virtual/pkgconfig
63 +"
64 +
65 +# There is no automatic test suite, only an interactive test application
66 +RESTRICT="test"
67 +
68 +src_configure() {
69 + gnome2_src_configure \
70 + --enable-man \
71 + --disable-test \
72 + $(use_enable debug) \
73 + $(use_enable introspection) \
74 + $(use_with jpeg libjpeg) \
75 + $(use_with lcms liblcms2) \
76 + $(use_enable static-libs static) \
77 + $(use_with tiff libtiff)
78 +}