blob: 09be69d0f4db73919c110b068ce39785026dae87 (
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
themedir = $(datadir)/icons/ContrastHigh-SVG
size = scalable
context = actions
icondir = $(themedir)/$(size)/$(context)
icon_DATA = \
application-exit.svg \
contact-new.svg \
dialog-cancel.svg \
dialog-close.svg \
dialog-ok.svg \
document-new.svg \
document-open-recent.svg \
document-open.svg \
document-print-preview.svg \
document-print.svg \
document-properties.svg \
document-revert.svg \
document-save-as.svg \
document-save.svg \
edit-clear.svg \
edit-copy.svg \
edit-cut.svg \
edit-delete.svg \
edit-find-replace.svg \
edit-find.svg \
edit-paste.svg \
edit-redo.svg \
edit-undo.svg \
folder-new.svg \
format-indent-less.svg \
format-indent-more.svg \
format-justify-center.svg \
format-justify-fill.svg \
format-justify-left.svg \
format-justify-right.svg \
format-text-bold.svg \
format-text-italic.svg \
format-text-strikethrough.svg \
format-text-underline.svg \
go-bottom.svg \
go-down.svg \
go-first.svg \
go-home.svg \
go-jump.svg \
go-last.svg \
go-next.svg \
go-previous.svg \
go-top.svg \
go-up.svg \
help-about.svg \
help-contents.svg \
help-faq.svg \
insert-image.svg \
insert-object.svg \
insert-text.svg \
list-add.svg \
list-remove.svg \
mail-forward.svg \
mail-mark-important.svg \
mail-mark-read.svg \
mail-mark-unread.svg \
mail-message-new.svg \
mail-reply-all.svg \
mail-reply-sender.svg \
mail-send-receive.svg \
media-eject.svg \
media-playback-pause.svg \
media-playback-start.svg \
media-playback-stop.svg \
media-record.svg \
media-seek-backward.svg \
media-seek-forward.svg \
media-skip-backward.svg \
media-skip-forward.svg \
object-flip-horizontal.svg \
object-flip-vertical.svg \
object-rotate-left.svg \
object-rotate-right.svg \
process-stop.svg \
system-lock-screen.svg \
system-log-out.svg \
system-run.svg \
system-search.svg \
system-shutdown.svg \
tool-check-spelling.svg \
tools-check-spelling.svg \
view-fullscreen.svg \
view-refresh.svg \
view-restore.svg \
view-sort-ascending.svg \
view-sort-descending.svg \
window-close.svg \
window-new.svg \
zoom-fit-best.svg \
zoom-in.svg \
zoom-original.svg \
zoom-out.svg
placeholder_FILES = \
address-book-new.svg \
appointment-new.svg \
call-start.svg \
call-stop.svg \
document-page-setup.svg \
document-send.svg \
edit-select-all.svg \
format-text-direction-ltr.svg \
format-text-direction-rtl.svg \
insert-link.svg \
mail-mark-junk.svg \
mail-mark-notjunk.svg \
mail-send.svg \
system-reboot.svg
if PLACEHOLDERS
icon_DATA += $(placeholder_FILES)
endif
EXTRA_DIST = \
$(icon_DATA) \
$(placeholder_FILES)
if LEGACY_ICON_MAPPING
install-data-local: install-iconDATA
(cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
endif
uninstall-symlinks:
list=`ls $(DESTDIR)$(themedir)/$(size)/$(context)`; \
for p in $$list; do \
if test -h $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; then \
rm -f $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; \
fi; \
done
uninstall-am: uninstall-iconDATA uninstall-symlinks
|