Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/fbpdf/
Date: Mon, 03 Aug 2020 21:44:16
Message-Id: 1596491040.47f13c8fd2c258dbcbc1b0834d3dc0f509434b0d.slyfox@gentoo
1 commit: 47f13c8fd2c258dbcbc1b0834d3dc0f509434b0d
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 21:43:50 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 21:44:00 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f13c8f
7
8 app-text/fbpdf: drop ebuild that refers transitive dependencies
9
10 Reported-by: John Helmert III (ajak)
11 Closes: https://bugs.gentoo.org/735588
12 Package-Manager: Portage-3.0.1, Repoman-2.3.23
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 app-text/fbpdf/fbpdf-0_p20190202.ebuild | 47 ---------------------------------
16 1 file changed, 47 deletions(-)
17
18 diff --git a/app-text/fbpdf/fbpdf-0_p20190202.ebuild b/app-text/fbpdf/fbpdf-0_p20190202.ebuild
19 deleted file mode 100644
20 index 2975eca713f..00000000000
21 --- a/app-text/fbpdf/fbpdf-0_p20190202.ebuild
22 +++ /dev/null
23 @@ -1,47 +0,0 @@
24 -# Copyright 1999-2020 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=6
28 -
29 -inherit toolchain-funcs vcs-snapshot
30 -
31 -COMMIT="dfe9f0067549f759cdc04f2f62b4f89cd6e1b199"
32 -
33 -DESCRIPTION="framebuffer pdf and djvu viewer"
34 -HOMEPAGE="https://github.com/aligrudi/fbpdf"
35 -
36 -SRC_URI="https://github.com/aligrudi/fbpdf/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT}.tar.gz"
37 -
38 -LICENSE="BSD ISC"
39 -SLOT="0"
40 -KEYWORDS="~amd64 ~x86"
41 -
42 -RDEPEND="
43 - >=app-text/mupdf-1.10:0=
44 - app-text/djvu:0=
45 - dev-lang/mujs:0=
46 - dev-libs/openssl:0=
47 - !media-gfx/fbida[fbcon(-)]
48 - media-libs/freetype:2=
49 - media-libs/jbig2dec:0=
50 - media-libs/openjpeg:0=
51 - virtual/jpeg:0=
52 -"
53 -
54 -DEPEND="${RDEPEND}"
55 -
56 -S=${WORKDIR}/${P}-${COMMIT}
57 -
58 -PATCHES=(
59 - "${FILESDIR}"/${P}-use-pkg-config.patch
60 - "${FILESDIR}"/${P}-printf.patch
61 -)
62 -
63 -src_compile() {
64 - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
65 -}
66 -
67 -src_install() {
68 - dobin fbpdf fbdjvu
69 - dodoc README
70 -}