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