emailrelay/etc/Makefile.am
Graeme Walker 2538008bc2 v2.3
2022-04-10 12:00:00 +00:00

82 lines
2.8 KiB
Makefile

#
## Copyright (C) 2001-2021 Graeme Walker <graeme_walker@users.sourceforge.net>
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
#
if GCONFIG_PAM
e_pam_DATA = emailrelay
else
e_pam_DATA =
endif
EXTRA_DIST = \
emailrelay.conf.template \
emailrelay.auth.template \
emailrelay-fail2ban-jail \
emailrelay-fail2ban-filter \
emailrelay.service.in \
emailrelay.pam
e_sysconf_DATA = \
emailrelay.conf.template \
emailrelay.auth.template
e_examples_DATA = \
emailrelay-fail2ban-jail \
emailrelay-fail2ban-filter
e_systemd_DATA = \
emailrelay.service
emailrelay: emailrelay.pam
cp $(top_srcdir)/etc/emailrelay.pam $@
do_sed = sed -e "s:__INIT_DIR__:$(e_initdir):g" -e "s:__RUN_DIR__:$(e_rundir):g"
emailrelay.service: emailrelay.service.in
$(do_sed) < $(srcdir)/emailrelay.service.in > emailrelay.service
CLEANFILES = \
emailrelay \
emailrelay.service
if GCONFIG_INSTALL_HOOK
# disable this section when running configure for a .deb or .rpm
# package by using 'configure --disable-install-hook'
#
# creates the .conf file from .conf.template with directory edits
#
install-data-hook:
if test -f "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" ; then : ; else sed -e "s:^#spool-dir .*:spool-dir $(e_spooldir):g" -e 's:"/var/spool/emailrelay":"'"$(e_spooldir)"'":g' -e "s:/etc:$(e_sysconfdir):g" -e "s:/usr/local/bin:$(e_libexecdir):g" < "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf.template" > "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" ; fi
cp "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf.makeinstall"
# remove the .conf file if it has not been edited
uninstall-hook:
if diff -q "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf.makeinstall" ; then rm "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" ; fi
-rm "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf.makeinstall"
else
# if there is no .conf file then copy it from .conf.template
install-data-hook:
test -f "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf" || cp "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf.template" "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf"
# remove the .conf file - the .conf.template has been deleted when this runs
uninstall-hook:
-rm "$(DESTDIR)$(e_sysconfdir)/emailrelay.conf"
endif