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: Sun, 01 Nov 2020 09:35:19
Message-Id: 1604223309.353ee4fa3d3050dd33fb5c1e21e27cca529adbba.slyfox@gentoo
1 commit: 353ee4fa3d3050dd33fb5c1e21e27cca529adbba
2 Author: David Duchesne <aether <AT> disroot <DOT> org>
3 AuthorDate: Sun Nov 1 09:26:06 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 1 09:35:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=353ee4fa
7
8 app-text/fbpdf: bump up to 0_p20200614
9
10 Closes: https://bugs.gentoo.org/751838
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 app-text/fbpdf/Manifest | 1 +
14 app-text/fbpdf/fbpdf-0_p20200614.ebuild | 42 +++++++++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/app-text/fbpdf/Manifest b/app-text/fbpdf/Manifest
18 index cc7b093861d..ef0e2b843e0 100644
19 --- a/app-text/fbpdf/Manifest
20 +++ b/app-text/fbpdf/Manifest
21 @@ -1 +1,2 @@
22 DIST fbpdf-0_p20190202-dfe9f0067549f759cdc04f2f62b4f89cd6e1b199.tar.gz 7874 BLAKE2B 873da768b0152559536c73b7ed575c3457efe184934a38d0a9600412ac3a8616297194ab045be1d7eddb470d8d73ead4c655797fd7ba1efe6f2be9a19a5318b4 SHA512 f216a0993573e4e491845638b72ff019910f8a333ed618158e81bcb3f68619596f0354b0039c38c7619dd65c040aa599ed8923ac974717b86fb431e5c6954f3b
23 +DIST fbpdf-0_p20200614-27c9e28e9199a2491d0ee0a885760bedb1d4547b.tar.gz 8432 BLAKE2B 0004f8558b86c349744a37099ef86963d368ee9dedeefca861761f88adc3c94a3db9f46c9e1a6f6026357512a8320b956cd7c48108aa6c6657b84193fd5d4b49 SHA512 e037cd536e3a26b6d2364eb52803de67606bac418db8691c7530a889c95dd1f8661985021237ce7fea95f56ab5a308caf8d470c6c036b51b17211f9c200aba51
24
25 diff --git a/app-text/fbpdf/fbpdf-0_p20200614.ebuild b/app-text/fbpdf/fbpdf-0_p20200614.ebuild
26 new file mode 100644
27 index 00000000000..964e63527de
28 --- /dev/null
29 +++ b/app-text/fbpdf/fbpdf-0_p20200614.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit toolchain-funcs vcs-snapshot
37 +
38 +COMMIT="27c9e28e9199a2491d0ee0a885760bedb1d4547b"
39 +
40 +DESCRIPTION="framebuffer pdf and djvu viewer"
41 +HOMEPAGE="https://github.com/aligrudi/fbpdf"
42 +
43 +SRC_URI="https://github.com/aligrudi/fbpdf/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT}.tar.gz"
44 +
45 +LICENSE="BSD ISC"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +
49 +RDEPEND="
50 + >=app-text/mupdf-1.10:0=
51 + app-text/djvu:0=
52 + !media-gfx/fbida[fbcon(-)]
53 +"
54 +
55 +DEPEND="${RDEPEND}"
56 +
57 +BDEPEND="virtual/pkgconfig"
58 +
59 +S=${WORKDIR}/${P}-${COMMIT}
60 +
61 +PATCHES=(
62 + "${FILESDIR}"/${PN}-0_p20190202-use-pkg-config.patch
63 +)
64 +
65 +src_compile() {
66 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}"
67 +}
68 +
69 +src_install() {
70 + dobin fbpdf fbdjvu
71 + dodoc README
72 +}