]> git.proxmox.com Git - mirror_frr.git/blob - debianpkg/backports/ubuntu12.04/debian/rules
Merge pull request #1885 from msablic/pim_mtrace_client
[mirror_frr.git] / debianpkg / backports / ubuntu12.04 / 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_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=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 --with-libpam \
131 --enable-systemd=no \
132 --enable-poll=yes \
133 $(USE_CUMULUS) \
134 $(USE_PIM) \
135 --enable-dependency-tracking \
136 $(USE_BGP_VNC) \
137 $(shell dpkg-buildflags --export=configure); \
138 fi
139
140 override_dh_auto_build:
141 ifeq ($(GENERATE_PDF), 1)
142 dh_auto_build -- -C doc pdf
143 endif
144 rm -vf doc/user/_build/texinfo/frr.info
145 dh_auto_build -- -C doc info
146
147 override_dh_auto_test:
148
149 override_dh_auto_install:
150 dh_auto_install
151
152 # installed in frr-pythontools
153 rm debian/tmp/usr/lib/frr/frr-reload.py
154
155 # cleaning up the info dir
156 rm -f debian/tmp/usr/share/info/dir*
157
158 # install config files
159 mkdir -p debian/tmp/etc/frr/
160 perl -pi -e 's#^!log file #!log file /var/log/frr/#' debian/tmp/usr/share/doc/frr/examples/*sample*
161
162 # installing the Frr specific SNMP MIB
163 ifeq ($(WANT_SNMP), 1)
164 install -D -m 644 ./zebra/GNOME-PRODUCT-ZEBRA-MIB debian/tmp/usr/share/snmp/mibs/GNOME-PRODUCT-ZEBRA-MIB
165 else
166 mkdir -p debian/tmp/usr/share/snmp/mibs
167 endif
168
169 # cleaning .la files
170 sed -i "/dependency_libs/ s/'.*'/''/" debian/tmp/usr/lib/*.la
171 sed -i "/dependency_libs/ s/'.*'/''/" debian/tmp/usr/lib/frr/modules/*.la