X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=contrib%2FDebian%2Frules;h=1630a0159393a3fef3c706bb32764c5a9e339b39;hb=a1ce3fc779c66f1febcc4c861cfd593a1ab48002;hp=5f6f826e6d39e4083358d994e688038aa4f81f20;hpb=6b83d1740eb892c90f92fac55d9bbc362346feb5;p=ngircd-alex.git diff --git a/contrib/Debian/rules b/contrib/Debian/rules index 5f6f826e..1630a015 100755 --- a/contrib/Debian/rules +++ b/contrib/Debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2009 Alexander Barton +# Copyright (c)2001-2014 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 @@ -42,6 +42,7 @@ configure-ngircd: configure --prefix=/usr \ --sysconfdir=/etc/ngircd \ --mandir=\$${prefix}/share/man \ + --docdir=\$${prefix}/share/doc/ngircd \ --with-syslog --with-zlib configure-ngircd-full: configure @@ -52,8 +53,10 @@ configure-ngircd-full: configure --prefix=/usr \ --sysconfdir=/etc/ngircd \ --mandir=\$${prefix}/share/man \ + --docdir=\$${prefix}/share/doc/ngircd-full \ --with-syslog --with-zlib \ - --with-gnutls --with-ident --with-tcp-wrappers \ + --with-gnutls --with-iconv --with-ident --with-tcp-wrappers \ + --with-pam \ --enable-ipv6 configure-ngircd-full-dbg: configure @@ -64,9 +67,11 @@ configure-ngircd-full-dbg: configure --prefix=/usr \ --sysconfdir=/etc/ngircd \ --mandir=\$${prefix}/share/man \ + --docdir=\$${prefix}/share/doc/ngircd-full-dbg \ --enable-debug --enable-sniffer \ --with-syslog --with-zlib \ - --with-gnutls --with-ident --with-tcp-wrappers \ + --with-gnutls --with-iconv --with-ident --with-tcp-wrappers \ + --with-pam \ --enable-ipv6 build: @@ -137,10 +142,9 @@ install-ngircd: build-ngircd rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING* mkdir -p $(CURDIR)/debian/ngircd/var/run/ircd cat $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf | \ - sed -e "s/;ServerUID = 65534/ServerUID = irc/g" | \ - sed -e "s/;ServerGID = 65534/ServerGID = irc/g" | \ - sed -e "s/;MotdFile = \/usr\/local\/etc\/ngircd.motd/MotdFile = \/etc\/ngircd\/ngircd.motd/g" | \ - sed -e "s/;PidFile = \/var\/run\/ngircd\/ngircd.pid/PidFile = \/var\/run\/ircd\/ngircd.pid/g" \ + sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \ + sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \ + sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \ >$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf touch $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.motd @@ -151,18 +155,17 @@ install-ngircd-full: build-ngircd-full # Add here commands to install the "full" package into debian/ngircd-full: $(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full - rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd/INSTALL* - rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd/COPYING* - mv $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd \ - $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full + rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/INSTALL* + rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/COPYING* mkdir -p $(CURDIR)/debian/ngircd-full/var/run/ircd cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \ - sed -e "s/;ServerUID = 65534/ServerUID = irc/g" | \ - sed -e "s/;ServerGID = 65534/ServerGID = irc/g" | \ - sed -e "s/;MotdFile = \/usr\/local\/etc\/ngircd.motd/MotdFile = \/etc\/ngircd\/ngircd.motd/g" | \ - sed -e "s/;PidFile = \/var\/run\/ngircd\/ngircd.pid/PidFile = \/var\/run\/ircd\/ngircd.pid/g" \ + sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \ + sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \ + sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \ >$(CURDIR)/debian/ngircd-full/etc/ngircd/ngircd.conf touch $(CURDIR)/debian/ngircd-full/etc/ngircd/ngircd.motd + mkdir -p $(CURDIR)/debian/ngircd-full/etc/pam.d + cp $(CURDIR)/debian/ngircd.pam $(CURDIR)/debian/ngircd-full/etc/pam.d/ngircd install-ngircd-full-dbg: build-ngircd-full-dbg dh_testdir @@ -171,18 +174,17 @@ install-ngircd-full-dbg: build-ngircd-full-dbg # Add here commands to install the "full" package into debian/ngircd-full: $(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full-dbg - rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd/INSTALL* - rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd/COPYING* - mv $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd \ - $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg + rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/INSTALL* + rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/COPYING* mkdir -p $(CURDIR)/debian/ngircd-full-dbg/var/run/ircd cat $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/sample-ngircd.conf | \ - sed -e "s/;ServerUID = 65534/ServerUID = irc/g" | \ - sed -e "s/;ServerGID = 65534/ServerGID = irc/g" | \ - sed -e "s/;MotdFile = \/usr\/local\/etc\/ngircd.motd/MotdFile = \/etc\/ngircd\/ngircd.motd/g" | \ - sed -e "s/;PidFile = \/var\/run\/ngircd\/ngircd.pid/PidFile = \/var\/run\/ircd\/ngircd.pid/g" \ + sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \ + sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \ + sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \ >$(CURDIR)/debian/ngircd-full-dbg/etc/ngircd/ngircd.conf touch $(CURDIR)/debian/ngircd-full-dbg/etc/ngircd/ngircd.motd + mkdir -p $(CURDIR)/debian/ngircd-full-dbg/etc/pam.d + cp $(CURDIR)/debian/ngircd.pam $(CURDIR)/debian/ngircd-full-dbg/etc/pam.d/ngircd # Build architecture-independent files here. binary-indep: @@ -210,7 +212,7 @@ binary-arch: build install dh_installdocs -a dh_installinit -a dh_strip -a --no-package=ngircd-full-dbg - dh_compress -a + dh_compress -a -XCommands.txt dh_fixperms -a dh_installdeb -a dh_shlibdeps -a