~ubuntu-branches/ubuntu/lucid/awn-extras-applets/lucid

« back to all changes in this revision

Viewing changes to Makefile.schemas

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2010-03-30 20:26:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100330202640-vza3bdnv9gc9bg5z
Tags: 0.4.0~rc1-0ubuntu1
* New upstream release (rc1) (LP: #551309)
 - Stack applet close on click (LP: #261520)
* debian/patches/
 - 03-remove-cairo-menu-pref.patch: From upstream (r1244 + r1245 + r1252),
   remove menu entry for cairo-menu preferences, it's not implemented
   (LP: #511254)
 - 04-tomboy-threading-free.patch: From upstream (r1246), remove threading to
   make the applet working. 
* debian/*.install: Update installation location of comics and digital 
  applets.
* debian/control: 
 - Move digital applet from python to C, and add proper Replaces.
 - Add Replaces for awn-applets-c-core to handle migration from 0.3.2.2.
   (LP: #524559)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# vim: set ft=automake ts=8 sts=8 sw=8 :
2
2
 
 
3
schema_in_files = awn-applet-$(APPLET_NAME).schema-ini.in
3
4
schemadir = $(datadir)/avant-window-navigator/schemas
4
 
schema_DATA = awn-applet-$(APPLET_NAME).schema-ini
 
5
schema_DATA = $(schema_in_files:.schema-ini.in=.schema-ini)
5
6
 
6
7
if GCONF_SCHEMAS_INSTALL
7
8
gconfschemasdir   = @GCONF_SCHEMA_FILE_DIR@
8
 
gconfschemas_in_files =$(schema_DATA:.schema-ini=.schemas.in)
9
 
gconfschemas_DATA = $(gconfschemas_in_files:.schemas.in=.schemas)
 
9
gconfschemas_DATA = $(schema_DATA:.schema-ini=.schemas)
10
10
 
11
 
%.schemas.in: %.schema-ini
 
11
%.schemas: %.schema-ini
12
12
        $(QUIET_GEN)$(LDA_BINDIR)/lda-schema-to-gconf $< $@
13
13
 
14
 
@INTLTOOL_SCHEMAS_RULE@
15
 
 
16
14
install-data-local: $(gconfschemas_DATA)
17
15
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(gconfschemas_DATA)
18
16
 
19
 
CLEANFILES += $(gconfschemas_in_files) $(gconfschemas_DATA)
 
17
CLEANFILES += $(gconfschemas_DATA)
20
18
endif
21
19
 
22
 
EXTRA_DIST += $(schema_DATA)
 
20
@INTLTOOL_SCHEMA_INI_RULE@
 
21
 
 
22
CLEANFILES += $(schema_DATA)
 
23
 
 
24
EXTRA_DIST += $(schema_in_files)