Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/python-poppler: ChangeLog python-poppler-0.10.1.ebuild
Date: Thu, 03 Sep 2009 08:50:27
Message-Id: E1MjCq6-0000yF-GK@stork.gentoo.org
1 patrick 09/09/03 13:59:02
2
3 Modified: ChangeLog
4 Added: python-poppler-0.10.1.ebuild
5 Log:
6 Bump to 0.10.1. Fixes #282940. Small ebuild fixes by Chris Mayo.
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/python-poppler/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-poppler/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-poppler/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-poppler/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/python-poppler/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 1 Jun 2009 13:58:47 -0000 1.1
23 +++ ChangeLog 3 Sep 2009 13:59:02 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/python-poppler
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-poppler/ChangeLog,v 1.1 2009/06/01 13:58:47 loki_val Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-poppler/ChangeLog,v 1.2 2009/09/03 13:59:02 patrick Exp $
29 +
30 +*python-poppler-0.10.1 (03 Sep 2009)
31 +
32 + 03 Sep 2009; Patrick Lauer <patrick@g.o>
33 + +python-poppler-0.10.1.ebuild:
34 + Bump to 0.10.1. Fixes #282940. Small ebuild fixes by Chris Mayo.
35
36 *python-poppler-0.10.0 (01 Jun 2009)
37
38
39
40
41 1.1 dev-python/python-poppler/python-poppler-0.10.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-poppler/python-poppler-0.10.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/python-poppler/python-poppler-0.10.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: python-poppler-0.10.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-poppler/python-poppler-0.10.1.ebuild,v 1.1 2009/09/03 13:59:02 patrick Exp $
51
52 EAPI=2
53
54 inherit libtool
55
56 DESCRIPTION="Python bindings to the Poppler PDF library."
57 SRC_URI="http://launchpad.net/poppler-python/trunk/development/+download/pypoppler-${PV}.tar.gz"
58 HOMEPAGE="http://launchpad.net/poppler-python"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~x86 ~amd64"
63 IUSE="examples"
64
65 S="${WORKDIR}/pypoppler-${PV}"
66
67 RDEPEND=">=virtual/poppler-glib-0.10.0
68 >=dev-python/pygobject-2.11.3
69 >=dev-python/pygtk-2.10.0
70 >=dev-python/pycairo-1.8.4"
71 DEPEND="${RDEPEND}"
72
73 src_prepare() {
74 elibtoolize
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install
79 find "${D}" -name '*.la' -type f -exec rm -f '{}' ';' || die "Removing .la files failed"
80 dodoc NEWS
81 if use examples; then
82 insinto /usr/share/doc/${PF}/examples
83 doins demo/demo-poppler.py
84 fi
85 }