1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 21:06:16 +00:00
ngircd/contrib/Debian/rules
Alexander Barton 47f9c6d0a0 Update included Debian package configuration
- Rewrite using current dh_make.
- Standards-Version: 4.6.2.
- No longer build 3 different packages; only build "ngircd" which now
  includes support for IDENT, PAM (disabled in the ngircd.conf installed
  by the package), SSL (OpenSSL), ZLib and IPv6.
- Update package description accordingly.
- No longer install a SysV init file, only install ngircd.service unit.
2024-01-20 16:43:54 +01:00

66 lines
2.1 KiB
Makefile
Executable File

#!/usr/bin/make -f
# See FEATURE AREAS in dpkg-buildflags(1).
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@
# Disable dh_autoreconf since we are using de-ANSI-fication which was removed
# from automake a while ago. See <https://github.com/ngircd/ngircd/issues/261>.
override_dh_autoreconf:
override_dh_auto_configure:
dh_auto_configure -- \
--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
--prefix=/usr \
--mandir=\$${prefix}/share/man \
--sysconfdir=/etc/ngircd \
--with-iconv \
--with-ident \
--with-openssl \
--with-pam \
--with-syslog \
--with-zlib
execute_before_dh_auto_install:
ln -fs $(CURDIR)/contrib/ngircd.service $(CURDIR)/debian/ngircd.service
execute_after_dh_auto_install:
# Generate the default ngircd.conf:
install -o root -g irc -m 0640 -D /dev/null \
$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
sed \
-e "s|;ServerUID = 65534|ServerUID = irc|g" \
-e "s|;ServerGID = 65534|ServerGID = irc|g" \
-e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /run/ircd/ngircd.pid|g" \
-e "s|;PAM = yes|PAM = no|g" \
$(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf \
>>$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
# Create drop-in configuration directory:
install -o root -g irc -m 0750 -d \
$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf.d
# Install an empty MOTD file.
install -o root -g irc -m 0640 -D /dev/null \
$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.motd
# Install the logcheck(8) configuration.
install -o root -g root -m 0644 -D \
$(CURDIR)/contrib/ngircd.logcheck \
$(CURDIR)/debian/ngircd/etc/logcheck/ignore.d.paranoid/ngircd
# Make lintian happy :-)
rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING
mv $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/ChangeLog \
$(CURDIR)/debian/ngircd/usr/share/doc/ngircd/changelog
override_dh_fixperms:
# Preserve the permissions of files installed in /etc/ngircd!
dh_fixperms -X/etc/ngircd
override_dh_compress:
# The Commands.txt file is read by the daemon, don't compress it!
dh_compress -XCommands.txt