~encompass/dynazine/trunk

« back to all changes in this revision

Viewing changes to tango-icon-theme-0.8.1/scalable/status/Makefile.am

  • Committer: Jason Brower
  • Date: 2009-01-31 05:24:59 UTC
  • Revision ID: encompass@essence-20090131052459-4ldn9dwrk1hzt53h
Fist commit of data.  Has alot of stuff...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
size = scalable
 
3
context = status
 
4
 
 
5
iconsdir = $(themedir)/$(size)/$(context)
 
6
 
 
7
icons_DATA =                            \
 
8
        audio-volume-high.svg           \
 
9
        audio-volume-low.svg            \
 
10
        audio-volume-medium.svg         \
 
11
        audio-volume-muted.svg          \
 
12
        battery-caution.svg             \
 
13
        dialog-error.svg                \
 
14
        dialog-information.svg          \
 
15
        dialog-warning.svg              \
 
16
        folder-drag-accept.icon         \
 
17
        folder-drag-accept.svg          \
 
18
        folder-open.svg                 \
 
19
        folder-visiting.icon            \
 
20
        folder-visiting.svg             \
 
21
        image-loading.svg               \
 
22
        image-missing.svg               \
 
23
        mail-attachment.svg             \
 
24
        network-error.svg               \
 
25
        network-idle.svg                \
 
26
        network-offline.svg             \
 
27
        network-receive.svg             \
 
28
        network-transmit.svg            \
 
29
        network-transmit-receive.svg    \
 
30
        network-wireless-encrypted.svg  \
 
31
        printer-error.svg               \
 
32
        software-update-available.svg   \
 
33
        software-update-urgent.svg      \
 
34
        user-trash-full.svg             \
 
35
        weather-clear.svg               \
 
36
        weather-clear-night.svg         \
 
37
        weather-few-clouds.svg          \
 
38
        weather-few-clouds-night.svg    \
 
39
        weather-overcast.svg            \
 
40
        weather-severe-alert.svg        \
 
41
        weather-showers.svg             \
 
42
        weather-showers-scattered.svg   \
 
43
        weather-snow.svg                \
 
44
        weather-storm.svg
 
45
 
 
46
EXTRA_DIST =                            \
 
47
        $(icons_DATA)
 
48
 
 
49
install-data-local: install-iconsDATA
 
50
        (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
 
51
if ENABLE_LARGE_BITMAPS
 
52
        for i in 48 64 72 96 128; do \
 
53
                pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
 
54
                $(mkinstalldirs) $$pngdir; \
 
55
                for icon in $(icons_DATA); do \
 
56
                        $(top_builddir)/svg2png.sh $$i $$pngdir $(srcdir)/$$icon; \
 
57
                done; \
 
58
                (cd $(DESTDIR)$(themedir)/$${i}x$${i} && $(ICONMAP) -c $(context)); \
 
59
        done
 
60
endif
 
61
 
 
62
uninstall-local:
 
63
        for i in 48 64 72 96 128; do \
 
64
                pngdir="$(DESTDIR)$(themedir)/$${i}x$${i}/$(context)"; \
 
65
                for icon in $(icons_DATA); do \
 
66
                        iname=`echo $$icon|sed -e "s/svg/png/g"`; \
 
67
                        rm -f $$pngdir/$$iname; \
 
68
                done; \
 
69
        done