File: rules

package info (click to toggle)
ngircd 25-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,736 kB
  • sloc: ansic: 19,041; sh: 5,175; makefile: 655; xml: 220
file content (238 lines) | stat: -rwxr-xr-x 7,751 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/make -f
#
# ngIRCd -- The Next Generation IRC Daemon
# Copyright (c)2001-2016 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
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information.
#
# debian/rules for ngIRCd
#
# Based on the sample debian/rules that uses debhelper,
# GNU copyright 1997 to 1999 by Joey Hess.
#

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)

CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
	INSTALL_PROGRAM += -s
endif

configure-ngircd: configure
	dh_testdir

	# configure "standard" variant:
	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
	  --prefix=/usr \
	  --sysconfdir=/etc/ngircd \
	  --mandir=\$${prefix}/share/man \
	  --docdir=\$${prefix}/share/doc/ngircd \
	  --with-syslog --with-zlib

configure-ngircd-full: configure
	dh_testdir

	# configure "full" variant:
	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
	  --prefix=/usr \
	  --sysconfdir=/etc/ngircd \
	  --mandir=\$${prefix}/share/man \
	  --docdir=\$${prefix}/share/doc/ngircd-full \
	  --with-syslog --with-zlib \
	  --with-openssl --with-iconv --with-ident --with-tcp-wrappers \
	  --with-pam \
	  --enable-ipv6

configure-ngircd-full-dbg: configure
	dh_testdir

	# configure "full debug" variant:
	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
	  --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-openssl --with-iconv --with-ident --with-tcp-wrappers \
	  --with-pam \
	  --enable-ipv6

build:
	dh_prep

build-ngircd: build-stamp-ngircd
build-stamp-ngircd: configure-ngircd
	dh_testdir
	rm -f build-stamp-*

	# Add here commands to compile the "standard" package:
	$(MAKE)

	touch build-stamp-ngircd

build-ngircd-full: build-stamp-ngircd-full
build-stamp-ngircd-full: configure-ngircd-full
	dh_testdir
	rm -f build-stamp-*

	# Add here commands to compile the "full" package:
	$(MAKE)

	touch build-stamp-ngircd-full

build-ngircd-full-dbg: build-stamp-ngircd-full-dbg
build-stamp-ngircd-full-dbg: configure-ngircd-full-dbg
	dh_testdir
	rm -f build-stamp-*

	# Add here commands to compile the "full debug" package:
	$(MAKE)

	touch build-stamp-ngircd-full

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp*
	rm -f $(CURDIR)/debian/ngircd.service
	rm -f $(CURDIR)/debian/ngircd-full.default
	rm -f $(CURDIR)/debian/ngircd-full.init
	rm -f $(CURDIR)/debian/ngircd-full.postinst
	rm -f $(CURDIR)/debian/ngircd-full.service
	rm -f $(CURDIR)/debian/ngircd-full-dbg.default
	rm -f $(CURDIR)/debian/ngircd-full-dbg.postinst
	rm -f $(CURDIR)/debian/ngircd-full-dbg.init
	rm -f $(CURDIR)/debian/ngircd-full-dbg.service

	# Add here commands to clean up after the build process:
	[ ! -f Makefile ] || $(MAKE) distclean

ifneq "$(wildcard /usr/share/misc/config.sub)" ""
	cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
	cp -f /usr/share/misc/config.guess config.guess
endif
	dh_clean

install: install-ngircd install-ngircd-full install-ngircd-full-dbg

install-ngircd: build-ngircd
	dh_testdir
	dh_testroot
	dh_installdirs

	# Add here commands to install the "standard" package into debian/ngircd:
	$(MAKE) install DESTDIR=$(CURDIR)/debian/ngircd
	rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/INSTALL*
	rm $(CURDIR)/debian/ngircd/usr/share/doc/ngircd/COPYING*
	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|;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

install-ngircd-full: build-ngircd-full
	dh_testdir
	dh_testroot
	dh_installdirs

	# 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-full/INSTALL*
	rm $(CURDIR)/debian/ngircd-full/usr/share/doc/ngircd-full/COPYING*
	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|;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
	dh_testroot
	dh_installdirs

	# 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-full-dbg/INSTALL*
	rm $(CURDIR)/debian/ngircd-full-dbg/usr/share/doc/ngircd-full-dbg/COPYING*
	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|;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:
	# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
	ln -s $(CURDIR)/contrib/ngircd.service \
	 $(CURDIR)/debian/ngircd.service

	ln -s $(CURDIR)/debian/ngircd.default \
	 $(CURDIR)/debian/ngircd-full.default
	ln -s $(CURDIR)/debian/ngircd.init \
	 $(CURDIR)/debian/ngircd-full.init
	ln -s $(CURDIR)/debian/ngircd.postinst \
	 $(CURDIR)/debian/ngircd-full.postinst
	cp $(CURDIR)/contrib/ngircd.service \
	 $(CURDIR)/debian/ngircd-full.service
	echo "Alias=ngircd.service" >>$(CURDIR)/debian/ngircd-full.service

	ln -s $(CURDIR)/debian/ngircd.default \
	 $(CURDIR)/debian/ngircd-full-dbg.default
	ln -s $(CURDIR)/debian/ngircd.init \
	 $(CURDIR)/debian/ngircd-full-dbg.init
	ln -s $(CURDIR)/debian/ngircd.postinst \
	 $(CURDIR)/debian/ngircd-full-dbg.postinst
	cp $(CURDIR)/contrib/ngircd.service \
	 $(CURDIR)/debian/ngircd-full-dbg.service
	echo "Alias=ngircd.service" >>$(CURDIR)/debian/ngircd-full-dbg.service

	dh_testdir
	dh_testroot
	dh_installchangelogs -a -A ChangeLog
	dh_installdocs -a
	dh_systemd_enable -a
	dh_installinit -a
	dh_systemd_start -a
	dh_strip -a --no-package=ngircd-full-dbg
	dh_compress -a -XCommands.txt
	dh_fixperms -a
	dh_installdeb -a
	dh_shlibdeps -a
	dh_gencontrol -a
	dh_md5sums -a
	dh_builddeb -a

binary: binary-indep binary-arch

.PHONY: build clean binary-indep binary-arch binary install

# -eof-