Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-libs/libjxl/
Date: Wed, 27 Oct 2021 06:18:15
Message-Id: 1635266716.cf9492e82b413e84024dc0d03cb22c2c22acb0a5.flow@gentoo
1 commit: cf9492e82b413e84024dc0d03cb22c2c22acb0a5
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Oct 26 16:45:16 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 26 16:45:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cf9492e8
7
8 media-libs/libjxl: remove static lib, add todo
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 media-libs/libjxl/libjxl-0.6.ebuild | 10 ++++++++--
13 1 file changed, 8 insertions(+), 2 deletions(-)
14
15 diff --git a/media-libs/libjxl/libjxl-0.6.ebuild b/media-libs/libjxl/libjxl-0.6.ebuild
16 index 52c54ec86..afd6ae0c0 100644
17 --- a/media-libs/libjxl/libjxl-0.6.ebuild
18 +++ b/media-libs/libjxl/libjxl-0.6.ebuild
19 @@ -12,7 +12,7 @@ SRC_URI="https://github.com/libjxl/libjxl/archive/refs/tags/v${PV}.tar.gz -> ${P
20 KEYWORDS="~amd64"
21 LICENSE="Apache-2.0"
22 SLOT="0"
23 -IUSE="abi_x86_64 cpu_flags_arm_neon benchmark devtools examples man +openexr plugins profile +sjpeg +skcms tcmalloc tools viewers"
24 +IUSE="abi_x86_64 cpu_flags_arm_neon benchmark devtools examples man +openexr plugins profile +sjpeg +skcms tcmalloc tools viewers" #java
25
26 RDEPEND="
27 app-arch/brotli
28 @@ -23,7 +23,6 @@ RDEPEND="
29 sys-libs/zlib
30 virtual/jpeg
31
32 - !skcms? ( media-libs/lcms )
33 openexr? ( media-libs/openexr:= )
34 plugins? (
35 dev-libs/glib:2
36 @@ -35,6 +34,7 @@ RDEPEND="
37 x11-misc/shared-mime-info
38 )
39 sjpeg? ( media-libs/sjpeg:= )
40 + !skcms? ( media-libs/lcms )
41 skcms? ( media-libs/skcms:= )
42 tcmalloc? ( dev-util/google-perftools )
43 viewers? ( media-libs/lcms )
44 @@ -85,3 +85,9 @@ src_configure() {
45
46 cmake_src_configure
47 }
48 +
49 +src_install() {
50 + cmake_src_install
51 + find "${D}" -name '*.a' -delete || die
52 + #TODO: install documentation
53 +}