Disable openvswitch for rc26 build
[build.git] / planetlab.mk
1 #
2 # declare the packages to be built and their dependencies
3 # initial version from Mark Huang
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2003-2006 The Trustees of Princeton University
6 # rewritten by Thierry Parmentelat - INRIA Sophia Antipolis
7 #
8 # see doc in Makefile  
9 #
10
11 # mkinitrd
12 #
13 ifeq "$(PLDISTROTAGS)" "planetlab-k32-tags.mk"
14 ifeq "$(DISTRONAME)" "centos5"
15 mkinitrd-MODULES := mkinitrd
16 mkinitrd-SPEC := mkinitrd.spec
17 mkinitrd-BUILD-FROM-SRPM := yes
18 mkinitrd-DEVEL-RPMS += parted-devel glib2-devel libdhcp4client-devel libdhcp6client-devel libdhcp-devel 
19 mkinitrd-DEVEL-RPMS += device-mapper libselinux-devel libsepol-devel libnl-devel
20 ALL += mkinitrd
21 IN_BOOTCD += mkinitrd
22 IN_VSERVER += mkinitrd 
23 IN_BOOTSTRAPFS += mkinitrd
24 IN_MYPLC += mkinitrd
25 endif
26 endif
27 #
28 # kernel
29 #
30 # use a package name with srpm in it:
31 # so the source rpm is created by running make srpm in the codebase
32 #
33
34 kernel-MODULES := linux-2.6
35 kernel-SPEC := kernel-2.6.spec
36 kernel-BUILD-FROM-SRPM := yes
37 ifeq "$(HOSTARCH)" "i386"
38 kernel-RPMFLAGS:= --target i686
39 else
40 kernel-RPMFLAGS:= --target $(HOSTARCH)
41 endif
42 kernel-SPECVARS += kernelconfig=planetlab
43 KERNELS += kernel
44
45 kernels: $(KERNELS)
46 kernels-clean: $(foreach package,$(KERNELS),$(package)-clean)
47
48 ALL += $(KERNELS)
49 # this is to mark on which image a given rpm is supposed to go
50 IN_BOOTCD += $(KERNELS)
51 IN_VSERVER += $(KERNELS)
52 IN_BOOTSTRAPFS += $(KERNELS)
53
54 #
55 # madwifi
56 #
57 # skip this with k32/f8
58 ifneq "" "$(findstring k32,$(PLDISTROTAGS))"
59 ifneq "$(DISTRONAME)" "f8"
60 madwifi-MODULES := madwifi
61 madwifi-SPEC := madwifi.spec
62 madwifi-BUILD-FROM-SRPM := yes
63 madwifi-DEPEND-DEVEL-RPMS += kernel-devel
64 madwifi-SPECVARS = kernel_version=$(kernel.rpm-version) \
65         kernel_release=$(kernel.rpm-release) \
66         kernel_arch=$(kernel.rpm-arch)
67 ALL += madwifi
68 IN_BOOTSTRAPFS += madwifi
69 endif
70 endif
71
72 #
73 # iptables
74 #
75 iptables-MODULES := iptables
76 iptables-SPEC := iptables.spec
77 iptables-BUILD-FROM-SRPM := yes 
78 iptables-DEPEND-DEVEL-RPMS += kernel-devel kernel-headers
79 ALL += iptables
80 IN_BOOTSTRAPFS += iptables
81
82 #
83 # iproute
84 #
85 iproute-MODULES := iproute2
86 iproute-SPEC := iproute.spec
87 iproute-BUILD-FROM-SRPM := yes  
88 ALL += iproute
89 IN_BOOTSTRAPFS += iproute
90 IN_VSERVER += iproute
91 IN_BOOTCD += iproute
92
93 #
94 # util-vserver
95 #
96 util-vserver-MODULES := util-vserver
97 util-vserver-SPEC := util-vserver.spec
98 # starting with 0.4
99 util-vserver-BUILD-FROM-SRPM := yes
100 util-vserver-RPMFLAGS:= --without dietlibc --without doc
101 ALL += util-vserver
102 IN_BOOTSTRAPFS += util-vserver
103
104 #
105 # libnl - local import
106 # we need either 1.1 or at least 1.0.pre6
107 # rebuild this on centos5 - see kexcludes in build.common
108 #
109 local_libnl=false
110 ifeq "$(DISTRONAME)" "centos5"
111 local_libnl=true
112 endif
113
114 ifeq "$(local_libnl)" "true"
115 libnl-MODULES := libnl
116 libnl-SPEC := libnl.spec
117 libnl-BUILD-FROM-SRPM := yes
118 # this sounds like the thing to do, but in fact linux/if_vlan.h comes with kernel-headers
119 libnl-DEPEND-DEVEL-RPMS += kernel-devel kernel-headers
120 ALL += libnl
121 IN_BOOTSTRAPFS += libnl
122 endif
123
124 #
125 # util-vserver-pl
126 #
127 util-vserver-pl-MODULES := util-vserver-pl
128 util-vserver-pl-SPEC := util-vserver-pl.spec
129 util-vserver-pl-DEPEND-DEVEL-RPMS += util-vserver-lib util-vserver-devel util-vserver-core 
130 ifeq "$(local_libnl)" "true"
131 util-vserver-pl-DEPEND-DEVEL-RPMS += libnl libnl-devel
132 endif
133 ALL += util-vserver-pl
134 IN_BOOTSTRAPFS += util-vserver-pl
135
136 #
137 # NodeUpdate
138 #
139 nodeupdate-MODULES := nodeupdate
140 nodeupdate-SPEC := NodeUpdate.spec
141 ALL += nodeupdate
142 IN_BOOTSTRAPFS += nodeupdate
143
144 #
145 # ipod
146 #
147 ipod-MODULES := PingOfDeath
148 ipod-SPEC := ipod.spec
149 ALL += ipod
150 IN_BOOTSTRAPFS += ipod
151
152 #
153 # NodeManager
154 #
155 nodemanager-MODULES := nodemanager
156 nodemanager-SPEC := NodeManager.spec
157 ALL += nodemanager
158 IN_BOOTSTRAPFS += nodemanager
159
160 #
161 # pl_sshd
162 #
163 sshd-MODULES := pl_sshd
164 sshd-SPEC := pl_sshd.spec
165 ALL += sshd
166 IN_BOOTSTRAPFS += sshd
167
168 #
169 # codemux: Port 80 demux
170 #
171 codemux-MODULES := codemux
172 codemux-SPEC   := codemux.spec
173 ALL += codemux
174 IN_BOOTSTRAPFS += codemux
175
176 #
177 # fprobe-ulog
178 #
179 fprobe-ulog-MODULES := fprobe-ulog
180 fprobe-ulog-SPEC := fprobe-ulog.spec
181 ALL += fprobe-ulog
182 IN_BOOTSTRAPFS += fprobe-ulog
183
184 #
185 # DistributedRateLimiting
186 #
187 DistributedRateLimiting-MODULES := DistributedRateLimiting
188 DistributedRateLimiting-SPEC := DistributedRateLimiting.spec
189 ALL += DistributedRateLimiting
190 IN_NODEREPO += DistributedRateLimiting
191
192 #
193 # pf2slice
194 #
195 pf2slice-MODULES := pf2slice
196 pf2slice-SPEC := pf2slice.spec
197 ALL += pf2slice
198
199 #
200 # PlanetLab Mom: Cleans up your mess
201 #
202 mom-MODULES := Mom
203 mom-SPEC := pl_mom.spec
204 ALL += mom
205 IN_BOOTSTRAPFS += mom
206
207 #
208 # inotify-tools - local import
209 # rebuild this on centos5 (not found) - see kexcludes in build.common
210 #
211 local_inotify_tools=false
212 ifeq "$(DISTRONAME)" "centos5"
213 local_inotify_tools=true
214 endif
215
216 ifeq "$(DISTRONAME)" "sl6"
217 local_inotify_tools=true
218 endif
219
220 ifeq "$(local_inotify_tools)" "true"
221 inotify-tools-MODULES := inotify-tools
222 inotify-tools-SPEC := inotify-tools.spec
223 inotify-tools-BUILD-FROM-SRPM := yes
224 IN_BOOTSTRAPFS += inotify-tools
225 ALL += inotify-tools
226 endif
227
228 #
229 # openvswitch
230 #
231 # openvswitch-MODULES := openvswitch
232 # openvswitch-SPEC := openvswitch.spec
233 # openvswitch-DEPEND-DEVEL-RPMS += kernel-devel
234 # IN_BOOTSTRAPFS += openvswitch
235 # ALL += openvswitch
236
237 #
238 # vsys
239 #
240 vsys-MODULES := vsys
241 vsys-SPEC := vsys.spec
242 # ocaml-docs is not needed anymore but keep it on a tmp basis as some tags may still have it
243 vsys-DEVEL-RPMS += ocaml-ocamldoc ocaml-docs
244 ifeq "$(local_inotify_tools)" "true"
245 vsys-DEPEND-DEVEL-RPMS += inotify-tools inotify-tools-devel
246 endif
247 IN_BOOTSTRAPFS += vsys
248 ALL += vsys
249
250 #
251 # vsyssh : installed in slivers
252 #
253 vsyssh-MODULES := vsys
254 vsyssh-SPEC := vsyssh.spec
255 IN_SLIVER += vsyssh
256 ALL += vsyssh
257
258 #
259 # vsys-scripts
260 #
261 vsys-scripts-MODULES := vsys-scripts
262 vsys-scripts-SPEC := vsys-scripts.spec
263 IN_BOOTSTRAPFS += vsys-scripts
264 ALL += vsys-scripts
265
266 #
267 # plcapi
268 #
269 plcapi-MODULES := plcapi
270 plcapi-SPEC := PLCAPI.spec
271 ALL += plcapi
272 IN_MYPLC += plcapi
273
274 #
275 # drupal
276
277 drupal-MODULES := drupal
278 drupal-SPEC := drupal.spec
279 drupal-BUILD-FROM-SRPM := yes
280 ALL += drupal
281 IN_MYPLC += drupal
282
283 #
284 # use the plewww module instead
285 #
286 plewww-MODULES := plewww
287 plewww-SPEC := plewww.spec
288 ALL += plewww
289 IN_MYPLC += plewww
290
291 #
292 # www-register-wizard
293 #
294 www-register-wizard-MODULES := www-register-wizard
295 www-register-wizard-SPEC := www-register-wizard.spec
296 ALL += www-register-wizard
297 IN_MYPLC += www-register-wizard
298
299 #
300 # pcucontrol
301 #
302 pcucontrol-MODULES := pcucontrol
303 pcucontrol-SPEC := pcucontrol.spec
304 ALL += pcucontrol
305
306 #
307 # monitor
308 #
309 monitor-MODULES := monitor
310 monitor-SPEC := Monitor.spec
311 monitor-DEVEL-RPMS += net-snmp net-snmp-devel
312 ALL += monitor
313 IN_BOOTSTRAPFS += monitor
314
315 #
316 # PLC RT
317 #
318 plcrt-MODULES := PLCRT
319 plcrt-SPEC := plcrt.spec
320 ALL += plcrt
321
322 # f12 has 0.9-1 already
323 ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f8 centos5)"
324 #
325 # pyopenssl
326 #
327 pyopenssl-MODULES := pyopenssl
328 pyopenssl-SPEC := pyOpenSSL.spec
329 pyopenssl-BUILD-FROM-SRPM := yes
330 ALL += pyopenssl
331 endif
332
333 #
334 # pyaspects
335 #
336 pyaspects-MODULES := pyaspects
337 pyaspects-SPEC := pyaspects.spec
338 pyaspects-BUILD-FROM-SRPM := yes
339 ALL += pyaspects
340
341 #
342 # ejabberd
343 #
344 ejabberd-MODULES := ejabberd
345 ejabberd-SPEC := ejabberd.spec
346 ejabberd-BUILD-FROM-SRPM := yes
347 ejabberd-DEVEL-RPMS += erlang pam-devel hevea
348 # not needed anymore on f12 and above, that come with 2.1.5, and we had 2.1.3
349 # so, this is relevant on f8 and centos5 only
350 ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f8 centos5)"
351 ALL += ejabberd
352 endif
353
354 # sfa now uses the with statement that's not supported on python-2.4 - not even through __future__
355 build_sfa=true
356 ifeq "$(DISTRONAME)" "centos5"
357 build_sfa=false
358 endif
359
360 ifeq "$(build_sfa)" "true"
361 #
362 # sfa - Slice Facility Architecture
363 #
364 sfa-MODULES := sfa
365 sfa-SPEC := sfa.spec
366 ALL += sfa
367 endif
368
369 sface-MODULES := sface
370 sface-SPEC := sface.spec
371 ALL += sface
372
373 #
374 # nodeconfig
375 #
376 nodeconfig-MODULES := nodeconfig
377 nodeconfig-SPEC := nodeconfig.spec
378 ALL += nodeconfig
379 IN_MYPLC += nodeconfig
380
381 #
382 # bootmanager
383 #
384 bootmanager-MODULES := bootmanager
385 bootmanager-SPEC := bootmanager.spec
386 ALL += bootmanager
387 IN_MYPLC += bootmanager
388
389 #
390 # pypcilib : used in bootcd
391
392 pypcilib-MODULES := pypcilib
393 pypcilib-SPEC := pypcilib.spec
394 ALL += pypcilib
395 IN_BOOTCD += pypcilib
396
397 #
398 # pyplnet
399 #
400 pyplnet-MODULES := pyplnet
401 pyplnet-SPEC := pyplnet.spec
402 ALL += pyplnet
403 IN_BOOTSTRAPFS += pyplnet
404 IN_MYPLC += pyplnet
405 IN_BOOTCD += pyplnet
406
407 #
408 # OMF resource controller
409 #
410 omf-resctl-MODULES := omf
411 omf-resctl-SPEC := omf-resctl.spec
412 ALL += omf-resctl
413 IN_VSERVER += omf-resctl
414
415 #
416 # OMF exp controller
417 #
418 omf-expctl-MODULES := omf
419 omf-expctl-SPEC := omf-expctl.spec
420 ALL += omf-expctl
421
422 #
423 # bootcd
424 #
425 bootcd-MODULES := bootcd build
426 bootcd-SPEC := bootcd.spec
427 bootcd-DEPEND-PACKAGES := $(IN_BOOTCD)
428 bootcd-DEPEND-FILES := RPMS/yumgroups.xml
429 bootcd-RPMDATE := yes
430 ALL += bootcd
431 IN_MYPLC += bootcd
432
433 #
434 # vserver : reference image for slices
435 #
436 vserver-MODULES := vserver-reference build
437 vserver-SPEC := vserver-reference.spec
438 vserver-DEPEND-PACKAGES := $(IN_VSERVER)
439 vserver-DEPEND-FILES := RPMS/yumgroups.xml
440 vserver-RPMDATE := yes
441 ALL += vserver
442 IN_BOOTSTRAPFS += vserver
443
444 #
445 # bootstrapfs
446 #
447 bootstrapfs-MODULES := bootstrapfs build
448 bootstrapfs-SPEC := bootstrapfs.spec
449 bootstrapfs-DEPEND-PACKAGES := $(IN_BOOTSTRAPFS)
450 bootstrapfs-DEPEND-FILES := RPMS/yumgroups.xml
451 bootstrapfs-RPMDATE := yes
452 ALL += bootstrapfs
453 IN_MYPLC += bootstrapfs
454
455 #
456 # noderepo
457 #
458 # all rpms resulting from packages marked as being in bootstrapfs and vserver
459 NODEREPO_RPMS = $(foreach package,$(IN_BOOTSTRAPFS) $(IN_NODEREPO) $(IN_VSERVER),$($(package).rpms))
460 # replace space with +++ (specvars cannot deal with spaces)
461 SPACE=$(subst x, ,x)
462 NODEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(NODEREPO_RPMS))
463
464 noderepo-MODULES := bootstrapfs
465 noderepo-SPEC := noderepo.spec
466 # package requires all embedded packages
467 noderepo-DEPEND-PACKAGES := $(IN_BOOTSTRAPFS) $(IN_NODEREPO) $(IN_VSERVER)
468 noderepo-DEPEND-FILES := RPMS/yumgroups.xml
469 #export rpm list to the specfile
470 noderepo-SPECVARS = node_rpms_plus=$(NODEREPO_RPMS_3PLUS)
471 noderepo-RPMDATE := yes
472 ALL += noderepo
473 IN_MYPLC += noderepo
474
475 #
476 # slicerepo
477 #
478 # all rpms resulting from packages marked as being in vserver
479 SLICEREPO_RPMS = $(foreach package,$(IN_VSERVER),$($(package).rpms))
480 # replace space with +++ (specvars cannot deal with spaces)
481 SPACE=$(subst x, ,x)
482 SLICEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(SLICEREPO_RPMS))
483
484 slicerepo-MODULES := bootstrapfs
485 slicerepo-SPEC := slicerepo.spec
486 # package requires all embedded packages
487 slicerepo-DEPEND-PACKAGES := $(IN_VSERVER)
488 slicerepo-DEPEND-FILES := RPMS/yumgroups.xml
489 #export rpm list to the specfile
490 slicerepo-SPECVARS = slice_rpms_plus=$(SLICEREPO_RPMS_3PLUS)
491 slicerepo-RPMDATE := yes
492 ALL += slicerepo
493
494 #
495 # MyPLC : lightweight packaging, dependencies are yum-installed in a vserver
496 #
497 myplc-MODULES := myplc
498 myplc-SPEC := myplc.spec
499 myplc-DEPEND-FILES := myplc-release RPMS/yumgroups.xml
500 ALL += myplc
501
502 # myplc-docs only contains docs for PLCAPI and NMAPI, but
503 # we still need to pull MyPLC, as it is where the specfile lies, 
504 # together with the utility script docbook2drupal.sh
505 myplc-docs-MODULES := myplc plcapi nodemanager monitor
506 myplc-docs-SPEC := myplc-docs.spec
507 ALL += myplc-docs
508
509 # using some other name than myplc-release, as this is a make target already
510 release-MODULES := myplc
511 release-SPEC := myplc-release.spec
512 release-RPMDATE := yes
513 ALL += release