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

« back to all changes in this revision

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