From 477cf6ad04b73e4d448abc6925cdb328d63521c3 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 29 May 2013 11:18:05 -0500 Subject: Adding an upstart job configuration --- data/Makefile.am | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'data/Makefile.am') diff --git a/data/Makefile.am b/data/Makefile.am index c142c4e..12ee39c 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -5,13 +5,21 @@ dbus_services_DATA = indicator-application.service %.service: %.service.in sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ +upstart_jobsdir = $(datadir)/upstart/sessions/ +upstart_jobs_DATA = indicator-application.conf + +%.conf: %.conf.in + sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + overridedir = $(pkgdatadir) override_DATA = ordering-override.keyfile EXTRA_DIST = \ indicator-application.service.in \ + indicator-application.conf.in \ ordering-override.keyfile CLEANFILES = \ - indicator-application.service + indicator-application.service \ + indicator-application.conf -- cgit v1.2.3 From a6999f41b1da373b48e897d8fbd218617a5fefa2 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 29 May 2013 11:43:45 -0500 Subject: Dropping the dbus service file --- data/Makefile.am | 6 ------ 1 file changed, 6 deletions(-) (limited to 'data/Makefile.am') diff --git a/data/Makefile.am b/data/Makefile.am index 12ee39c..85cb9c0 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -1,10 +1,4 @@ -dbus_servicesdir = $(DBUSSERVICEDIR) -dbus_services_DATA = indicator-application.service - -%.service: %.service.in - sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ - upstart_jobsdir = $(datadir)/upstart/sessions/ upstart_jobs_DATA = indicator-application.conf -- cgit v1.2.3 From 634e24e0a367100f76bd4701f27d54aaf53d7732 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 29 May 2013 14:23:35 -0500 Subject: Dropping service from extra dist and clean --- data/Makefile.am | 2 -- 1 file changed, 2 deletions(-) (limited to 'data/Makefile.am') diff --git a/data/Makefile.am b/data/Makefile.am index 85cb9c0..c6e82b2 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -9,11 +9,9 @@ overridedir = $(pkgdatadir) override_DATA = ordering-override.keyfile EXTRA_DIST = \ - indicator-application.service.in \ indicator-application.conf.in \ ordering-override.keyfile CLEANFILES = \ - indicator-application.service \ indicator-application.conf -- cgit v1.2.3 From 96efd3b86974e72d1c23a328e6892cacefc79e8c Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Mon, 28 Oct 2013 17:01:19 -0700 Subject: Adding an XDG Autostart file --- data/Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'data/Makefile.am') diff --git a/data/Makefile.am b/data/Makefile.am index c6e82b2..77ec71d 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -5,10 +5,17 @@ upstart_jobs_DATA = indicator-application.conf %.conf: %.conf.in sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ +xdg_autostartdir = /etc/xdg/autostart +xdg_autostart_DATA = indicator-application.desktop + +%.desktop: %.desktop.in + sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@ + overridedir = $(pkgdatadir) override_DATA = ordering-override.keyfile EXTRA_DIST = \ + indicator-application.desktop.in \ indicator-application.conf.in \ ordering-override.keyfile -- cgit v1.2.3