diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-05 02:04:23 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-05-05 02:04:23 +0100 |
commit | fa8610f4ac59b448cc5516a6eedc2386cddcff08 (patch) | |
tree | aa1acbd150558d21051fba373a0fe1d9207911fc /share | |
parent | be0ef5a68ffc3ece17acb0a6a3df281375789040 (diff) | |
download | pykolab-fa8610f4ac59b448cc5516a6eedc2386cddcff08.tar.gz |
Ship extra setup routines
Ship extra template files
Diffstat (limited to 'share')
-rw-r--r-- | share/Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/share/Makefile.am b/share/Makefile.am index 047b5c2..8a6dd94 100644 --- a/share/Makefile.am +++ b/share/Makefile.am @@ -3,16 +3,28 @@ templatedir = $(datadir)/kolab/templates template_DATA = \ $(wildcard templates/*.tpl) +hordetemplatedir = $(datadir)/kolab/templates/horde/conf.d/ +hordetemplate_DATA = \ + $(wildcard templates/horde/conf.d/*.tpl) + rctemplatedir = $(datadir)/kolab/templates/roundcubemail rctemplate_DATA = \ $(wildcard templates/roundcubemail/*.tpl) +zpushtemplatedir = $(datadir)/kolab/templates/zpush +zpushtemplate_DATA = \ + $(wildcard templates/zpush/*.tpl) + EXTRA_DIST = \ $(template_DATA) \ - $(rctemplate_DATA) + $(hordetemplate_DATA) \ + $(rctemplate_DATA) \ + $(zpushtemplate_DATA) install-exec-local: mkdir -p \ $(DESTDIR)/$(sysconfdir)/kolab/templates \ - $(DESTDIR)/$(sysconfdir)/kolab/templates/roundcubemail + $(DESTDIR)/$(sysconfdir)/kolab/templates/horde/conf.d \ + $(DESTDIR)/$(sysconfdir)/kolab/templates/roundcubemail \ + $(DESTDIR)/$(sysconfdir)/kolab/templates/zpush |