public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrey Grozin" <grozin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/crengine-ng/
Date: Sat, 11 Feb 2023 11:36:55 +0000 (UTC)	[thread overview]
Message-ID: <1676115401.638760e4f7f362567b581a2350f636e1ca19a58b.grozin@gentoo> (raw)

commit:     638760e4f7f362567b581a2350f636e1ca19a58b
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 11 11:36:41 2023 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sat Feb 11 11:36:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=638760e4

app-text/crengine-ng: bump to 0.9.7

Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 app-text/crengine-ng/Manifest                 |  1 +
 app-text/crengine-ng/crengine-ng-0.9.7.ebuild | 58 +++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/app-text/crengine-ng/Manifest b/app-text/crengine-ng/Manifest
index c067fcc8c373..f88a6bc96aaf 100644
--- a/app-text/crengine-ng/Manifest
+++ b/app-text/crengine-ng/Manifest
@@ -1 +1,2 @@
 DIST crengine-ng-0.9.4.tar.bz2 3566778 BLAKE2B ded7b6b620ad8d24c65d45b166b08b3f74f1d68d67920e7ba9665570e3fef9d9bee9032e683ad8b0eab31fb12bc2ac03390e9ef0cd46702f28c78d5aff54a728 SHA512 491046d44088842a454c58ba71a2b5ce69e4692e4d1e16f082c096936f776c6ea9fd70ae93251348cff36ed46e5ad7991cc64099c5f313acb17e35ca08ea2698
+DIST crengine-ng-0.9.7.tar.bz2 3594561 BLAKE2B 65adf26be6198a29c26a506e5e00dde809a6bd9371e7f226ca954a89e0dfc68f314891f9e060a3055e5313673c266a26954353479f486abcf1bb87951202f64c SHA512 94775722f8ff3680c36278e2cecd864b5e3f9de7940aa0e681b683cc5136c8098650e495c3f0729af187839e45d6409993fdc2fc2738250cacd406f2540fdc31

diff --git a/app-text/crengine-ng/crengine-ng-0.9.7.ebuild b/app-text/crengine-ng/crengine-ng-0.9.7.ebuild
new file mode 100644
index 000000000000..e29bd60b0df3
--- /dev/null
+++ b/app-text/crengine-ng/crengine-ng-0.9.7.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit cmake
+
+DESCRIPTION="Cross-platform library designed to implement e-book readers"
+HOMEPAGE="https://gitlab.com/coolreader-ng/crengine-ng"
+SRC_URI="https://gitlab.com/coolreader-ng/${PN}/-/archive/${PV}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+png +jpeg +gif +svg +chm +harfbuzz +fontconfig +libunibreak +fribidi +zstd +libutf8proc lto static-libs"
+
+CDEPEND="sys-libs/zlib
+	png? ( media-libs/libpng:0 )
+	jpeg? ( media-libs/libjpeg-turbo )
+	>=media-libs/freetype-2.10.0
+	harfbuzz? ( media-libs/harfbuzz:= )
+	libunibreak? ( dev-libs/libunibreak:= )
+	fribidi? ( dev-libs/fribidi )
+	zstd? ( app-arch/zstd:= )
+	libutf8proc? ( dev-libs/libutf8proc:= )
+	fontconfig? ( media-libs/fontconfig )"
+
+RDEPEND="${CDEPEND}"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+	${CDEPEND}"
+
+src_configure() {
+	CMAKE_USE_DIR="${S}"
+	CMAKE_BUILD_TYPE="Release"
+	local mycmakeargs=(
+		-DCRE_BUILD_SHARED=ON
+		-DCRE_BUILD_STATIC=$(usex static-libs)
+		-DUSE_COLOR_BACKBUFFER=ON
+		-DWITH_LIBPNG=$(usex png)
+		-DWITH_LIBJPEG=$(usex jpeg)
+		-DWITH_FREETYPE=ON
+		-DWITH_HARFBUZZ=$(usex harfbuzz)
+		-DWITH_LIBUNIBREAK=$(usex libunibreak)
+		-DWITH_FRIBIDI=$(usex fribidi)
+		-DWITH_ZSTD=$(usex zstd)
+		-DWITH_UTF8PROC=$(usex libutf8proc)
+		-DUSE_GIF=$(usex gif)
+		-DUSE_NANOSVG=$(usex svg)
+		-DUSE_CHM=$(usex chm)
+		-DUSE_ANTIWORD=ON
+		-DUSE_FONTCONFIG=$(usex fontconfig)
+		-DUSE_SHASUM=OFF
+		-DBUILD_TOOLS=OFF
+		-DENABLE_UNITTESTING=OFF
+		-DENABLE_LTO=$(usex lto)
+	)
+	cmake_src_configure
+}


             reply	other threads:[~2023-02-11 11:36 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-11 11:36 Andrey Grozin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-02 15:03 [gentoo-commits] repo/gentoo:master commit in: app-text/crengine-ng/ Andreas Sturmlechner
2025-01-16 11:28 Andrey Grozin
2025-01-16 10:59 Andrey Grozin
2024-12-31  7:11 Andrey Grozin
2024-04-11  6:28 Andrey Grozin
2024-04-11  4:55 Arthur Zamarin
2024-04-11  4:55 Arthur Zamarin
2024-03-05  4:33 Andrey Grozin
2024-03-05  4:32 Andrey Grozin
2024-02-13 10:48 Andrey Grozin
2024-01-07 11:38 Michał Górny
2023-07-21 14:52 Andrey Grozin
2023-07-21 12:35 Arthur Zamarin
2023-07-21 12:35 Arthur Zamarin
2023-05-29 12:08 Andrey Grozin
2023-05-25  8:27 Andrey Grozin
2023-05-25  7:46 Arthur Zamarin
2023-05-25  7:46 Arthur Zamarin
2023-05-23 12:39 Andrey Grozin
2023-04-24  5:25 Andrey Grozin
2023-04-24  4:05 Andrey Grozin
2023-04-24  4:04 Andrey Grozin
2023-04-20  9:46 Andrey Grozin
2023-03-17 18:35 Sam James
2023-03-17 17:36 Sam James
2023-01-03 10:57 Andrey Grozin
2022-12-31  9:46 Andrey Grozin
2022-12-31  9:44 Andrey Grozin
2022-12-25  8:06 Andrey Grozin
2022-12-25  5:16 Andrey Grozin
2022-12-23  4:43 Andrey Grozin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1676115401.638760e4f7f362567b581a2350f636e1ca19a58b.grozin@gentoo \
    --to=grozin@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox