-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
link dbus and systemd services, allows systemd activation.
If the dbus service contains SystemdService entry and the dbus-daemon is started with --systemd-activation, then requests for services on the user session bus will be handled by systemd, creating cgroups and being handled as native systemd services of Type=dbus.
- Loading branch information
Gustavo Sverzut Barbieri
committed
Mar 10, 2014
1 parent
4be9526
commit c52da37
Showing
8 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[D-BUS Service] | ||
Name=org.enlightenment.Efreet | ||
Exec=@prefix@/bin/efreetd | ||
@systemd_dbus_prefix@SystemdService=efreet.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[D-BUS Service] | ||
Name=org.enlightenment.Ethumb | ||
Exec=@prefix@/bin/ethumbd | ||
@systemd_dbus_prefix@SystemdService=ethumb.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, | ||
# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) | ||
# ------------------------------------------- | ||
# Retrieves the value of the pkg-config variable for the given module. | ||
AC_DEFUN([EFL_PKG_CHECK_VAR], | ||
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl | ||
AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl | ||
_PKG_CONFIG([$1], [variable="][$3]["], [$2]) | ||
AS_VAR_COPY([$1], [pkg_cv_][$1]) | ||
AS_VAR_IF([$1], [""], [$5], [$4])dnl | ||
])# PKG_CHECK_VAR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/efreet.service | ||
/ethumb.service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Unit] | ||
Description=Efreet Enlightenment FreeDesktop.Org Daemon | ||
|
||
[Service] | ||
Type=dbus | ||
BusName=org.enlightenment.Efreet | ||
ExecStart=@prefix@/bin/efreetd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Unit] | ||
Description=Enlightenment Thumbnailer | ||
|
||
[Service] | ||
Type=dbus | ||
BusName=org.enlightenment.Ethumb | ||
ExecStart=@prefix@/bin/ethumbd |