]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/Debian/rules
Update Debian package
[ngircd-alex.git] / contrib / Debian / rules
1 #!/usr/bin/make -f
2 #
3 # ngIRCd -- The Next Generation IRC Daemon
4 # Copyright (c)2001-2016 Alexander Barton (alex@barton.de) and Contributors
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 # Please read the file COPYING, README and AUTHORS for more information.
11 #
12 # debian/rules for ngIRCd
13 #
14 # Based on the sample debian/rules that uses debhelper,
15 # GNU copyright 1997 to 1999 by Joey Hess.
16 #
17
18 # Uncomment this to turn on verbose mode.
19 #export DH_VERBOSE=1
20
21 # These are used for cross-compiling and for saving the configure script
22 # from having to guess our platform (since we know it already)
23 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
24 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
25
26 CFLAGS = -Wall -g
27
28 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
29         CFLAGS += -O0
30 else
31         CFLAGS += -O2
32 endif
33 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
34         INSTALL_PROGRAM += -s
35 endif
36
37 configure-ngircd: configure
38         dh_testdir
39
40         # configure "standard" variant:
41         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
42           --prefix=/usr \
43           --sysconfdir=/etc/ngircd \
44           --mandir=\$${prefix}/share/man \
45           --docdir=\$${prefix}/share/doc/ngircd \
46           --with-syslog --with-zlib
47
48 configure-ngircd-full: configure
49         dh_testdir
50
51         # configure "full" variant:
52         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
53           --prefix=/usr \
54           --sysconfdir=/etc/ngircd \
55           --mandir=\$${prefix}/share/man \
56           --docdir=\$${prefix}/share/doc/ngircd-full \
57           --with-syslog --with-zlib \
58           --with-gnutls --with-iconv --with-ident --with-tcp-wrappers \
59           --with-pam \
60           --enable-ipv6
61
62 configure-ngircd-full-dbg: configure
63         dh_testdir
64
65         # configure "full debug" variant:
66         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
67           --prefix=/usr \
68           --sysconfdir=/etc/ngircd \
69           --mandir=\$${prefix}/share/man \
70           --docdir=\$${prefix}/share/doc/ngircd-full-dbg \
71           --enable-debug --enable-sniffer \
72           --with-syslog --with-zlib \
73           --with-gnutls --with-iconv --with-ident --with-tcp-wrappers \
74           --with-pam \
75           --enable-ipv6
76
77 build:
78         dh_clean -k
79
80 build-ngircd: build-stamp-ngircd
81 build-stamp-ngircd: configure-ngircd
82         dh_testdir
83         rm -f build-stamp-*
84
85         # Add here commands to compile the "standard" package:
86         $(MAKE)
87
88         touch build-stamp-ngircd
89
90 build-ngircd-full: build-stamp-ngircd-full
91 build-stamp-ngircd-full: configure-ngircd-full
92         dh_testdir
93         rm -f build-stamp-*
94
95         # Add here commands to compile the "full" package:
96         $(MAKE)
97
98         touch build-stamp-ngircd-full
99
100 build-ngircd-full-dbg: build-stamp-ngircd-full-dbg
101 build-stamp-ngircd-full-dbg: configure-ngircd-full-dbg
102         dh_testdir
103         rm -f build-stamp-*
104
105         # Add here commands to compile the "full debug" package:
106         $(MAKE)
107
108         touch build-stamp-ngircd-full
109
110 clean:
111         dh_testdir
112         dh_testroot
113         rm -f build-stamp*
114         rm -f $(CURDIR)/debian/ngircd-full.default
115         rm -f $(CURDIR)/debian/ngircd-full.init
116         rm -f $(CURDIR)/debian/ngircd-full.postinst
117         rm -f $(CURDIR)/debian/ngircd-full-dbg.default
118         rm -f $(CURDIR)/debian/ngircd-full-dbg.postinst
119         rm -f $(CURDIR)/debian/ngircd-full-dbg.init
120
121         # Add here commands to clean up after the build process:
122         [ ! -f Makefile ] || $(MAKE) distclean
123
124 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
125         cp -f /usr/share/misc/config.sub config.sub
126 endif
127 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
128         cp -f /usr/share/misc/config.guess config.guess
129 endif
130         dh_clean
131
132 install: install-ngircd install-ngircd-full install-ngircd-full-dbg
133
134 install-ngircd: build-ngircd
135         dh_testdir
136         dh_testroot
137         dh_installdirs
138
139         # Add here commands to install the "standard" package into debian/ngircd:
140         $(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd
141         rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/INSTALL*
142         rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING*
143         cat $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/sample-ngircd.conf | \
144          sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
145          sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
146          sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \
147          >$(CURDIR)/debian/ngircd/etc/ngircd/ngircd.conf
148         touch $(CURDIR)/debian/ngircd/etc/ngircd/ngircd.motd
149
150 install-ngircd-full: build-ngircd-full
151         dh_testdir
152         dh_testroot
153         dh_installdirs
154
155         # Add here commands to install the "full" package into debian/ngircd-full:
156         $(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full
157         rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/INSTALL*
158         rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/COPYING*
159         cat $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/sample-ngircd.conf | \
160          sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
161          sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
162          sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \
163          >$(CURDIR)/debian/ngircd-full/etc/ngircd/ngircd.conf
164         touch $(CURDIR)/debian/ngircd-full/etc/ngircd/ngircd.motd
165         mkdir -p $(CURDIR)/debian/ngircd-full/etc/pam.d
166         cp $(CURDIR)/debian/ngircd.pam $(CURDIR)/debian/ngircd-full/etc/pam.d/ngircd
167
168 install-ngircd-full-dbg: build-ngircd-full-dbg
169         dh_testdir
170         dh_testroot
171         dh_installdirs
172
173         # Add here commands to install the "full" package into debian/ngircd-full:
174         $(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd-full-dbg
175         rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/INSTALL*
176         rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/COPYING*
177         cat $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/sample-ngircd.conf | \
178          sed -e "s|;ServerUID = 65534|ServerUID = irc|g" | \
179          sed -e "s|;ServerGID = 65534|ServerGID = irc|g" | \
180          sed -e "s|;PidFile = /var/run/ngircd/ngircd.pid|PidFile = /var/run/ircd/ngircd.pid|g" \
181          >$(CURDIR)/debian/ngircd-full-dbg/etc/ngircd/ngircd.conf
182         touch $(CURDIR)/debian/ngircd-full-dbg/etc/ngircd/ngircd.motd
183         mkdir -p $(CURDIR)/debian/ngircd-full-dbg/etc/pam.d
184         cp $(CURDIR)/debian/ngircd.pam $(CURDIR)/debian/ngircd-full-dbg/etc/pam.d/ngircd
185
186 # Build architecture-independent files here.
187 binary-indep:
188         # We have nothing to do by default.
189
190 # Build architecture-dependent files here.
191 binary-arch: build install
192         ln -s $(CURDIR)/debian/ngircd.default \
193          $(CURDIR)/debian/ngircd-full.default
194         ln -s $(CURDIR)/debian/ngircd.init \
195          $(CURDIR)/debian/ngircd-full.init
196         ln -s $(CURDIR)/debian/ngircd.postinst \
197          $(CURDIR)/debian/ngircd-full.postinst
198
199         ln -s $(CURDIR)/debian/ngircd.default \
200          $(CURDIR)/debian/ngircd-full-dbg.default
201         ln -s $(CURDIR)/debian/ngircd.init \
202          $(CURDIR)/debian/ngircd-full-dbg.init
203         ln -s $(CURDIR)/debian/ngircd.postinst \
204          $(CURDIR)/debian/ngircd-full-dbg.postinst
205
206         dh_testdir
207         dh_testroot
208         dh_installchangelogs -a -A ChangeLog
209         dh_installdocs -a
210         dh_installinit -a
211         dh_strip -a --no-package=ngircd-full-dbg
212         dh_compress -a -XCommands.txt
213         dh_fixperms -a
214         dh_installdeb -a
215         dh_shlibdeps -a
216         dh_gencontrol -a
217         dh_md5sums -a
218         dh_builddeb -a
219
220 binary: binary-indep binary-arch
221
222 .PHONY: build clean binary-indep binary-arch binary install
223
224 # -eof-