Blame SOURCES/noto-emoji-use-gm.patch

bdcae8
diff -ru noto-emoji-f8131fc45736000552cd04a8388dc414d666a829.orig/Makefile noto-emoji-f8131fc45736000552cd04a8388dc414d666a829/Makefile
bdcae8
--- noto-emoji-f8131fc45736000552cd04a8388dc414d666a829.orig/Makefile	2020-06-25 16:02:56.000000000 +0200
bdcae8
+++ noto-emoji-f8131fc45736000552cd04a8388dc414d666a829/Makefile	2020-07-21 11:12:06.948389580 +0200
bdcae8
@@ -22,7 +22,8 @@
bdcae8
 PYTHON = python3
f763a1
 PNGQUANTFLAGS = --speed 1 --skip-if-larger --quality 85-95 --force
f763a1
 BODY_DIMENSIONS = 136x128
f763a1
-IMOPS := -size $(BODY_DIMENSIONS) canvas:none -compose copy -gravity center
f763a1
+#IMOPS := -size $(BODY_DIMENSIONS) canvas:none -compose copy -gravity center
f763a1
+IMOPS = -size 136x128 -background none -gravity center -extent 136x128 -compose copy
f763a1
 
bdcae8
 ZOPFLIPNG = zopflipng
bdcae8
 TTX = ttx
bdcae8
@@ -163,13 +164,13 @@
f763a1
 # imagemagick packaged with ubuntu trusty (6.7.7-10) by using -composite.
f763a1
 
f763a1
 $(EMOJI_DIR)/%.png: $(EMOJI_SRC_DIR)/%.png | $(EMOJI_DIR)
f763a1
-	@convert $(IMOPS) "$<" -composite "PNG32:$@"
f763a1
+	@gm convert $(IMOPS) "$<" "PNG32:$@"
f763a1
 
bdcae8
 $(FLAGS_DIR)/%.png: $(FLAGS_SRC_DIR)/%.png ./waveflag | $(FLAGS_DIR)
f763a1
 	@./waveflag $(FLAGS_DIR)/ "$<"
f763a1
 
f763a1
 $(RESIZED_FLAGS_DIR)/%.png: $(FLAGS_DIR)/%.png | $(RESIZED_FLAGS_DIR)
f763a1
-	@convert $(IMOPS) "$<" -composite "PNG32:$@"
f763a1
+	@gm convert $(IMOPS) "$<" "PNG32:$@"
f763a1
 
f763a1
 flag-symlinks: $(RESIZED_FLAG_FILES) | $(RENAMED_FLAGS_DIR)
f763a1
 	@$(subst ^, ,                                  \
bdcae8