]> git.proxmox.com Git - mirror_frr.git/blob - debianpkg/rules
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[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 # -Werror - don't enable this unless you're doing a dev package build
11 WANT_WERROR ?= 0
12
13 WANT_OSPFAPI ?= 1
14 WANT_BGP_VNC ?= 1
15 WANT_CUMULUS_MODE ?= 0
16 WANT_MULTIPATH ?= 1
17 WANT_SNMP ?= 0
18 WANT_RPKI ?= 0
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 # add build deps: texlive-latex-base, texlive-generic-recommended
43 GENERATE_PDF ?= 0
44
45 #
46 ####################################
47
48 export DH_VERBOSE=1
49 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
50 export DH_OPTIONS=-v
51
52 ifeq ($(WANT_SNMP), 1)
53 USE_SNMP=--enable-snmp
54 $(warning "DEBIAN: SNMP enabled, sorry for your inconvenience")
55 else
56 USE_SNMP=--disable-snmp
57 $(warning "DEBIAN: SNMP disabled, see README.Debian")
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_BGP_VNC), 1)
67 USE_BGP_VNC=--enable-bgp-vnc=yes
68 else
69 USE_BGP_VNC=--enable-bgp-vnc=no
70 endif
71
72 USE_FRR_USER=--enable-user=$(WANT_FRR_USER)
73 USE_FRR_GROUP=--enable-group=$(WANT_FRR_USER)
74 USE_FRR_VTY_GROUP=--enable-vty-group=$(WANT_FRR_VTY_GROUP)
75
76 ifeq ($(WANT_MULTIPATH), 1)
77 USE_MULTIPATH=--enable-multipath=$(MULTIPATH)
78 else
79 USE_MULTIPATH=--disable-multipath
80 endif
81
82 ifeq ($(WANT_CUMULUS_MODE), 1)
83 USE_CUMULUS=--enable-cumulus=yes
84 else
85 USE_CUMULUS=--enable-cumulus=no
86 endif
87
88 ifeq ($(WANT_RPKI), 1)
89 USE_RPKI=--enable-rpki
90 else
91 USE_RPKI=--disable-rpki
92 endif
93
94 ifeq ($(WANT_WERROR), 1)
95 USE_WERROR=--enable-werror
96 else
97 USE_WERROR=--disable-werror
98 endif
99
100 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
101 DEBIAN_JOBS := $(subst parallel=,,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
102 endif
103
104 ifdef DEBIAN_JOBS
105 MAKEFLAGS += -j$(DEBIAN_JOBS)
106 endif
107
108 %:
109 dh $@ --with=systemd,autoreconf --parallel --dbg-package=frr-dbg --list-missing
110
111 override_dh_gencontrol:
112 ifeq ($(WANT_RPKI), 1)
113 dh_gencontrol -- -Vdist:Depends="librtr0 (>= 0.5)"
114 else
115 dh_gencontrol
116 endif
117
118 override_dh_auto_configure:
119 if ! [ -e config.status ]; then \
120 dh_auto_configure -- \
121 --enable-exampledir=/usr/share/doc/frr/examples/ \
122 --localstatedir=/var/run/frr \
123 --sbindir=/usr/lib/frr \
124 --sysconfdir=/etc/frr \
125 $(USE_SNMP) \
126 $(USE_OSPFAPI) \
127 $(USE_MULTIPATH) \
128 --enable-fpm \
129 $(USE_FRR_USER) $(USE_FRR_GROUP) \
130 $(USE_FRR_VTY_GROUP) \
131 --enable-configfile-mask=0640 \
132 --enable-logfile-mask=0640 \
133 $(USE_WERROR) \
134 --with-libpam \
135 --enable-systemd=yes \
136 $(USE_CUMULUS) \
137 --disable-dependency-tracking \
138 $(USE_BGP_VNC) \
139 $(USE_RPKI) \
140 $(shell dpkg-buildflags --export=configure); \
141 fi
142
143 override_dh_auto_build:
144 dh_auto_build
145
146 override_dh_auto_test:
147
148 override_dh_auto_install:
149 dh_auto_install
150
151 # installed in frr-pythontools
152 rm debian/tmp/usr/lib/frr/frr-reload.py
153
154 # cleaning up the info dir
155 rm -f debian/tmp/usr/share/info/dir*
156
157 # install config files
158 mkdir -p debian/tmp/etc/frr/
159 perl -pi -e 's#^!log file #!log file /var/log/frr/#' debian/tmp/usr/share/doc/frr/examples/*sample*
160
161 # we don't need .la files
162 rm debian/tmp/usr/lib/*.la
163 rm debian/tmp/usr/lib/frr/modules/*.la
164 rm debian/tmp/usr/lib/frr/libyang_plugins/*.la
165
166 override_dh_systemd_start:
167 dh_systemd_start frr.service
168
169 override_dh_systemd_enable:
170 dh_systemd_enable frr.service
171
172 # backports
173 SRCPKG = frr
174 KNOWN_BACKPORTS = debian8 debian9 ubuntu14.04 ubuntu16.04 ubuntu17.10 ubuntu18.04
175 DEBIAN_VERSION := $(shell dh_testdir && \
176 dpkg-parsechangelog -c1 < debian/changelog | \
177 sed -rn 's/^Version: ?//p')
178 ORIG_VERSION := $(DEBIAN_VERSION)
179 -include debian/backports/rules
180
181 ifneq ($(TARBALLDIR),)
182 ifeq ($(wildcard frr-$(ORIG_VERSION).tar.gz),frr-$(ORIG_VERSION).tar.gz)
183
184 $(TARBALLDIR)/$(SRCPKG)_$(ORIG_VERSION).orig.tar.gz: \
185 frr-$(ORIG_VERSION).tar.gz
186 cp $< $@
187
188 else # wildcard frr-$(ORIG_VERSION).tar.gz
189
190 # better error message on missing .orig.tar.gz
191 $(TARBALLDIR)/$(SRCPKG)_$(ORIG_VERSION).orig.tar.gz:
192 @ echo "\`$(TARBALLDIR)/$(SRCPKG)-$(ORIG_VERSION).tar.gz'" not \
193 found and not generated by debian/rules. Provided you have the \
194 necessary packages installed, you can generate it yourself via \
195 "\"./bootstrap.sh && ./configure && make dist\"".
196 exit 1
197
198 endif # wildcard frr-$(ORIG_VERSION).tar.gz
199 endif # TARBALLDIR nonempty