From 14cd43685163f3ad3e9a79a5b2cb05e7fb420f91 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 16 Mar 2019 18:22:58 +0100 Subject: GEN png icons from svg files PNG icons are created if they are not present in icon folder. To remove png icons: make -C baobab/pixmaps clean-png-icons make -C logview/data/icons clean-png-icons To build png icons: make -C baobab/pixmaps build-png-icons make -C logview/data/icons build-png-icons This removes baobab/pixmaps/shot.png file, use applets-screenshooter named icon (used in mate-screenshot). --- baobab/pixmaps/24x24/Makefile.am | 29 - baobab/pixmaps/24x24/mate-disk-usage-analyzer.png | Bin 1146 -> 0 bytes baobab/pixmaps/Makefile.am | 65 +- ...color_apps_128x128_mate-disk-usage-analyzer.png | Bin 0 -> 7812 bytes ...hicolor_apps_16x16_mate-disk-usage-analyzer.png | Bin 0 -> 562 bytes ...hicolor_apps_22x22_mate-disk-usage-analyzer.png | Bin 0 -> 853 bytes ...hicolor_apps_24x24_mate-disk-usage-analyzer.png | Bin 0 -> 933 bytes ...hicolor_apps_32x32_mate-disk-usage-analyzer.png | Bin 0 -> 1333 bytes ...hicolor_apps_48x48_mate-disk-usage-analyzer.png | Bin 0 -> 2275 bytes ...olor_apps_scalable_mate-disk-usage-analyzer.svg | 1292 ++++++++++++++++++++ baobab/pixmaps/scalable/Makefile.am | 29 - .../pixmaps/scalable/mate-disk-usage-analyzer.svg | 1292 -------------------- baobab/pixmaps/shot.png | Bin 1248 -> 0 bytes 13 files changed, 1352 insertions(+), 1355 deletions(-) delete mode 100644 baobab/pixmaps/24x24/Makefile.am delete mode 100644 baobab/pixmaps/24x24/mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_128x128_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_16x16_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_22x22_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_24x24_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_32x32_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_48x48_mate-disk-usage-analyzer.png create mode 100644 baobab/pixmaps/hicolor_apps_scalable_mate-disk-usage-analyzer.svg delete mode 100644 baobab/pixmaps/scalable/Makefile.am delete mode 100644 baobab/pixmaps/scalable/mate-disk-usage-analyzer.svg delete mode 100644 baobab/pixmaps/shot.png (limited to 'baobab/pixmaps') diff --git a/baobab/pixmaps/24x24/Makefile.am b/baobab/pixmaps/24x24/Makefile.am deleted file mode 100644 index 7edb810a..00000000 --- a/baobab/pixmaps/24x24/Makefile.am +++ /dev/null @@ -1,29 +0,0 @@ -NULL = - -size = 24x24 - -iconsdir = $(datadir)/icons/hicolor/$(size)/apps - -icons_DATA = \ - mate-disk-usage-analyzer.png \ - $(NULL) - -icons_SOURCE = \ - $(NULL) - -EXTRA_DIST = \ - $(icons_DATA) \ - $(icons_SOURCE) - -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor - -install-data-hook: update-icon-cache -uninstall-hook: update-icon-cache -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi diff --git a/baobab/pixmaps/24x24/mate-disk-usage-analyzer.png b/baobab/pixmaps/24x24/mate-disk-usage-analyzer.png deleted file mode 100644 index f7a7a6ae..00000000 Binary files a/baobab/pixmaps/24x24/mate-disk-usage-analyzer.png and /dev/null differ diff --git a/baobab/pixmaps/Makefile.am b/baobab/pixmaps/Makefile.am index 6bfb6135..5edbe806 100644 --- a/baobab/pixmaps/Makefile.am +++ b/baobab/pixmaps/Makefile.am @@ -1,8 +1,63 @@ -SUBDIRS = 24x24 scalable +png_icons = \ + hicolor_apps_16x16_mate-disk-usage-analyzer.png \ + hicolor_apps_22x22_mate-disk-usage-analyzer.png \ + hicolor_apps_32x32_mate-disk-usage-analyzer.png \ + hicolor_apps_48x48_mate-disk-usage-analyzer.png \ + hicolor_apps_128x128_mate-disk-usage-analyzer.png \ + $(NULL) -imagesdir = $(datadir)/mate-disk-usage-analyzer/pixmaps -images_DATA = \ - shot.png +public_icons = \ + $(png_icons) \ + hicolor_apps_scalable_mate-disk-usage-analyzer.svg \ + $(NULL) + +hicolor_apps_%.png: hicolor_apps_scalable_mate-disk-usage-analyzer.svg + rsvg-convert -w $(word 1, $(subst x, ,$(word 1,$(subst _, ,$*)))) -h $(word 2, $(subst x, ,$(word 1,$(subst _, ,$*)))) $^ -o $@ EXTRA_DIST = \ - $(images_DATA) + $(public_icons) \ + $(NULL) + +############################################################################### + +install-icons: $(public_icons) + for icon in $(public_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \ + $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done + +uninstall-icons: + -for icon in $(public_icons); do \ + THEME=`echo $$icon | cut -d_ -f1`; \ + CONTEXT=`echo $$icon | cut -d_ -f2`; \ + SIZE=`echo $$icon | cut -d_ -f3`; \ + ICONFILE=`echo $$icon | cut -d_ -f4`; \ + rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \ + done + +install-data-local: install-icons + +uninstall-local: uninstall-icons + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: $(public_icons) + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +.PHONY: build-png-icons clean-png-icons +build-png-icons: $(png_icons) + +clean-png-icons: + rm -f $(png_icons) diff --git a/baobab/pixmaps/hicolor_apps_128x128_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_128x128_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..321e8983 Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_128x128_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_16x16_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_16x16_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..f0130d2a Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_16x16_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_22x22_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_22x22_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..0c481eec Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_22x22_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_24x24_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_24x24_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..e85e22ae Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_24x24_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_32x32_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_32x32_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..d276d1fc Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_32x32_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_48x48_mate-disk-usage-analyzer.png b/baobab/pixmaps/hicolor_apps_48x48_mate-disk-usage-analyzer.png new file mode 100644 index 00000000..d9e122ab Binary files /dev/null and b/baobab/pixmaps/hicolor_apps_48x48_mate-disk-usage-analyzer.png differ diff --git a/baobab/pixmaps/hicolor_apps_scalable_mate-disk-usage-analyzer.svg b/baobab/pixmaps/hicolor_apps_scalable_mate-disk-usage-analyzer.svg new file mode 100644 index 00000000..c9daaaad --- /dev/null +++ b/baobab/pixmaps/hicolor_apps_scalable_mate-disk-usage-analyzer.svg @@ -0,0 +1,1292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Spreadsheet + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + spreadheet + document + office + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/baobab/pixmaps/scalable/Makefile.am b/baobab/pixmaps/scalable/Makefile.am deleted file mode 100644 index caeb628d..00000000 --- a/baobab/pixmaps/scalable/Makefile.am +++ /dev/null @@ -1,29 +0,0 @@ -NULL = - -size = scalable - -iconsdir = $(datadir)/icons/hicolor/$(size)/apps - -icons_DATA = \ - mate-disk-usage-analyzer.svg \ - $(NULL) - -icons_SOURCE = \ - $(NULL) - -EXTRA_DIST = \ - $(icons_DATA) \ - $(icons_SOURCE) - -gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor - -install-data-hook: update-icon-cache -uninstall-hook: update-icon-cache -update-icon-cache: - @-if test -z "$(DESTDIR)"; then \ - echo "Updating Gtk icon cache."; \ - $(gtk_update_icon_cache); \ - else \ - echo "*** Icon cache not updated. After (un)install, run this:"; \ - echo "*** $(gtk_update_icon_cache)"; \ - fi diff --git a/baobab/pixmaps/scalable/mate-disk-usage-analyzer.svg b/baobab/pixmaps/scalable/mate-disk-usage-analyzer.svg deleted file mode 100644 index c9daaaad..00000000 --- a/baobab/pixmaps/scalable/mate-disk-usage-analyzer.svg +++ /dev/null @@ -1,1292 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Spreadsheet - - - Jakub Steiner - - - http://jimmac.musichall.cz - - - spreadheet - document - office - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/baobab/pixmaps/shot.png b/baobab/pixmaps/shot.png deleted file mode 100644 index 271ad117..00000000 Binary files a/baobab/pixmaps/shot.png and /dev/null differ -- cgit v1.2.1