Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/
Date: Sat, 02 Jan 2021 18:04:59
Message-Id: 1609610651.ce567b79660e5635d95303297fe5e9191324d397.juippis@gentoo
1 commit: ce567b79660e5635d95303297fe5e9191324d397
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 18:04:11 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 18:04:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce567b79
7
8 media-gfx/inkscape: sync sandbox issue fix with -9999
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-gfx/inkscape/inkscape-9999.ebuild | 5 ++++-
13 1 file changed, 4 insertions(+), 1 deletion(-)
14
15 diff --git a/media-gfx/inkscape/inkscape-9999.ebuild b/media-gfx/inkscape/inkscape-9999.ebuild
16 index 1cc566e6135..d9978ad99f8 100644
17 --- a/media-gfx/inkscape/inkscape-9999.ebuild
18 +++ b/media-gfx/inkscape/inkscape-9999.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 @@ -152,4 +152,7 @@ src_install() {
26 if [[ -e "${extdir}" ]] && [[ -n $(find "${extdir}" -mindepth 1) ]]; then
27 python_optimize "${ED}"/usr/share/${PN}/extensions
28 fi
29 +
30 + # Empty directory causes sandbox issues, see bug #761915
31 + rm -r "${ED}/usr/share/inkscape/fonts" || die "Failed to remove fonts directory."
32 }