From 312ba610a1e98fc656fb58178227d7d45a64494e Mon Sep 17 00:00:00 2001 From: Perberos Date: Mon, 14 Nov 2011 18:24:48 -0300 Subject: initial --- cpufreq/pixmaps/Makefile.am | 64 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 cpufreq/pixmaps/Makefile.am (limited to 'cpufreq/pixmaps/Makefile.am') diff --git a/cpufreq/pixmaps/Makefile.am b/cpufreq/pixmaps/Makefile.am new file mode 100644 index 00000000..e13dcad5 --- /dev/null +++ b/cpufreq/pixmaps/Makefile.am @@ -0,0 +1,64 @@ + +cpufreq_pixmapdir = $(pixmapsdir)/cpufreq-applet +cpufreq_pixmap_DATA = \ + cpufreq-100.png \ + cpufreq-75.png \ + cpufreq-50.png \ + cpufreq-25.png \ + cpufreq-na.png + +icons = \ + mate-cpu-frequency-applet.16.png \ + mate-cpu-frequency-applet.22.png \ + mate-cpu-frequency-applet.24.png \ + mate-cpu-frequency-applet.32.png \ + mate-cpu-frequency-applet.svg + +EXTRA_DIST = \ + $(cpufreq_pixmap_DATA) \ + $(icons) + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +uninstall-local: + for icon in $(icons); do \ + SIZE=`echo $$icon | cut -d. -f2`; \ + FILE=`echo $$icon | cut -d. -f1,3`; \ + if [ "$$SIZE" = "svg" ]; then \ + SIZE="scalable"; \ + FILE="$$FILE.svg"; \ + else \ + SIZE="$${SIZE}x$${SIZE}"; \ + fi; \ + rm -f $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/$$FILE; \ + done + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +install-data-local: + for icon in $(icons); do \ + SIZE=`echo $$icon | cut -d. -f2`; \ + FILE=`echo $$icon | cut -d. -f1,3`; \ + if [ "$$SIZE" = "svg" ]; then \ + SIZE="scalable"; \ + FILE="$$FILE.svg"; \ + else \ + SIZE="$${SIZE}x$${SIZE}"; \ + fi; \ + mkdir -p $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/; \ + $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(iconsdir)/hicolor/$$SIZE/apps/$$FILE; \ + done + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +-include $(top_srcdir)/git.mk -- cgit v1.2.1