xrdp/instfiles/Makefile.am

107 lines
1.9 KiB
Makefile
Raw Normal View History

EXTRA_DIST = \
keymap-names.txt \
xrdp-sesman.service.in \
xrdp.service.in
#
# substitute directories in service file
#
CLEANFILES= \
xrdp-sesman.service \
xrdp.service
SUBST_VARS = sed \
-e 's|@sbindir[@]|$(sbindir)|g' \
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
-e 's|@localstatedir[@]|$(localstatedir)|g'
subst_verbose = $(subst_verbose_@AM_V@)
subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@)
subst_verbose_0 = @echo " SUBST $@";
SUFFIXES = .in
.in:
$(subst_verbose)$(SUBST_VARS) $< > $@
2008-08-17 11:17:58 +04:00
#
# files for all platforms
#
2008-08-17 11:17:58 +04:00
startscriptdir=$(sysconfdir)/xrdp
dist_startscript_DATA = \
2024-05-23 21:55:39 +03:00
km-00000406.toml \
km-00000407.toml \
km-00000409.toml \
km-0000040a.toml \
km-0000040b.toml \
km-0000040c.toml \
km-00000410.toml \
km-00000411.toml \
km-00000412.toml \
km-00000414.toml \
km-00000415.toml \
km-00000416.toml \
km-00000419.toml \
km-0000041d.toml \
km-00000807.toml \
km-00000809.toml \
km-0000080a.toml \
km-0000080c.toml \
km-00000813.toml \
km-00000816.toml \
km-0000100c.toml \
km-00010409.toml \
km-19360409.toml
2008-08-18 03:08:17 +04:00
#
# platform specific files
#
SUBDIRS =
if LINUX
SUBDIRS += \
pam.d \
pulse
if HAVE_SYSTEMD
systemdsystemunit_DATA = \
xrdp-sesman.service \
xrdp.service
else
SUBDIRS += \
default \
init.d
endif # HAVE_SYSTEMD
endif # LINUX
if FREEBSD
SUBDIRS += \
pam.d \
rc.d \
pulse
endif
2018-01-30 12:42:42 +03:00
if MACOS
SUBDIRS += pam.d
endif
#
# install-data-hook for each platform
2017-05-24 11:59:58 +03:00
# TODO: subst these directories as well as service files
#
if LINUX
2008-08-18 03:08:17 +04:00
# must be tab below
install-data-hook:
if [ -f $(DESTDIR)$(sysconfdir)/init.d/xrdp ]; then \
sed -i 's|__BASE__|$(prefix)|' $(DESTDIR)$(sysconfdir)/init.d/xrdp; \
fi
endif
if FREEBSD
# must be tab below
install-data-hook:
sed -e 's|%%PREFIX%%|$(prefix)|g' \
-e 's|%%LOCALSTATEDIR%%|$(localstatedir)|g' \
-i '' \
$(DESTDIR)$(sysconfdir)/rc.d/xrdp \
$(DESTDIR)$(sysconfdir)/rc.d/xrdp-sesman
endif