diff options
| author | Alexander Barton <alex@barton.de> | 2024-01-19 22:07:38 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2024-01-20 16:43:54 +0100 |
| commit | 47f9c6d0a0085da2fbcbdae0a9736b79a98cc527 (patch) | |
| tree | 7b78e62494a00cababe3b6cdb1d80f7fa3976f2f /contrib/Debian/Makefile.am | |
| parent | c65c3435e3107846a1995aea166e8241595fffa4 (diff) | |
| download | ngircd-47f9c6d0a0085da2fbcbdae0a9736b79a98cc527.tar.gz ngircd-47f9c6d0a0085da2fbcbdae0a9736b79a98cc527.zip | |
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.
Diffstat (limited to 'contrib/Debian/Makefile.am')
| -rw-r--r-- | contrib/Debian/Makefile.am | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/contrib/Debian/Makefile.am b/contrib/Debian/Makefile.am index 2cd5277c..bbc715ff 100644 --- a/contrib/Debian/Makefile.am +++ b/contrib/Debian/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2017 Alexander Barton (alex@barton.de) and Contributors +# Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors # # 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 @@ -9,22 +9,22 @@ # Please read the file COPYING, README and AUTHORS for more information. # -EXTRA_DIST = rules changelog compat control copyright \ - ngircd.init ngircd.default ngircd.pam ngircd.postinst \ +EXTRA_DIST = \ + changelog \ + control \ + copyright \ + ngircd.default \ + ngircd.pam \ + rules \ + watch \ source/format maintainer-clean-local: rm -f Makefile Makefile.in clean-local: - rm -f ngircd.postinst.debhelper ngircd.postrm.debhelper \ - ngircd.prerm.debhelper ngircd.substvars - rm -f ngircd-full.postinst.debhelper ngircd-full.postrm.debhelper \ - ngircd-full.prerm.debhelper ngircd-full.substvars - rm -f ngircd-full-dbg.postinst.debhelper \ - ngircd-full-dbg.postrm.debhelper ngircd-full-dbg.prerm.debhelper \ - ngircd-full-dbg.substvars - rm -rf ngircd ngircd-full ngircd-full-dbg - rm -f files + rm -f *.log *.debhelper *.substvars + rm -f debhelper-build-stamp files ngircd.service + rm -rf .debhelper/ ngircd/ # -eof- |