1themedir =  $(datadir)/icons/HighContrast-SVG
2size = scalable
3context = actions
4
5icondir = $(themedir)/$(size)/$(context)
6
7icon_DATA = \
8	application-exit.svg \
9	contact-new.svg \
10	dialog-cancel.svg \
11	dialog-close.svg \
12	dialog-ok.svg \
13	document-new.svg \
14	document-open-recent.svg \
15	document-open.svg \
16	document-print-preview.svg \
17	document-print.svg \
18	document-properties.svg \
19	document-revert.svg \
20	document-save-as.svg \
21	document-save.svg \
22	edit-clear.svg \
23	edit-copy.svg \
24	edit-cut.svg \
25	edit-delete.svg \
26	edit-find-replace.svg \
27	edit-find.svg \
28	edit-paste.svg \
29	edit-redo.svg \
30	edit-undo.svg \
31	folder-new.svg \
32	format-indent-less.svg \
33	format-indent-more.svg \
34	format-justify-center.svg \
35	format-justify-fill.svg \
36	format-justify-left.svg \
37	format-justify-right.svg \
38	format-text-bold.svg \
39	format-text-italic.svg \
40	format-text-strikethrough.svg \
41	format-text-underline.svg \
42	go-bottom.svg \
43	go-down.svg \
44	go-first.svg \
45	go-home.svg \
46	go-jump.svg \
47	go-last.svg \
48	go-next.svg \
49	go-previous.svg \
50	go-top.svg \
51	go-up.svg \
52	help-about.svg \
53	help-contents.svg \
54	help-faq.svg \
55	insert-image.svg \
56	insert-object.svg \
57	insert-text.svg \
58	list-add.svg \
59	list-remove.svg \
60	mail-forward.svg \
61	mail-mark-important.svg \
62	mail-mark-read.svg \
63	mail-mark-unread.svg \
64	mail-message-new.svg \
65	mail-reply-all.svg \
66	mail-reply-sender.svg \
67	mail-send-receive.svg \
68	media-eject.svg \
69	media-playback-pause.svg \
70	media-playback-start.svg \
71	media-playback-stop.svg \
72	media-record.svg \
73	media-seek-backward.svg \
74	media-seek-forward.svg \
75	media-skip-backward.svg \
76	media-skip-forward.svg \
77	object-flip-horizontal.svg \
78	object-flip-vertical.svg \
79	object-rotate-left.svg \
80	object-rotate-right.svg \
81	process-stop.svg \
82	system-lock-screen.svg \
83	system-log-out.svg \
84	system-run.svg \
85	system-search.svg \
86	system-shutdown.svg \
87	tool-check-spelling.svg \
88	tools-check-spelling.svg \
89	view-fullscreen.svg \
90	view-refresh.svg \
91	view-restore.svg \
92	view-sort-ascending.svg \
93	view-sort-descending.svg \
94	window-close.svg \
95	window-new.svg \
96	zoom-fit-best.svg \
97	zoom-in.svg \
98	zoom-original.svg \
99	zoom-out.svg
100
101placeholder_FILES = \
102	address-book-new.svg \
103	appointment-new.svg \
104	call-start.svg \
105	call-stop.svg \
106	document-page-setup.svg \
107	document-send.svg \
108	edit-select-all.svg \
109	format-text-direction-ltr.svg \
110	format-text-direction-rtl.svg \
111	insert-link.svg \
112	mail-mark-junk.svg \
113	mail-mark-notjunk.svg \
114	mail-send.svg \
115	system-reboot.svg
116
117if PLACEHOLDERS
118icon_DATA += $(placeholder_FILES)
119endif
120
121
122EXTRA_DIST =				\
123	$(icon_DATA)	\
124	$(placeholder_FILES)
125
126if LEGACY_ICON_MAPPING
127install-data-local: install-iconDATA
128	(cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
129endif
130
131
132uninstall-symlinks:
133	list=`ls $(DESTDIR)$(themedir)/$(size)/$(context)`; \
134	for p in $$list; do \
135		if test -h $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; then \
136			rm -f $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; \
137		fi; \
138	done
139
140uninstall-am: uninstall-iconDATA uninstall-symlinks
141