mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
Remove unused service files
This commit is contained in:
parent
9f5b29b8c3
commit
3856b3595b
9 changed files with 0 additions and 139 deletions
|
|
@ -1,18 +0,0 @@
|
|||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(SYSTEMD systemd REQUIRED)
|
||||
execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=systemduserunitdir systemd OUTPUT_VARIABLE SYSTEMD_USER_UNIT_DIR)
|
||||
string(REGEX REPLACE "[ \t\n]+" "" SYSTEMD_USER_UNIT_DIR ${SYSTEMD_USER_UNIT_DIR})
|
||||
|
||||
macro(plasma_phone_install_service name)
|
||||
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${name}.service.cmake ${CMAKE_CURRENT_BINARY_DIR}/${name}.service)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${name}.service
|
||||
DESTINATION ${SYSTEMD_USER_UNIT_DIR})
|
||||
endmacro()
|
||||
|
||||
plasma_phone_install_service(kactivitymanagerd)
|
||||
plasma_phone_install_service(kded5)
|
||||
plasma_phone_install_service(kdeinit5)
|
||||
plasma_phone_install_service(kglobalaccel5)
|
||||
plasma_phone_install_service(kuiserver5)
|
||||
plasma_phone_install_service(plasma-phone-ui)
|
||||
plasma_phone_install_service(plasma-phone)
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
This files are for systemd units.
|
||||
|
||||
Our current implemention is based on top of the Ubuntu phone which
|
||||
still uses upstart. So these files do nothing, but we're still keeping
|
||||
them over here for now.
|
||||
|
||||
The situation should be revisited in about 6 months.
|
||||
|
||||
- 19th June 2015
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts kactivitymanagerd.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=kactivitymanagerd
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kactivitymanagerd start-daemon
|
||||
BusName=org.kde.ActivityManager
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts kded5.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=kded5
|
||||
Requires=kdeinit5.service
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kded5
|
||||
BusName=org.kde.kded5
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts kdeinit5.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=kdeinit5
|
||||
Requires=dbus.socket
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kdeinit5 +kcminit_startup --no-fork
|
||||
BusName=org.kde.klauncher5
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts kglobalaccel5.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=kglobalaccel5
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kglobalaccel5
|
||||
BusName=org.kde.kglobalaccel
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts kuiserver5.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=kuiserver5
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/kuiserver5
|
||||
BusName=org.kde.kuiserver
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts Plasma shell for phones.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=Plasma Phone UI
|
||||
Requires=dbus.socket
|
||||
After=
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
EnvironmentFile=-/var/lib/environment/plasma-phone/*.conf
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/plasmashell -p org.kde.plasma.phone -n
|
||||
ExecStop=@CMAKE_INSTALL_FULL_BINDIR@/kquitapp5 plasmashell
|
||||
Restart=on-failure
|
||||
BusName=org.kde.plasmashell
|
||||
|
||||
[Install]
|
||||
WantedBy=user-session.target
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
#
|
||||
# Copyright (C) 2014 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
|
||||
#
|
||||
# Starts Plasma shell for phones.
|
||||
#
|
||||
|
||||
[Unit]
|
||||
Description=Plasma Phone
|
||||
Requires=dbus.socket
|
||||
|
||||
[Service]
|
||||
Environment=DBUS_SESSION_BUS_ADDRESS=unix:path=%t/dbus/user_bus_socket
|
||||
Environment=PLASMA_PLATFORM=phone
|
||||
Environment=QT_IM_MODULE=Maliit
|
||||
ExecStart=@CMAKE_INSTALL_FULL_BINDIR@/plasma-phone
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=user-session.target
|
||||
Loading…
Reference in a new issue