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

« back to all changes in this revision

Viewing changes to 22x22/emotes/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
 
size = 22x22
2
 
context = emotes
3
 
 
4
 
iconsdir = $(themedir)/$(size)/$(context)
5
 
 
6
 
icons_DATA =                            \
7
 
        face-angel.png \
8
 
        face-angry.png \
9
 
        face-cool.png \
10
 
        face-crying.png \
11
 
        face-devilish.png \
12
 
        face-embarrassed.png \
13
 
        face-kiss.png \
14
 
        face-laugh.png \
15
 
        face-monkey.png \
16
 
        face-plain.png \
17
 
        face-raspberry.png \
18
 
        face-sad.png \
19
 
        face-sick.png \
20
 
        face-smile.png \
21
 
        face-smile-big.png \
22
 
        face-smirk.png \
23
 
        face-surprise.png \
24
 
        face-tired.png \
25
 
        face-uncertain.png \
26
 
        face-wink.png \
27
 
        face-worried.png
28
 
 
29
 
EXTRA_DIST = $(icons_DATA)
30
 
 
31
 
install-data-local: install-iconsDATA
32
 
        (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
33
 
 
34
 
check:
35
 
        if test -r CVS/Entries; then \
36
 
                for icon in *.png; do \
37
 
                        if grep $$icon CVS/Entries > /dev/null; then \
38
 
                                if ! grep $$icon Makefile > /dev/null; then \
39
 
                                        echo "Missing $$icon in Makefile.am"; \
40
 
                                        exit 1; \
41
 
                                fi; \
42
 
                        fi; \
43
 
                done; \
44
 
        else \
45
 
                for icon in *.png; do \
46
 
                        if ! grep $$icon Makefile > /dev/null; then \
47
 
                                echo "Missing $$icon in Makefile.am"; \
48
 
                                exit 1; \
49
 
                        fi; \
50
 
                done; \
51
 
        fi