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