summaryrefslogtreecommitdiff
path: root/logview/data/icons/Makefile.am
blob: 9662983ef267c4fc7c1265de56f432a1b8593d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
NULL =

public_icons_themes = \
	hicolor	\
	$(NULL)

png_icons = \
        hicolor_apps_16x16_mate-system-log.png \
        hicolor_apps_22x22_mate-system-log.png \
        hicolor_apps_24x24_mate-system-log.png \
        hicolor_apps_32x32_mate-system-log.png \
        hicolor_apps_48x48_mate-system-log.png \
        hicolor_apps_256x256_mate-system-log.png \
	$(NULL)

public_icons = \
	$(png_icons) \
	hicolor_apps_scalable_mate-system-log-symbolic.svg \
	$(NULL)

if HAVE_INKSCAPE
hicolor_apps_16x16_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=303:65:319:81 -w=16 -h=16 -e=$@)), \
		$(error could not locate inkscape) \
	)

hicolor_apps_22x22_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=303:101:325:123 -w=22 -h=22 -e=$@)), \
		$(error could not locate inkscape) \
	)

hicolor_apps_24x24_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=302:100:326:124 -w=24 -h=24 -e=$@)), \
		$(error could not locate inkscape) \
	)

hicolor_apps_32x32_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=304:142:336:174 -w=32 -h=32 -e=$@)), \
		$(error could not locate inkscape) \
	)

hicolor_apps_48x48_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=296:202:344:250 -w=48 -h=48 -e=$@)), \
		$(error could not locate inkscape) \
	)

hicolor_apps_256x256_mate-system-log.png: logview.svg
	$(if $(wildcard $(INKSCAPE)), \
		$(info $(shell $(INKSCAPE) -z $^ --export-area=33:11:289:267 -w=256 -h=256 -e=$@)), \
		$(error could not locate inkscape) \
	)
endif

noinst_DATA = \
	logview.svg \
	$(NULL)

EXTRA_DIST = \
	$(public_icons)		\
	$(noinst_DATA)		\
	$(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:
	@-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)