]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/Debian/rules
4be91f360cf5e374ce7c7eea1a73f8c559dccf5e
[ngircd-alex.git] / contrib / Debian / rules
1 #!/usr/bin/make -f
2
3 # See FEATURE AREAS in dpkg-buildflags(1).
4 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
5
6 %:
7         dh $@
8
9 # Disable dh_autoreconf since we are using de-ANSI-fication which was removed
10 # from automake a while ago. See <https://github.com/ngircd/ngircd/issues/261>.
11 override_dh_autoreconf:
12
13 override_dh_auto_configure:
14         dh_auto_configure -- \
15             --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
16             --prefix=/usr \
17             --mandir=\$${prefix}/share/man \
18             --sysconfdir=/etc/ngircd \
19             --with-iconv \
20             --with-ident \
21             --with-openssl \
22             --with-pam \
23             --with-syslog \
24             --with-zlib
25
26 execute_before_dh_auto_install:
27         ln -fs $(CURDIR)/contrib/ngircd.service $(CURDIR)/debian/ngircd.service
28
29 execute_after_dh_auto_install:
30 #       Generate the default ngircd.conf:
31         install -o root -g irc -m 0640 -D /dev/null \
32          $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
33         sed \
34          -e "s|;ServerUID = 65534|ServerUID = irc|g" \
35          -e "s|;ServerGID = 65534|ServerGID = irc|g" \
36          -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /run/ircd/ngircd.pid|g" \
37          -e "s|;PAM = yes|PAM = no|g" \
38          $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf \
39          >>$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
40
41 #       Create drop-in configuration directory:
42         install -o root -g irc -m 0750 -d \
43          $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf.d
44
45 #       Install an empty MOTD file.
46         install -o root -g irc -m 0640 -D /dev/null \
47          $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.motd
48
49 #       Install the logcheck(8) configuration.
50         install -o root -g root -m 0644 -D \
51          $(CURDIR)/contrib/ngircd.logcheck \
52          $(CURDIR)/debian/ngircd/etc/logcheck/ignore.d.paranoid/ngircd
53
54 #       Make lintian happy :-)
55         rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING
56         mv $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/ChangeLog \
57             $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/changelog
58
59 override_dh_fixperms:
60 #       Preserve the permissions of files installed in /etc/ngircd!
61         dh_fixperms -X/etc/ngircd
62
63 override_dh_compress:
64 #       The Commands.txt file is read by the daemon, don't compress it!
65         dh_compress -XCommands.txt