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