blob: bf9e43b6b243be1fae354679e862f81756600783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
NULL =
dbusconfdir = $(DBUS_SYS_DIR)
dbusconf_DATA = ConsoleKit.conf
seatdir = $(sysconfdir)/ConsoleKit/seats.d
seat_DATA = 00-primary.seat
if HAVE_POLKIT
polkit_policydir = $(datadir)/polkit-1/actions
dist_polkit_policy_DATA = \
org.freedesktop.consolekit.policy \
$(NULL)
endif
servicedir = $(datadir)/dbus-1/system-services
service_in_files = org.freedesktop.ConsoleKit.service.in
service_DATA = $(service_in_files:.service.in=.service)
$(service_DATA): $(service_in_files) Makefile
$(edit) $< >$@
if HAVE_SYSTEMD
systemdsystemunit_DATA = \
console-kit-daemon.service \
console-kit-log-system-start.service \
console-kit-log-system-stop.service \
console-kit-log-system-restart.service
console-kit-daemon.service: console-kit-daemon.service.in
$(edit) $< >$@
console-kit-log-system-start.service: console-kit-log-system-start.service.in
$(edit) $< >$@
console-kit-log-system-stop.service: console-kit-log-system-stop.service.in
$(edit) $< >$@
console-kit-log-system-restart.service: console-kit-log-system-restart.service.in
$(edit) $< >$@
install-data-hook:
$(MKDIR_P) -m 755 \
$(DESTDIR)$(systemdsystemunitdir)/basic.target.wants \
$(DESTDIR)$(systemdsystemunitdir)/halt.target.wants \
$(DESTDIR)$(systemdsystemunitdir)/poweroff.target.wants \
$(DESTDIR)$(systemdsystemunitdir)/reboot.target.wants
( cd $(DESTDIR)$(systemdsystemunitdir)/basic.target.wants && \
$(LN_S) ../console-kit-log-system-start.service )
( cd $(DESTDIR)$(systemdsystemunitdir)/halt.target.wants && \
$(LN_S) ../console-kit-log-system-stop.service )
( cd $(DESTDIR)$(systemdsystemunitdir)/poweroff.target.wants && \
$(LN_S) ../console-kit-log-system-stop.service )
( cd $(DESTDIR)$(systemdsystemunitdir)/reboot.target.wants && \
$(LN_S) ../console-kit-log-system-restart.service )
endif
edit = sed \
-e 's|@sbindir[@]|$(sbindir)|g' \
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
-e 's|@localstatedir[@]|$(localstatedir)|g' \
-e 's|@CONSOLE_KIT_PID_FILE[@]|$(CONSOLE_KIT_PID_FILE)|g'
EXTRA_DIST = \
ck-log-system-restart \
ck-log-system-start \
ck-log-system-stop \
$(dbusconf_DATA) \
$(seat_DATA) \
$(service_in_files) \
console-kit-daemon.service.in \
console-kit-log-system-start.service.in \
console-kit-log-system-stop.service.in \
console-kit-log-system-restart.service.in \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
Makefile.in
CLEANFILES = \
$(service_DATA) \
console-kit-daemon.service \
console-kit-log-system-start.service \
console-kit-log-system-stop.service \
console-kit-log-system-restart.service
|