mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-26 13:47:33 +00:00
* switch depend to Qt6
* remove java/ant from depend, becase bundled libbluray (mythtv/external/libmythbluray)
is not used if CONFIG_SYSTEM_LIBBLURAY=yes ("enable system_libbluray" is called in
mythtv/configure)
Closes: https://bugs.gentoo.org/915800
Closes: https://bugs.gentoo.org/924233
Closes: https://bugs.gentoo.org/953249
Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/40420
Signed-off-by: Sam James <sam@gentoo.org>
28 lines
764 B
Diff
28 lines
764 B
Diff
https://github.com/MythTV/mythtv/pull/1089
|
|
|
|
From 674f2c9474b5a2bede1b3ef4c6e77fc46be408b8 Mon Sep 17 00:00:00 2001
|
|
From: "Z. Liu" <zhixu.liu@gmail.com>
|
|
Date: Tue, 13 May 2025 00:09:20 +0800
|
|
Subject: [PATCH] configure: no ant & java required if use system libbluray
|
|
|
|
* mythtv/external/libmythbluray/ won't be built
|
|
* java is required at runtime only
|
|
|
|
Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
|
|
|
|
diff --git a/configure b/configure
|
|
index 2168fae294..5765f74833 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -5207,7 +5207,7 @@ fi
|
|
|
|
antbin=""
|
|
java_code_version=""
|
|
-if enabled bdjava; then
|
|
+if enabled bdjava && ! enabled system_libbluray; then
|
|
enabled x86_64 && java_arch=amd64
|
|
enabled x86_32 && java_arch=i386
|
|
enabled arm && java_arch=arm
|
|
--
|
|
2.45.2
|
|
|