~skypce/indicator-session/indicator-session

« back to all changes in this revision

Viewing changes to data/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-09-08 18:15:03 UTC
  • mto: (13.1.3 lucid)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20090908181503-q1y00nsvk547ta4f
Tags: upstream-0.1.2
ImportĀ upstreamĀ versionĀ 0.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
%.service: %.service.in
10
10
        sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
11
11
 
 
12
##############################
 
13
# GConf Schema
 
14
##############################
 
15
 
 
16
schemadir =                                     \
 
17
        $(GCONF_SCHEMA_FILE_DIR)
 
18
 
 
19
schema_in_files =                               \
 
20
        indicator-session.schemas.in
 
21
 
 
22
schema_DATA =                                   \
 
23
        $(schema_in_files:.schemas.in=.schemas)
 
24
 
 
25
@INTLTOOL_SCHEMAS_RULE@
 
26
 
 
27
 
12
28
#$(dbus_services_DATA): $(service_in_files) Makefile
13
29
#       sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
14
30
 
15
 
EXTRA_DIST = $(service_in_files)
16
 
 
17
 
CLEANFILES = $(dbus_services_DATA)
 
31
EXTRA_DIST =                                    \
 
32
        $(service_in_files)                     \
 
33
        $(schema_in_files)
 
34
 
 
35
CLEANFILES =                                    \
 
36
        $(dbus_services_DATA)                   \
 
37
        $(schema_DATA)
 
38
 
 
39
if GCONF_SCHEMAS_INSTALL
 
40
install-data-local:
 
41
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
 
42
                gconftool-2 --makefile-install-rule $(schema_DATA)
 
43
else
 
44
install-data-local:
 
45
endif