diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-06-15 13:38:09 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-06-15 13:38:09 +0100 |
commit | db70871b2044b9bfde346d6f4027dafb0a013c4c (patch) | |
tree | 34548aee54e5458d3754bd8c8f987acdb5ee444c /app-text/libgepub | |
parent | 1c382dc5dbc52576ac2300fee0498af8af44e7b4 (diff) |
gentoo auto-resync : 15:06:2023 - 13:38:09
Diffstat (limited to 'app-text/libgepub')
-rw-r--r-- | app-text/libgepub/Manifest | 2 | ||||
-rw-r--r-- | app-text/libgepub/libgepub-0.7.1.ebuild | 40 |
2 files changed, 42 insertions, 0 deletions
diff --git a/app-text/libgepub/Manifest b/app-text/libgepub/Manifest index 7cfb7edbe8bf..15d201fc0309 100644 --- a/app-text/libgepub/Manifest +++ b/app-text/libgepub/Manifest @@ -1,3 +1,5 @@ DIST libgepub-0.7.0.tar.xz 28536 BLAKE2B beeab3d3911353cb0cac78207cc9e18e3341afce94213757c8d246a2d01c42aa0eb37618cc066307ce2ec8f21dbb89982271f25a9552d6872d5e86a4345407c6 SHA512 2ab661a6379899ff818313205d818ef1239654afde9ebcc22fa55b5d961aee20dd9c8295a58ff1d1fb1ea281ddb6ee8644942a860b3ee9f6a4ba9d7447efc517 +DIST libgepub-0.7.1.tar.xz 28576 BLAKE2B a65ecdd13bfcc96fbf0e1998d24cc565f0bd60213f278fdf592dcdf1ad6a1b40c9c10e3ffc3fe9ac500d92f5471619432badd746dfc57538e96a2b6a138b0a26 SHA512 9a9c56cffab485b78f0fdf115e655c4f395ee6e3f00b203fee5dfbb2054aa58540ca1fe8dc9dd82460ae3b39e89471e128086be10e77b247d0ce7b195bfbe8e3 EBUILD libgepub-0.7.0.ebuild 921 BLAKE2B acba85182bd5b84664dccfd678d985598d932f1aa65e9e10dd6f3ced8b97e79f4394743f157eea3540ff2e249f4ba1166f71f4bd3d5d54af2f6b0c4969ced24e SHA512 cc53f0090484e2befe18d0d2925d3ee50dbd63db15d71ba251d7d3db0c8ce4587e9ba705733e5d6a9813d98178ab7c929c5fed5661f3a537850eadd3e095fc37 +EBUILD libgepub-0.7.1.ebuild 927 BLAKE2B 8f4ab665efa93f4622d98b76d2459a0e7520a7213bb6153761236ec74f09e455cf8bc667ad35a4435a11e24e4803e9e6280289cb6e55793bdb28e9a97a33e401 SHA512 d085a0f2bb9fc2b20fb23c7a4fc1d7cebca65afa223ba304263eb2120128383e1baa0aaefb299512b4c298f162ee7310b389be25382ac49fefe63a10019b7aac MISC metadata.xml 436 BLAKE2B d829d0b00fef946cbc3356048e1499b944197362474a044f916cfe128f99d9ac041924315c1fb845f6e823d37a710e1f420f2fcff41306aad89f65223fa1d63c SHA512 6753be33014461b9eee51648ea9086e00bdd8406468ca5914a0ba42102b130defc2f1a9e28be8f1ffd99056bd8ec6ede0c86f958ec7181131353d5e03ca9c43c diff --git a/app-text/libgepub/libgepub-0.7.1.ebuild b/app-text/libgepub/libgepub-0.7.1.ebuild new file mode 100644 index 000000000000..d45480fd9b7b --- /dev/null +++ b/app-text/libgepub/libgepub-0.7.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org meson xdg + +DESCRIPTION="GObject based library for handling and rendering epub documents" +HOMEPAGE="https://gitlab.gnome.org/GNOME/libgepub" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="+introspection webkit" + +RDEPEND=" + net-libs/libsoup:3.0 + dev-libs/glib:2 + dev-libs/libxml2 + app-arch/libarchive:= + webkit? ( >=net-libs/webkit-gtk-2.38.0:4.1[introspection?] ) + introspection? ( >=dev-libs/gobject-introspection-1.30:= ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + # Tests are not executed by `meson test` and they require GTK+3 + sed -i -e "/subdir('tests')/d" meson.build || die +} + +src_configure() { + local emesonargs=( + $(meson_use introspection) + $(meson_use webkit widget) + ) + meson_src_configure +} |