~ubuntu-branches/ubuntu/natty/gnome-icon-theme/natty

« back to all changes in this revision

Viewing changes to 32x32/apps/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-06-10 11:50:31 UTC
  • mfrom: (1.1.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20100610115031-d5kn01lfqthbzcim
Tags: 2.30.3-1ubuntu1
* Merge with Debian unstable, remaining Ubuntu changes:
* debian/control.in:
  - Add Vcs-Bzr link
* debian/rules:
  - Install distributor icons
  - Use the --enable-icon-mapping configure option
* debian/prerm:
* debian/postinst:
  - Update alternatives for Ubuntu icon
* debian/source:
  - Use source version 3.0
* debian/ubuntu-icons: 
  - Ubuntu logo and cd isos logos
* debian/watch: 
  - Watch unstable versions

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
size = 32x32
3
 
context = apps
4
 
 
5
 
iconsdir = $(themedir)/$(size)/$(context)
6
 
 
7
 
icons_DATA =                            \
8
 
        accessories-calculator.png      \
9
 
        accessories-character-map.png   \
10
 
        accessories-dictionary.png      \
11
 
        accessories-text-editor.png     \
12
 
        help-browser.png                \
13
 
        logviewer.png                   \
14
 
        multimedia-volume-control.png                   \
15
 
        preferences-desktop-accessibility.png   \
16
 
        preferences-desktop-font.png    \
17
 
        preferences-desktop-keyboard.png        \
18
 
        preferences-desktop-keyboard-shortcuts.png      \
19
 
        preferences-desktop-locale.png  \
20
 
        preferences-desktop-remote-desktop.png  \
21
 
        preferences-desktop-screensaver.png     \
22
 
        preferences-desktop-theme.png   \
23
 
        preferences-desktop-wallpaper.png       \
24
 
        preferences-system-windows.png  \
25
 
        system-file-manager.png         \
26
 
        system-software-install.png     \
27
 
        system-software-update.png \
28
 
        system-users.png        \
29
 
        user-info.png   \
30
 
        utilities-system-monitor.png    \
31
 
        utilities-terminal.png
32
 
 
33
 
EXTRA_DIST =            \
34
 
        $(icons_DATA)
35
 
 
36
 
MAINTAINERCLEANFILES =  \
37
 
        Makefile.in
38
 
 
39
 
install-data-local: install-iconsDATA
40
 
        (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
41
 
 
42
 
check:
43
 
        if test -r CVS/Entries; then \
44
 
                for icon in *.png; do \
45
 
                        if grep $$icon CVS/Entries > /dev/null; then \
46
 
                                if ! grep $$icon Makefile > /dev/null; then \
47
 
                                        echo "Missing $$icon in Makefile.am"; \
48
 
                                        exit 1; \
49
 
                                fi; \
50
 
                        fi; \
51
 
                done; \
52
 
        else \
53
 
                for icon in *.png; do \
54
 
                        if ! grep $$icon Makefile > /dev/null; then \
55
 
                                echo "Missing $$icon in Makefile.am"; \
56
 
                                exit 1; \
57
 
                        fi; \
58
 
                done; \
59
 
        fi