Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/crengine-ng/
Date: Tue, 03 Jan 2023 10:57:15
Message-Id: 1672743416.96c3bd06449926571a8c28ec4e89ce743bef282a.grozin@gentoo
1 commit: 96c3bd06449926571a8c28ec4e89ce743bef282a
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 10:56:56 2023 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 10:56:56 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c3bd06
7
8 app-text/crengine-ng: remove old
9
10 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
11
12 app-text/crengine-ng/crengine-ng-0.9.4.ebuild | 58 ---------------------------
13 1 file changed, 58 deletions(-)
14
15 diff --git a/app-text/crengine-ng/crengine-ng-0.9.4.ebuild b/app-text/crengine-ng/crengine-ng-0.9.4.ebuild
16 deleted file mode 100644
17 index f17cdaadf91a..000000000000
18 --- a/app-text/crengine-ng/crengine-ng-0.9.4.ebuild
19 +++ /dev/null
20 @@ -1,58 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -inherit cmake
26 -
27 -DESCRIPTION="Cross-platform library designed to implement e-book readers"
28 -HOMEPAGE="https://gitlab.com/coolreader-ng/crengine-ng"
29 -SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2"
30 -
31 -LICENSE="GPL-2"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="+png +jpeg +gif +svg +chm +harfbuzz +fontconfig +libunibreak +fribidi +zstd +libutf8proc lto static-libs"
35 -
36 -CDEPEND="sys-libs/zlib
37 - png? ( media-libs/libpng:0 )
38 - jpeg? ( media-libs/libjpeg-turbo )
39 - >=media-libs/freetype-2.10.0
40 - harfbuzz? ( media-libs/harfbuzz:= )
41 - libunibreak? ( dev-libs/libunibreak:= )
42 - fribidi? ( dev-libs/fribidi )
43 - zstd? ( app-arch/zstd:= )
44 - libutf8proc? ( dev-libs/libutf8proc:= )
45 - fontconfig? ( media-libs/fontconfig )"
46 -
47 -RDEPEND="${CDEPEND}"
48 -DEPEND="${RDEPEND}"
49 -BDEPEND="virtual/pkgconfig
50 - ${CDEPEND}"
51 -
52 -src_configure() {
53 - CMAKE_USE_DIR="${S}"
54 - CMAKE_BUILD_TYPE="Release"
55 - local mycmakeargs=(
56 - -DCRE_BUILD_SHARED=ON
57 - -DCRE_BUILD_STATIC=$(usex static-libs)
58 - -DUSE_COLOR_BACKBUFFER=ON
59 - -DWITH_LIBPNG=$(usex png)
60 - -DWITH_LIBJPEG=$(usex jpeg)
61 - -DWITH_FREETYPE=ON
62 - -DWITH_HARFBUZZ=$(usex harfbuzz)
63 - -DWITH_LIBUNIBREAK=$(usex libunibreak)
64 - -DWITH_FRIBIDI=$(usex fribidi)
65 - -DWITH_ZSTD=$(usex zstd)
66 - -DWITH_UTF8PROC=$(usex libutf8proc)
67 - -DUSE_GIF=$(usex gif)
68 - -DUSE_NANOSVG=$(usex svg)
69 - -DUSE_CHM=$(usex chm)
70 - -DUSE_ANTIWORD=ON
71 - -DUSE_FONTCONFIG=$(usex fontconfig)
72 - -DUSE_SHASUM=OFF
73 - -DBUILD_TOOLS=OFF
74 - -DENABLE_UNITTESTING=OFF
75 - -DENABLE_LTO=$(usex lto)
76 - )
77 - cmake_src_configure
78 -}