2005-07-06 23:10:26 +00:00
|
|
|
#!/usr/bin/make -f
|
2005-07-07 01:47:23 +00:00
|
|
|
# -*- makefile -*-
|
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
|
|
# dh-make output file, you may use that output file without restriction.
|
|
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2014-09-12 05:08:56 +00:00
|
|
|
export PYBUILD_DISABLE_python2=1
|
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
%:
|
2014-09-12 05:08:56 +00:00
|
|
|
dh $@ --with python3,systemd --buildsystem pybuild
|
2005-07-07 01:47:23 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
DESTDIR=$(CURDIR)/debian/fail2ban
|
2014-09-12 05:08:56 +00:00
|
|
|
PYVERSION=$(shell py3versions -dv)
|
2012-01-07 23:56:07 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_clean:
|
|
|
|
rm -rf fail2ban.egg-info
|
2014-12-30 21:50:46 +00:00
|
|
|
-rm debian/fail2ban.init
|
2007-05-15 14:26:28 +00:00
|
|
|
dh_clean
|
2016-12-09 14:45:47 +00:00
|
|
|
: # auto generated
|
|
|
|
-rm bin/fail2ban-python
|
2005-07-07 01:47:23 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_install:
|
|
|
|
rm -f $(DESTDIR)/usr/share/doc/fail2ban/README.Solaris
|
2014-11-12 04:15:15 +00:00
|
|
|
rm -f $(DESTDIR)/etc/fail2ban/paths-fedora.conf
|
|
|
|
rm -f $(DESTDIR)/etc/fail2ban/paths-freebsd.conf
|
|
|
|
rm -f $(DESTDIR)/etc/fail2ban/paths-osx.conf
|
2014-03-25 14:04:11 +00:00
|
|
|
: # Remove explicitely created /var/run/fail2ban
|
|
|
|
: # just to please lintian since init file will
|
|
|
|
: # take care about it anyways
|
2015-08-01 01:57:34 +00:00
|
|
|
rm -rf $(DESTDIR)/var/run/ $(DESTDIR)/run/
|
2014-12-30 23:33:06 +00:00
|
|
|
: # Install monit configuration
|
2017-08-10 13:18:49 +00:00
|
|
|
install -d $(DESTDIR)/etc/monit/conf-available
|
2014-12-30 23:33:06 +00:00
|
|
|
install -m 644 files/monit/fail2ban $(DESTDIR)/etc/monit/monitrc.d/fail2ban
|
2014-03-25 14:04:11 +00:00
|
|
|
: # Install bash completion
|
2013-05-13 15:27:55 +00:00
|
|
|
install -d $(DESTDIR)/etc/bash_completion.d
|
2013-05-13 15:06:52 +00:00
|
|
|
install -m 644 files/bash-completion $(DESTDIR)/etc/bash_completion.d/fail2ban
|
2014-03-25 14:04:11 +00:00
|
|
|
: # Install systemd files
|
2014-03-16 05:06:43 +00:00
|
|
|
install -d $(DESTDIR)/lib/systemd/system
|
|
|
|
install -d $(DESTDIR)/usr/lib/tmpfiles.d
|
|
|
|
install -m 644 files/fail2ban.service $(DESTDIR)/lib/systemd/system
|
|
|
|
install -m 644 files/fail2ban-tmpfiles.conf $(DESTDIR)/usr/lib/tmpfiles.d
|
2014-03-25 12:51:42 +00:00
|
|
|
install -d $(DESTDIR)/lib/systemd/system
|
2014-03-25 14:04:11 +00:00
|
|
|
: # Install default jail enabler
|
2014-12-30 23:23:42 +00:00
|
|
|
install -m 644 debian/debian-files/jail.d_defaults-debian.conf $(DESTDIR)/etc/fail2ban/jail.d/defaults-debian.conf
|
2014-03-15 11:44:55 +00:00
|
|
|
dh_install
|
2006-03-11 06:02:22 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_auto_test:
|
2013-05-13 15:33:36 +00:00
|
|
|
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
|
2015-04-29 03:56:08 +00:00
|
|
|
cd build && LC_ALL=C.UTF-8 FAIL2BAN_CONFIG_DIR="$(CURDIR)/config" PYTHONPATH="$(CURDIR)/.pybuild/pythonX.Y_$(PYVERSION)/build/" scripts-*/fail2ban-testcases --no-network
|
2013-05-13 15:33:36 +00:00
|
|
|
endif
|
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_installexamples:
|
2014-03-25 12:51:42 +00:00
|
|
|
dh_installexamples files/ipmasq-* files/nagios files/cacti
|
2012-07-31 21:23:32 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_installinit:
|
2014-12-30 21:50:46 +00:00
|
|
|
cp -p files/debian-initd debian/fail2ban.init
|
2014-03-15 11:44:55 +00:00
|
|
|
dh_installinit -- defaults 99
|
2012-07-31 21:23:32 +00:00
|
|
|
|
2014-03-15 11:44:55 +00:00
|
|
|
override_dh_installman:
|
2013-03-27 15:28:25 +00:00
|
|
|
dh_installman man/*.[15]
|