~ubuntu-branches/ubuntu/maverick/indicator-applet/maverick

« back to all changes in this revision

Viewing changes to data/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-02-19 16:12:01 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20090219161201-2x1b891o9vlg1bkv
Tags: upstream-0.1.1
ImportĀ upstreamĀ versionĀ 0.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
@INTLTOOL_SCHEMAS_RULE@
34
34
 
 
35
##############################
 
36
# Icons
 
37
##############################
 
38
 
 
39
iconsdir = $(datadir)/icons/hicolor/scalable/apps
 
40
 
 
41
icons_DATA = indicator-applet.svg
 
42
 
 
43
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 
44
 
 
45
install-data-hook: update-icon-cache
 
46
uninstall-hook: update-icon-cache
 
47
update-icon-cache:
 
48
        @-if test -z "$(DESTDIR)"; then \
 
49
                echo "Updating Gtk icon cache."; \
 
50
                $(gtk_update_icon_cache); \
 
51
        else \
 
52
                echo "*** Icon cache not updated.  After (un)install, run this:"; \
 
53
                echo "***   $(gtk_update_icon_cache)"; \
 
54
        fi
 
55
 
35
56
 
36
57
##############################
37
58
# Autojunk
44
65
        *.bak
45
66
 
46
67
EXTRA_DIST =                                    \
 
68
        $(icons_DATA) \
47
69
        GNOME_IndicatorApplet.server.in.in      \
48
70
        $(schema_in_files)
49
71
 
58
80
install-data-local:
59
81
endif
60
82
 
 
83
 
 
84