Gentoo Archives: gentoo-commits

From: "Alexandre Rostovtsev (tetromino)" <tetromino@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/libgxps: libgxps-0.2.0.ebuild ChangeLog
Date: Wed, 23 Nov 2011 20:26:04
Message-Id: 20111123202551.2BB702004B@flycatcher.gentoo.org
1 tetromino 11/11/23 20:25:51
2
3 Modified: ChangeLog
4 Added: libgxps-0.2.0.ebuild
5 Log:
6 Bump. Improves support for bezier curves and opacity, and adds utilities for converting XPS to other formats.
7
8 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 app-text/libgxps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libgxps/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libgxps/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libgxps/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/libgxps/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 3 Nov 2011 05:10:47 -0000 1.1
24 +++ ChangeLog 23 Nov 2011 20:25:51 -0000 1.2
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-text/libgxps
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/ChangeLog,v 1.1 2011/11/03 05:10:47 tetromino Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/ChangeLog,v 1.2 2011/11/23 20:25:51 tetromino Exp $
30 +
31 +*libgxps-0.2.0 (23 Nov 2011)
32 +
33 + 23 Nov 2011; Alexandre Rostovtsev <tetromino@g.o>
34 + +libgxps-0.2.0.ebuild, +files/libgxps-0.2.0-libm.patch,
35 + +files/libgxps-0.2.0-libpng15.patch:
36 + Bump. Improves support for bezier curves and opacity, and adds utilities for
37 + converting XPS to other formats.
38
39 *libgxps-0.1.0 (03 Nov 2011)
40
41
42
43
44 1.1 app-text/libgxps/libgxps-0.2.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libgxps/libgxps-0.2.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libgxps/libgxps-0.2.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libgxps-0.2.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/libgxps/libgxps-0.2.0.ebuild,v 1.1 2011/11/23 20:25:50 tetromino Exp $
54
55 EAPI="4"
56 GNOME2_LA_PUNT="yes"
57
58 inherit autotools eutils gnome2
59
60 DESCRIPTION="Library for handling and rendering XPS documents"
61 HOMEPAGE="http://live.gnome.org/libgxps"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="debug doc +introspection jpeg lcms static-libs tiff"
67
68 RDEPEND=">=app-arch/libarchive-2.8
69 >=dev-libs/glib-2.24:2
70 media-libs/freetype:2
71 media-libs/libpng:0
72 >=x11-libs/cairo-1.10[svg]
73 introspection? ( >=dev-libs/gobject-introspection-0.10.1 )
74 jpeg? ( virtual/jpeg )
75 lcms? ( media-libs/lcms:2 )
76 tiff? ( media-libs/tiff[zlib] )"
77 DEPEND="${RDEPEND}
78 app-text/docbook-xsl-stylesheets
79 dev-libs/libxslt
80 dev-util/pkgconfig
81 doc? (
82 app-text/docbook-xml-dtd:4.1.2
83 >=dev-util/gtk-doc-1.14 )
84
85 dev-util/gtk-doc-am"
86 # eautoreconf requires: dev-util/gtk-doc-am
87
88 # There is no automatic test suite, only an interactive test application
89 RESTRICT="test"
90
91 pkg_setup() {
92 G2CONF="${G2CONF}
93 --enable-man
94 --disable-test
95 $(use_enable debug)
96 $(use_enable introspection)
97 $(use_with jpeg libjpeg)
98 $(use_with lcms liblcms2)
99 $(use_enable static-libs static)
100 $(use_with tiff libtiff)"
101 DOCS="AUTHORS ChangeLog NEWS README TODO"
102 }
103
104 src_prepare() {
105 # Upstream patch to fix linking, in next release, requires eautoreconf
106 epatch "${FILESDIR}/${P}-libm.patch"
107
108 # https://bugzilla.gnome.org/show_bug.cgi?id=664666
109 epatch "${FILESDIR}/${PN}-0.2.0-libpng15.patch"
110
111 eautoreconf
112 gnome2_src_prepare
113 }