Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde-sunset:master commit in: app-text/poppler/
Date: Sun, 16 Aug 2020 15:57:53
Message-Id: 1597593128.3dc669b42785311a456cc7648815b6b7914940a2.asturm@gentoo
1 commit: 3dc669b42785311a456cc7648815b6b7914940a2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 16 13:03:02 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 16 15:52:08 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=3dc669b4
7
8 app-text/poppler: Drop 0.14.5-r1
9
10 Overshadowed by 0.16.7 with no obvious reason to keep it.
11
12 Package-Manager: Portage-3.0.2, Repoman-2.3.23
13 RepoMan-Options: --force
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 app-text/poppler/poppler-0.14.5-r1.ebuild | 94 -------------------------------
17 1 file changed, 94 deletions(-)
18
19 diff --git a/app-text/poppler/poppler-0.14.5-r1.ebuild b/app-text/poppler/poppler-0.14.5-r1.ebuild
20 deleted file mode 100644
21 index 7317dcb3..00000000
22 --- a/app-text/poppler/poppler-0.14.5-r1.ebuild
23 +++ /dev/null
24 @@ -1,94 +0,0 @@
25 -# Copyright 1999-2013 Gentoo Foundation
26 -# Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/poppler/poppler-0.14.5-r1.ebuild,v 1.8 2011/04/26 07:45:23 xarthisius Exp $
28 -
29 -EAPI="2"
30 -
31 -inherit cmake-utils qt3
32 -
33 -DESCRIPTION="PDF rendering library based on the xpdf-3.0 code base"
34 -HOMEPAGE="http://poppler.freedesktop.org/"
35 -SRC_URI="http://poppler.freedesktop.org/${P}.tar.gz"
36 -
37 -LICENSE="GPL-2"
38 -KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 s390 sh ~sparc x86 ~sparc-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
39 -SLOT="0"
40 -IUSE="cairo cjk curl cxx debug doc exceptions jpeg jpeg2k +lcms png qt3 qt4 +utils +xpdf-headers"
41 -
42 -# No test data provided
43 -RESTRICT="test"
44 -
45 -COMMON_DEPEND="
46 - >=media-libs/fontconfig-2.6.0
47 - >=media-libs/freetype-2.3.9
48 - sys-libs/zlib
49 - cairo? (
50 - dev-libs/glib:2
51 - >=x11-libs/cairo-1.8.4
52 - >=x11-libs/gtk+-2.14.0:2
53 - )
54 - curl? ( net-misc/curl )
55 - jpeg? ( virtual/jpeg )
56 - jpeg2k? ( media-libs/openjpeg )
57 - lcms? ( =media-libs/lcms-1* )
58 - png? ( >=media-libs/libpng-1.4 )
59 - qt3? ( >=dev-qt/qt-meta-3.3:3 )
60 - qt4? (
61 - dev-qt/qtcore:4
62 - dev-qt/qtgui:4
63 - )
64 -"
65 -DEPEND="${COMMON_DEPEND}
66 - virtual/pkgconfig
67 -"
68 -RDEPEND="${COMMON_DEPEND}
69 - !dev-libs/poppler
70 - !dev-libs/poppler-glib
71 - !dev-libs/poppler-qt4
72 - !app-text/poppler-utils
73 - cjk? ( >=app-text/poppler-data-0.2.1 )
74 -"
75 -
76 -DOCS=(AUTHORS ChangeLog NEWS README README-XPDF TODO)
77 -
78 -src_configure() {
79 - mycmakeargs=(
80 - -DBUILD_GTK_TESTS=OFF
81 - -DBUILD_QT4_TESTS=OFF
82 - -DBUILD_CPP_TESTS=OFF
83 - $(cmake-utils_use_with qt3)
84 - -DENABLE_SPLASH=ON
85 - -DENABLE_ZLIB=ON
86 - -DENABLE_ABIWORD=OFF
87 - $(cmake-utils_use_enable curl LIBCURL)
88 - $(cmake-utils_use_enable cxx CPP)
89 - $(cmake-utils_use_enable jpeg2k LIBOPENJPEG)
90 - $(cmake-utils_use_enable lcms)
91 - $(cmake-utils_use_enable utils)
92 - $(cmake-utils_use_enable xpdf-headers XPDF_HEADERS)
93 - $(cmake-utils_use_with cairo)
94 - $(cmake-utils_use_with cairo GTK)
95 - $(cmake-utils_use_with jpeg)
96 - $(cmake-utils_use_with png)
97 - $(cmake-utils_use_with qt4)
98 - $(cmake-utils_use exceptions USE_EXCEPTIONS)
99 - )
100 -
101 - cmake-utils_src_configure
102 -}
103 -
104 -src_install() {
105 - cmake-utils_src_install
106 -
107 - if use cairo && use doc; then
108 - # For now install gtk-doc there
109 - insinto /usr/share/gtk-doc/html/poppler
110 - doins -r "${S}"/glib/reference/html/* || die 'failed to install API documentation'
111 - fi
112 -}
113 -
114 -pkg_postinst() {
115 - ewarn "After upgrading app-text/poppler you may need to reinstall packages"
116 - ewarn "linking to it. If you're not a portage-2.2_rc user, you're advised"
117 - ewarn "to run revdep-rebuild"
118 -}