~ubuntu-branches/ubuntu/vivid/alarm-clock-applet/vivid

« back to all changes in this revision

Viewing changes to data/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-03-17 09:02:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100317090244-ni0ye04mva2hxe10
Tags: 0.3.0-1
* New upstream release
* debian/control:
  + No change bump of Standards-Version to 3.8.4
  + Update build-deps:
    - Drop libglade, libpanel-applet, libgnomevfs2, libgnome{2,ui}
    - Add libxml2-dev and libunique-dev, intltool
* debian/patches/01_update-alarms-eta,patch:
  + Dropped, applied upstream
* debian/(alarm-clock-applet.1, alarm-clock-applet.manpages):
  + Add manpage for alarm-clock-applet, now that the binary is moved to
    /usr/bin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/Makefile.decl
 
2
 
 
3
SUBDIRS = icons
 
4
 
 
5
uidir = $(pkgdatadir)
 
6
ui_DATA = alarm-clock.ui
 
7
 
 
8
 
 
9
desktopdir   = $(datadir)/applications
 
10
desktop_in_files = alarm-clock-applet.desktop.in
 
11
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 
12
 
 
13
@INTLTOOL_DESKTOP_RULE@
 
14
 
 
15
schemasdir = $(GCONF_SCHEMA_FILE_DIR)
 
16
schemas_in_files = alarm-clock.schemas.in
 
17
schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
 
18
 
 
19
@INTLTOOL_SCHEMAS_RULE@
 
20
 
 
21
if GCONF_SCHEMAS_INSTALL
 
22
install-data-local:
 
23
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
 
24
        $(GCONFTOOL) --makefile-install-rule $(schemas_DATA)
 
25
 
 
26
uninstall-local:
 
27
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
 
28
        $(GCONFTOOL) --makefile-uninstall-rule $(schemas_DATA)
 
29
endif
 
30
 
 
31
 
 
32
EXTRA_DIST += $(ui_DATA) $(desktop_in_files) $(schemas_in_files)
 
33
 
 
34
CLEANFILES = $(desktop_DATA) $(schemas_DATA)
 
35