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

« back to all changes in this revision

Viewing changes to 22x22/emblems/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
 
NULL=
2
 
 
3
 
size = 22x22
4
 
context = emblems
5
 
iconsdir = $(themedir)/$(size)/$(context)
6
 
 
7
 
icons_DATA =                            \
8
 
        emblem-default.png              \
9
 
        emblem-documents.png            \
10
 
        emblem-downloads.png            \
11
 
        emblem-favorite.png             \
12
 
        emblem-generic.png      \
13
 
        emblem-important.png            \
14
 
        emblem-mail.png \
15
 
        emblem-new.png                  \
16
 
        emblem-package.png              \
17
 
        emblem-photos.png               \
18
 
        emblem-readonly.png             \
19
 
        emblem-shared.png       \
20
 
        emblem-symbolic-link.png        \
21
 
        emblem-system.png               \
22
 
        emblem-unreadable.png           \
23
 
        emblem-urgent.png       \
24
 
        emblem-web.png
25
 
        $(NULL)
26
 
 
27
 
EXTRA_DIST = $(icons_DATA)
28
 
 
29
 
install-data-local: install-iconsDATA
30
 
        (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
31
 
 
32
 
check:
33
 
        if test -r CVS/Entries; then \
34
 
                for icon in *.png; do \
35
 
                        if grep $$icon CVS/Entries > /dev/null; then \
36
 
                                if ! grep $$icon Makefile > /dev/null; then \
37
 
                                        echo "Missing $$icon in Makefile.am"; \
38
 
                                        exit 1; \
39
 
                                fi; \
40
 
                        fi; \
41
 
                done; \
42
 
        else \
43
 
                for icon in *.png; do \
44
 
                        if ! grep $$icon Makefile > /dev/null; then \
45
 
                                echo "Missing $$icon in Makefile.am"; \
46
 
                                exit 1; \
47
 
                        fi; \
48
 
                done; \
49
 
        fi