diff options
author | David Seifert <soap@gentoo.org> | 2019-12-24 12:53:19 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-24 12:53:19 +0100 |
commit | d17f018aebccd9299ba9bfc9c45ee98604249808 (patch) | |
tree | f621001b5e4399e9b1dee693ee519824e862fd11 /x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch | |
parent | x11-themes/gtk-engines-ubuntulooks: Port to EAPI 7 (diff) | |
download | gentoo-d17f018aebccd9299ba9bfc9c45ee98604249808.tar.gz gentoo-d17f018aebccd9299ba9bfc9c45ee98604249808.tar.bz2 gentoo-d17f018aebccd9299ba9bfc9c45ee98604249808.zip |
x11-themes/human-icon-theme: Port to EAPI 7
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch')
-rw-r--r-- | x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch b/x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch new file mode 100644 index 000000000000..44999e7ae584 --- /dev/null +++ b/x11-themes/human-icon-theme/files/human-icon-theme-0.36-fix-buildsystem.patch @@ -0,0 +1,22 @@ +--- a/Makefile ++++ b/Makefile +@@ -19,7 +19,7 @@ + + # run icon-naming-utils + for d in $$DESTDIR/usr/share/icons/Human/*; do \ +- (cd $$d; for c in *; do /usr/lib/icon-naming-utils/icon-name-mapping -c $$c; done); \ ++ (cd $$d; for c in *; do /usr/libexec/icon-name-mapping -c $$c; done); \ + done + + # install mo files +--- a/svg2png.sh.in ++++ b/svg2png.sh.in +@@ -8,7 +8,7 @@ + fi + + ICONNAME=`echo ${3} | sed -e "s/.svg//"` +-if test `basename $SVGCONVERT` = "rsvg"; then ++if test `basename $SVGCONVERT` = "rsvg-convert"; then + OPTIONS="-w ${1} -h ${1}" + else + OPTIONS="${1} ${1}" |