From e3a2463cac1b277bfa5f28ecf0cca83af9dcef70 Mon Sep 17 00:00:00 2001 From: PF4Public Date: Sat, 9 Sep 2023 22:42:28 +0300 Subject: [PATCH] www-client/ungoogled-chromium: also ppc64 --- .../ungoogled-chromium-117.0.5938.48_p1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/www-client/ungoogled-chromium/ungoogled-chromium-117.0.5938.48_p1.ebuild b/www-client/ungoogled-chromium/ungoogled-chromium-117.0.5938.48_p1.ebuild index aa363a281..c05793862 100644 --- a/www-client/ungoogled-chromium/ungoogled-chromium-117.0.5938.48_p1.ebuild +++ b/www-client/ungoogled-chromium/ungoogled-chromium-117.0.5938.48_p1.ebuild @@ -30,6 +30,7 @@ SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/chro ppc64? ( https://quickbuild.io/~raptor-engineering-public/+archive/ubuntu/chromium/+files/chromium_${PATCHSET_PPC64}.debian.tar.xz https://dev.gentoo.org/~sultan/distfiles/www-client/chromium/chromium-ppc64le-gentoo-patches-1.tar.xz + https://raw.githubusercontent.com/darkbasic/gentoo-files/master/chromium-115-0001-Add-PPC64-support-for-boringssl.patch.gz ) " @@ -397,11 +398,12 @@ src_prepare() { if use ppc64 ; then local p for p in $(grep -v "^#" "${WORKDIR}"/debian/patches/series | grep "^ppc64le" || die); do - if [[ ! $p =~ "fix-breakpad-compile.patch" ]]; then + if [[ ! ($p =~ "fix-breakpad-compile.patch" || $p =~ "Add-PPC64-support-for-boringssl.patch") ]]; then eapply "${WORKDIR}/debian/patches/${p}" fi done PATCHES+=( "${WORKDIR}/ppc64le" ) + PATCHES+=( "${WORKDIR}/chromium-115-0001-Add-PPC64-support-for-boringssl.patch" ) fi default