~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to data/Makefile.am

  • Committer: mvo
  • Date: 2006-02-20 13:59:01 UTC
  • Revision ID: gustavo@niemeyer.net-20060220135901-720c2a7ec5a58192
* removed the wretched intl again

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@INTLTOOL_DESKTOP_RULE@
2
 
 
3
 
desktopdir       = $(sysconfdir)/xdg/autostart
4
 
desktop_in_files = update-notifier.desktop.in
5
 
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
6
 
 
7
 
schemadir = $(datadir)/gconf/schemas
8
 
schema_in_files = update-notifier.schemas.in
9
 
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
10
 
@INTLTOOL_SCHEMAS_RULE@
 
1
 
11
2
 
12
3
helperdir = $(libdir)/update-notifier
13
 
helper_SCRIPTS = apt_check.py apt-cdrom-check cddistupgrader update-motd-reboot-required update-motd-updates-available update-motd-cpu-checker
 
4
helper_SCRIPTS = apt-check apt-cdrom-check 
14
5
 
15
6
notifydir = $(datadir)/update-notifier
16
7
notify_SCRIPTS = notify-reboot-required
17
8
 
18
 
EXTRA_DIST= $(helper_SCRIPTS) \
19
 
            $(desktop_in_files) \
20
 
            $(schema_in_files)
21
 
 
22
 
install-data-local:
23
 
        -GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
 
9
EXTRA_DIST= $(helper_SCRIPTS)
24
10