Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/pdf2djvu/
Date: Wed, 26 Aug 2015 19:32:07
Message-Id: 1440617503.b04569d4c747ab049232d3087a5ba0cfb7ef52f5.mrueg@gentoo
1 commit: b04569d4c747ab049232d3087a5ba0cfb7ef52f5
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 26 19:31:43 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 26 19:31:43 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04569d4
7
8 app-text/pdf2djvu: Remove old
9
10 Package-Manager: portage-2.2.20.1
11
12 app-text/pdf2djvu/Manifest | 1 -
13 app-text/pdf2djvu/pdf2djvu-0.7.19.ebuild | 53 --------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/app-text/pdf2djvu/Manifest b/app-text/pdf2djvu/Manifest
17 index c29a619..1f6e887 100644
18 --- a/app-text/pdf2djvu/Manifest
19 +++ b/app-text/pdf2djvu/Manifest
20 @@ -1,2 +1 @@
21 -DIST pdf2djvu-0.7.19.tar.xz 227248 SHA256 c783cea31bf4016dbf85e242a2ebcb54fe70a41bcb046e1dd0cb502a7f5f003c SHA512 7e7ab8e92eb2f57dc678771333bb6c9f88ad460585cc8b886ae10f9c120833b3d95587f94c86ab1b152d6836d5531f64d031af33d95fc96f8219cd611cfe300f WHIRLPOOL 8434cd0ab7901176b3833ddabe7ed3eed8f5b4227afeff72b10e501009a02a6e67ad83d7ae261577945e3c97c5eb61ad36ff805891d94cfd27c517e5a916b2a7
22 DIST pdf2djvu-0.7.21.tar.xz 229020 SHA256 12d480cc3ce2369e1f1b39b7f5e6fbb44351d8b07861295d34e6978f58b687b9 SHA512 920e49b23f9c1d1a8f6c0be9257dc175ef94350f6e488d88813eb2586344f373b4b173530031d9aeff24b1ad220cc68a3094d4e821cd3a1511ba01e492ed084f WHIRLPOOL 7d09ca40f330c79c0a1abf9967f9ce5d05cfaa8a5904bf69c751a4ca1cce5da2987c519cc001dd7b3fdaa0822127e3ead269ee723f78c6cc18d1c7666b8b28e5
23
24 diff --git a/app-text/pdf2djvu/pdf2djvu-0.7.19.ebuild b/app-text/pdf2djvu/pdf2djvu-0.7.19.ebuild
25 deleted file mode 100644
26 index 845a512..0000000
27 --- a/app-text/pdf2djvu/pdf2djvu-0.7.19.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit python-single-r1 toolchain-funcs
39 -
40 -DESCRIPTION="A tool to create DjVu files from PDF files"
41 -HOMEPAGE="https://code.google.com/p/pdf2djvu/"
42 -SRC_URI="https://bitbucket.org/jwilk/${PN}/downloads/${P}.tar.xz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="+graphicsmagick nls openmp test"
48 -
49 -RDEPEND="
50 - >=app-text/djvu-3.5.21:=
51 - >=app-text/poppler-0.16.7:=
52 - dev-libs/libxml2:=
53 - dev-libs/libxslt:=
54 - graphicsmagick? ( media-gfx/graphicsmagick:= )
55 -"
56 -DEPEND="${RDEPEND}
57 - dev-cpp/pstreams
58 - virtual/pkgconfig
59 - nls? ( sys-devel/gettext )
60 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
61 -"
62 -
63 -REQUIRED_USE="test? ( graphicsmagick ${PYTHON_REQUIRED_USE} )"
64 -
65 -pkg_setup() {
66 - use test && python-single-r1_pkg_setup
67 -}
68 -
69 -src_configure() {
70 - local openmp=--disable-openmp
71 - use openmp && tc-has-openmp && openmp=--enable-openmp
72 -
73 - econf \
74 - ${openmp} \
75 - $(use_enable nls) \
76 - $(use_with graphicsmagick)
77 -}
78 -
79 -src_install() {
80 - default
81 - dodoc doc/{changelog,{cjk,credits,djvudigital}.txt}
82 -}