]> git.proxmox.com Git - mirror_frr.git/blob - debianpkg/rules
doc: fix make setup
[mirror_frr.git] / debianpkg / rules
1 #!/usr/bin/make -f
2
3 # FRRouting Configuration options
4 ######################################
5 #
6 # WANT_xxxx --> Set to 1 for enable, 0 for disable
7 # The following are the defaults. They can be overridden by setting a
8 # env variable to a different value
9
10 WANT_LDP ?= 1
11 WANT_PIM ?= 1
12 WANT_OSPFAPI ?= 1
13 WANT_TCP_ZEBRA ?= 0
14 WANT_BGP_VNC ?= 1
15 WANT_CUMULUS_MODE ?= 0
16 WANT_MULTIPATH ?= 1
17 WANT_SNMP ?= 0
18
19 # If multipath is enabled (WANT_MULTIPATH=1), then set number of multipaths here
20 # Please be aware that 0 is NOT disabled, but treated as unlimited
21
22 MULTIPATH ?= 256
23
24 # Set the following to the value required (or leave alone for the default below)
25 # WANT_FRR_USER is used for the username and groupname of the FRR user account
26
27 WANT_FRR_USER ?= frr
28 WANT_FRR_VTY_GROUP ?= frrvty
29
30 # Don't build PDF docs by default
31 GENERATE_PDF ?= 0
32
33 #
34 ####################################
35
36 export DH_VERBOSE=1
37 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
38 export DH_OPTIONS=-v
39
40 ifeq ($(WANT_SNMP), 1)
41 USE_SNMP=--enable-snmp
42 $(warning "DEBIAN: SNMP enabled, sorry for your inconvenience")
43 else
44 USE_SNMP=--disable-snmp
45 $(warning "DEBIAN: SNMP disabled, see README.Debian")
46 endif
47
48 ifeq ($(WANT_LDP), 1)
49 USE_LDP=--enable-ldpd
50 else
51 USE_LDP=--disable-ldpd
52 endif
53
54 ifeq ($(WANT_PIM), 1)
55 USE_PIM=--enable-pimd
56 else
57 USE_PIM=--disable-pimd
58 endif
59
60 ifeq ($(WANT_OSPFAPI), 1)
61 USE_OSPFAPI=--enable-ospfapi=yes
62 else
63 USE_OSPFAPI=--enable-ospfapi=no
64 endif
65
66 ifeq ($(WANT_TCP_ZEBRA),1)
67 USE_TCP_ZEBRA=--enable-tcp-zebra
68 else
69 USE_TCP_ZEBRA=--disable-tcp-zebra
70 endif
71
72 ifeq ($(WANT_BGP_VNC), 1)
73 USE_BGP_VNC=--enable-bgp-vnc=yes
74 else
75 USE_BGP_VNC=--enable-bgp-vnc=no
76 endif
77
78 USE_FRR_USER=--enable-user=$(WANT_FRR_USER)
79 USE_FRR_GROUP=--enable-group=$(WANT_FRR_USER)
80 USE_FRR_VTY_GROUP=--enable-vty-group=$(WANT_FRR_VTY_GROUP)
81
82 ifeq ($(WANT_MULTIPATH), 1)
83 USE_MULTIPATH=--enable-multipath=$(MULTIPATH)
84 else
85 USE_MULTIPATH=--disable-multipath
86 endif
87
88 ifeq ($(WANT_CUMULUS_MODE), 1)
89 USE_CUMULUS=--enable-cumulus=yes
90 else
91 USE_CUMULUS=--enable-cumulus=no
92 endif
93
94 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
95 DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
96 endif
97
98 ifdef DEBIAN_JOBS
99 MAKEFLAGS += -j$(DEBIAN_JOBS)
100 endif
101
102 %:
103 dh $@ --with=systemd,autoreconf --parallel --dbg-package=frr-dbg --list-missing
104
105 override_dh_auto_configure:
106 # Frr needs /proc to check some BSD vs Linux specific stuff.
107 # Else it fails with an obscure error message pointing out that
108 # IPCTL_FORWARDING is an undefined symbol which is not very helpful.
109 @if ! [ -d /proc/1 ]; then \
110 echo "./configure needs a mounted /proc"; \
111 exit 1; \
112 fi
113
114 if ! [ -e config.status ]; then \
115 dh_auto_configure -- \
116 --enable-exampledir=/usr/share/doc/frr/examples/ \
117 --localstatedir=/var/run/frr \
118 --sbindir=/usr/lib/frr \
119 --sysconfdir=/etc/frr \
120 $(USE_SNMP) \
121 $(USE_OSPFAPI) \
122 $(USE_MULTIPATH) \
123 $(USE_LDP) \
124 $(USE_TCP_ZEBRA) \
125 --enable-fpm \
126 $(USE_FRR_USER) $(USE_FRR_GROUP) \
127 $(USE_FRR_VTY_GROUP) \
128 --enable-configfile-mask=0640 \
129 --enable-logfile-mask=0640 \
130 --enable-werror \
131 --with-libpam \
132 --enable-systemd=yes \
133 --enable-poll=yes \
134 $(USE_CUMULUS) \
135 $(USE_PIM) \
136 --enable-dependency-tracking \
137 $(USE_BGP_VNC) \
138 $(shell dpkg-buildflags --export=configure); \
139 fi
140
141 override_dh_auto_build:
142 # doc/ is a bit crazy
143 ifeq ($(GENERATE_PDF), 1)
144 dh_auto_build -- -C doc pdf
145 endif
146 rm -vf doc/user/_build/texinfo/frr.info
147 dh_auto_build -- -C doc info
148
149 override_dh_auto_test:
150
151 override_dh_auto_install:
152 dh_auto_install
153
154 # installed in frr-pythontools
155 rm debian/tmp/usr/lib/frr/frr-reload.py
156
157 # cleaning up the info dir
158 rm -f debian/tmp/usr/share/info/dir*
159
160 # install config files
161 mkdir -p debian/tmp/etc/frr/
162 perl -pi -e 's#^!log file #!log file /var/log/frr/#' debian/tmp/usr/share/doc/frr/examples/*sample*
163
164 # installing the Frr specific SNMP MIB
165 ifeq ($(WANT_SNMP), 1)
166 install -D -m 644 ./zebra/GNOME-PRODUCT-ZEBRA-MIB debian/tmp/usr/share/snmp/mibs/GNOME-PRODUCT-ZEBRA-MIB
167 else
168 mkdir -p debian/tmp/usr/share/snmp/mibs/
169 endif
170
171 # cleaning .la files
172 sed -i "/dependency_libs/ s/'.*'/''/" debian/tmp/usr/lib/*.la
173 sed -i "/dependency_libs/ s/'.*'/''/" debian/tmp/usr/lib/frr/modules/*.la
174
175 override_dh_systemd_start:
176 dh_systemd_start frr.service
177
178 override_dh_systemd_enable:
179 dh_systemd_enable frr.service
180
181 # backports
182 SRCPKG = frr
183 KNOWN_BACKPORTS = debian8 debian9 ubuntu12.04 ubuntu14.04 ubuntu16.04 ubuntu17.10
184 DEBIAN_VERSION := $(shell dh_testdir && \
185 dpkg-parsechangelog -c1 < debian/changelog | \
186 sed -rn 's/^Version: ?//p')
187 ORIG_VERSION := $(DEBIAN_VERSION)
188 -include debian/backports/rules
189
190 ifneq ($(TARBALLDIR),)
191 ifeq ($(wildcard frr-$(ORIG_VERSION).tar.gz),frr-$(ORIG_VERSION).tar.gz)
192
193 $(TARBALLDIR)/$(SRCPKG)_$(ORIG_VERSION).orig.tar.gz: \
194 frr-$(ORIG_VERSION).tar.gz
195 cp $< $@
196
197 else # wildcard frr-$(ORIG_VERSION).tar.gz
198
199 # better error message on missing .orig.tar.gz
200 $(TARBALLDIR)/$(SRCPKG)_$(ORIG_VERSION).orig.tar.gz:
201 @ echo "\`$(TARBALLDIR)/$(SRCPKG)-$(ORIG_VERSION).tar.gz'" not \
202 found and not generated by debian/rules. Provided you have the \
203 necessary packages installed, you can generate it yourself via \
204 "\"./bootstrap.sh && ./configure && make dist\"".
205 exit 1
206
207 endif # wildcard frr-$(ORIG_VERSION).tar.gz
208 endif # TARBALLDIR nonempty