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