aboutsummaryrefslogtreecommitdiffstats
path: root/data/icons/Makefile.am
blob: ed3596b857d74e8feb9257ac873fd0617f9a788b (plain) (blame)
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
NULL =

public_icons_themes = \
    hicolor \
    $(NULL)

public_icons = \
    hicolor_apps_16x16_empathy.png \
    hicolor_apps_22x22_empathy.png \
    hicolor_apps_24x24_empathy.png \
    hicolor_apps_32x32_empathy.png \
    hicolor_apps_48x48_empathy.png \
    hicolor_apps_256x256_empathy.png \
    $(NULL)

private_icons_themes = \
    hicolor \
    $(NULL)

private_icons = \
    hicolor_actions_16x16_im-message-new.png \
    hicolor_actions_22x22_im-message-new.png \
    hicolor_actions_24x24_im-message-new.png \
    hicolor_status_16x16_im-message.png \
    hicolor_status_22x22_im-message.png \
    hicolor_status_16x16_user-typing.png \
    hicolor_status_16x16_user-available.png \
    hicolor_status_16x16_user-away.png \
    hicolor_status_16x16_user-busy.png \
    hicolor_status_16x16_user-idle.png \
    hicolor_status_16x16_user-offline.png \
    hicolor_status_16x16_empathy-pending.png \
    hicolor_status_22x22_user-available.png \
    hicolor_status_22x22_user-away.png \
    hicolor_status_22x22_user-busy.png \
    hicolor_status_22x22_user-idle.png \
    hicolor_status_22x22_user-offline.png \
    hicolor_status_22x22_empathy-pending.png \
    hicolor_status_24x24_user-available.png \
    hicolor_status_24x24_user-away.png \
    hicolor_status_24x24_user-busy.png \
    hicolor_status_24x24_user-idle.png \
    hicolor_status_24x24_user-offline.png \
    hicolor_status_24x24_empathy-pending.png \
    hicolor_status_32x32_user-available.png \
    hicolor_status_32x32_user-away.png \
    hicolor_status_32x32_user-busy.png \
    hicolor_status_32x32_user-idle.png \
    hicolor_status_32x32_user-offline.png \
    hicolor_status_32x32_empathy-pending.png \
    hicolor_status_48x48_user-available.png \
    hicolor_status_48x48_user-away.png \
    hicolor_status_48x48_user-busy.png \
    hicolor_status_48x48_user-idle.png \
    hicolor_status_48x48_user-offline.png \
    hicolor_status_48x48_empathy-pending.png \
    hicolor_status_scalable_user-available.svg \
    hicolor_status_scalable_user-away.svg \
    hicolor_status_scalable_user-busy.svg \
    hicolor_status_scalable_user-idle.svg \
    hicolor_status_scalable_user-offline.svg \
    hicolor_status_scalable_empathy-pending.svg \
    $(NULL)

EXTRA_DIST = \
    $(public_icons)     \
    $(private_icons)    \
    empathy.svg     \
    $(NULL)

include $(srcdir)/utils.mk

###############################################################################

gtk_update_icon_cache = gtk-update-icon-cache -f -t

update-icon-cache:
    @-if test -z "$(DESTDIR)"; then \
        echo "Updating Gtk icon cache."; \
        for theme in $(public_icons_themes); do \
            $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
        done; \
        for theme in $(private_icons_themes); do \
            $(gtk_update_icon_cache) $(pkgdatadir)/icons/$$theme; \
        done; \
    else \
        echo "*** Icon cache not updated.  After (un)install, run this:"; \
        for theme in $(public_icons_themes); do \
            echo "***   $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
        done; \
        for theme in $(private_icons_themes); do \
            echo "***   $(gtk_update_icon_cache) $(pkgdatadir)/icons/$$theme"; \
        done; \
    fi

install-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; \
    for icon in $(private_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)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
        $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/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; \
    for icon in $(private_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)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
    done

install-data-local:
    $(MAKE) install-icons
    $(MAKE) update-icon-cache

uninstall-local:
    $(MAKE) uninstall-icons
    $(MAKE) update-icon-cache

# Local copy of the "installed" icon. This is used to be able to run empathy
# from source (see bgo #616159)
local_icons_dir = local-copy

# Generate the lists of destination paths
public_icons_local_install_paths = $(foreach obj, $(public_icons), $(local_icons_dir)/$(subst _,/,$(call reorder,_,1 3 2 4,$(obj))))
private_icons_local_install_paths = $(foreach obj, $(private_icons), $(local_icons_dir)/$(subst _,/,$(call reorder,_,1 3 2 4,$(obj))))

# For each destination path we'll need to compute back the original icon
# and create a rule that will ensure that the destination directory exists
# and then copy the original file
define icon_local_install_rule_template
$(local_icons_dir)/$$(subst _,/,$$(call reorder,_,1 3 2 4,$1)): $1
    $$(AM_V_GEN)mkdir -p $$(@D)
    $$(AM_V_GEN)cp $$^ $$@
endef

# Instantiate the template above for each icon
$(foreach icon,$(public_icons),$(eval $(call icon_local_install_rule_template,$(icon))))
$(foreach icon,$(private_icons),$(eval $(call icon_local_install_rule_template,$(icon))))

install-icons-src: $(public_icons_local_install_paths) $(private_icons_local_install_paths)

all: install-icons-src

clean-local:
    -rm -rf $(local_icons_dir)