~ubuntu-branches/ubuntu/maverick/almanah/maverick

« back to all changes in this revision

Viewing changes to data/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-05-16 15:49:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516154921-2uhvlj8btb4qygmd
Tags: 0.6.1-0ubuntu1
* New upstream release (LP: #368078)
* debian/control:
  - Bump Standards-Version to 3.8.1
  - Add intltool, libedataserver1.2-dev, libedataserverui1.2-dev, 
    libecal1.2-dev, libcryptui-dev as build dependency
  - Remove build dependency on autotools-dev and chrpath
* debian/{control/compat/rules}: Move to mimalistic dh7 style
* Update debian/watch
* Update copyright information

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SUBDIRS = icons
2
2
 
 
3
###############################################################################
 
4
# Icons
 
5
###############################################################################
 
6
 
3
7
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
4
8
 
5
9
install-data-hook: update-icon-cache
13
17
                echo "***   $(gtk_update_icon_cache)"; \
14
18
        fi
15
19
 
 
20
###############################################################################
16
21
# UI file
 
22
###############################################################################
 
23
 
17
24
uidir = $(datadir)/almanah
18
25
ui_DATA = almanah.ui
19
26
 
 
27
###############################################################################
20
28
# Desktop file
 
29
###############################################################################
 
30
 
21
31
@INTLTOOL_DESKTOP_RULE@
22
32
 
23
33
desktop_in_files = almanah.desktop.in
24
34
desktopdir = $(datadir)/applications
25
35
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
26
36
 
 
37
###############################################################################
 
38
# GConf schemas
 
39
###############################################################################
 
40
 
 
41
@INTLTOOL_SCHEMAS_RULE@
 
42
 
 
43
schemasdir = $(GCONF_SCHEMA_FILE_DIR)
 
44
schemas_in_files = almanah.schemas.in
 
45
schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
 
46
 
 
47
install-data-local:
 
48
if GCONF_SCHEMAS_INSTALL
 
49
        @GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) gconftool-2 \
 
50
                --makefile-install-rule $(schemas_DATA) || \
 
51
                (echo ;\
 
52
                echo "*****************************************************"; \
 
53
                echo "Installation of schemas failed: install them manually"; \
 
54
                echo "*****************************************************";)
 
55
        @true
 
56
endif
 
57
 
 
58
###############################################################################
 
59
# General
 
60
###############################################################################
 
61
 
27
62
EXTRA_DIST = \
28
 
        $(ui_DATA)      \
29
 
        $(desktop_in_files)
30
 
CLEANFILES = $(desktop_DATA)
 
63
        $(ui_DATA)              \
 
64
        $(desktop_in_files)     \
 
65
        $(schemas_in_files)
 
66
CLEANFILES = \
 
67
        $(desktop_DATA)         \
 
68
        $(schemas_DATA)