Initial commit

This commit is contained in:
Gergely Polonkai
2015-12-04 15:39:39 +01:00
commit b060ac5a76
31 changed files with 1379 additions and 0 deletions

19
data/Makefile.am Normal file
View File

@@ -0,0 +1,19 @@
# Telepathy manager file
managerdir = $(datadir)/telepathy/managers
manager_DATA = matrix.manager
# Dbus service file
BUILT_FILES = $(service_in_files:.service.in=.service)
servicedir = $(DBUS_SERVICES_DIR)
service_in_files = org.freedesktop.Telepathy.ConnectionManager.matrix.service.in
service_DATA = $(BUILT_FILES)
CLEANFILES = $(BUILT_FILES)
# Rule to make the service file with libexecdir expanded
$(service_DATA): $(service_in_files) Makefile
@sed -e "s|\@libexecdir\@|$(libexecdir)|" $< > $@
EXTRA_DIST= \
${service_in_files} \
${manager_DATA}

22
data/matrix.manager Normal file
View File

@@ -0,0 +1,22 @@
[ConnectionManager]
Name = matrix
BusName = org.freedesktop.Telepathy.ConnectionManager.matrix
ObjectPath = /org/freedesktop/Telepathy/ConnectionManager/matrix
[Protocol matrix]
param-account = s required
param-server = s required
param-fullname = s
param-username = s
param-port = q
param-password = s secret
param-charset = s
param-keepalive-interval = u
param-quit-message = s
param-use-ssl = b
param-password-prompt = b
default-port = 8448
default-charset = UTF-8
default-keepalive-interval = 30
default-use-ssl = true
default-password-prompt = true

View File

@@ -0,0 +1,3 @@
[D-BUS Service]
Name=org.freedesktop.Telepathy.ConnectionManager.matrix
Exec=@libexecdir@/telepathy-matrix