blob: 6a2c390c42ee28a311cc685ea94906269d2f2950 (
plain)
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
|
#!/usr/bin/make -f
# this makes the tests fail
# LDFLAGS += -Wl,--default-symver
override_dh_auto_configure:
dh_auto_configure -- \
--enable-python-bindings=no --disable-failmalloc --enable-app
override_dh_auto_build-arch:
dh_auto_build
override_dh_auto_build-indep:
$(MAKE) html
# don't run tests when building indep packages
override_dh_auto_test-indep:
override_dh_auto_clean:
dh_auto_clean
rm -rf doc/manual/html doc/manual/doctrees doc/apiref.rst
override_dh_auto_install-arch: custom_install_init_scripts custom_install_systemd
dh_auto_install
override_dh_auto_install-indep: custom_install_manual
override_dh_installinit:
dh_installinit -pnghttp2-proxy --onlyscripts --name=nghttpx --no-stop-on-upgrade --no-start
override_dh_installsystemd:
dh_installsystemd --no-restart-after-upgrade --no-stop-on-upgrade --no-start
.PHONY: custom_install_manual custom_install_init_scripts custom_install_systemd
DOCDIR="debian/libnghttp2-doc/usr/share/doc/libnghttp2-doc"
custom_install_manual:
mkdir -p $(DOCDIR)
cp -pr doc/manual/html/* $(DOCDIR)
rm $(DOCDIR)/objects.inv
ln -sf /usr/share/javascript/jquery/jquery.js $(DOCDIR)/_static/jquery.js
ln -sf /usr/share/javascript/underscore/underscore.js $(DOCDIR)/_static/underscore.js
cp -p doc/README.rst $(DOCDIR)
ETCDIR="debian/nghttp2-proxy/etc"
custom_install_init_scripts:
install -d $(ETCDIR)/init.d
sed -e 's,^DAEMON=.*/,DAEMON=/usr/sbin/,' contrib/nghttpx-init > $(ETCDIR)/init.d/nghttpx
chmod 755 $(ETCDIR)/init.d/nghttpx
install -d $(ETCDIR)/nghttpx
# we install our own version of config
install -m644 debian/nghttpx.conf $(ETCDIR)/nghttpx/nghttpx.conf
install -d $(ETCDIR)/logrotate.d
install -p -m644 contrib/nghttpx-logrotate $(ETCDIR)/logrotate.d/nghttpx
# Currently we install our own systemd unit because
# the original one is slightly broken
SYSTEMD="debian/nghttp2-proxy/lib/systemd/system"
custom_install_systemd:
install -d $(SYSTEMD)
install -p -m644 debian/nghttpx.service $(SYSTEMD)/nghttpx.service
%:
dh $@
|