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

« back to all changes in this revision

Viewing changes to 32x32/categories/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 = categories
4
 
 
5
 
iconsdir = $(themedir)/$(size)/$(context)
6
 
 
7
 
icons_DATA =                            \
8
 
        applications-accessories.png    \
9
 
        applications-development.png    \
10
 
        applications-engineering.png    \
11
 
        applications-games.png          \
12
 
        applications-graphics.png       \
13
 
        applications-internet.png       \
14
 
        applications-multimedia.png     \
15
 
        applications-office.png         \
16
 
        applications-other.png  \
17
 
        applications-science.png        \
18
 
        applications-system.png \
19
 
        applications-utilities.png      \
20
 
        preferences-desktop.png \
21
 
        preferences-desktop-peripherals.png     \
22
 
        preferences-desktop-personal.png \
23
 
        preferences-other.png   \
24
 
        preferences-system.png          \
25
 
        preferences-system-network.png \
26
 
        system-help.png
27
 
 
28
 
EXTRA_DIST =                            \
29
 
        $(icons_DATA)
30
 
 
31
 
MAINTAINERCLEANFILES =                  \
32
 
        Makefile.in
33
 
 
34
 
install-data-local: install-iconsDATA
35
 
        (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
36
 
 
37
 
check:
38
 
        if test -r CVS/Entries; then \
39
 
                for icon in *.png; do \
40
 
                        if grep $$icon CVS/Entries > /dev/null; then \
41
 
                                if ! grep $$icon Makefile > /dev/null; then \
42
 
                                        echo "Missing $$icon in Makefile.am"; \
43
 
                                        exit 1; \
44
 
                                fi; \
45
 
                        fi; \
46
 
                done; \
47
 
        else \
48
 
                for icon in *.png; do \
49
 
                        if ! grep $$icon Makefile > /dev/null; then \
50
 
                                echo "Missing $$icon in Makefile.am"; \
51
 
                                exit 1; \
52
 
                        fi; \
53
 
                done; \
54
 
        fi