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