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

« back to all changes in this revision

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