Merge branch 'master' of ssh://git.onelab.eu/git/build
[build.git] / lxc.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 ### the madwifi drivers ship with fedora16's kernel rpm
12
13 #
14 # lxc-userspace: scripts for entering containers
15 #
16 lxc-userspace-MODULES := lxc-userspace
17 lxc-userspace-SPEC := lxc-userspace.spec
18 ALL += lxc-userspace
19 IN_NODEIMAGE += lxc-userspace
20
21 #
22 #
23 # transforward: root context module for transparent port forwarding
24 #
25 transforward-MODULES := transforward
26 transforward-SPEC := transforward.spec
27 ALL += transforward
28 IN_NODEIMAGE += transforward
29
30 #
31 # procprotect: root context module for protecting against weaknesses in /proc
32 #
33 procprotect-MODULES := procprotect
34 procprotect-SPEC := procprotect.spec
35 ALL += procprotect
36 IN_NODEIMAGE += procprotect
37
38 #
39 # ipfw: root context module, and slice companion
40 #
41 # this module won't build yet under f20
42 ifeq "$(DISTRONAME)" "f18"
43 ipfwroot-MODULES := ipfw
44 ipfwroot-SPEC := planetlab/ipfwroot.spec
45 ALL += ipfwroot
46 IN_NODEIMAGE += ipfwroot
47
48 ipfwslice-MODULES := ipfw
49 ipfwslice-SPEC := planetlab/ipfwslice.spec
50 ALL += ipfwslice
51 endif
52
53 #
54 # comgt - a companion to umts tools
55
56 comgt-MODULES := comgt
57 comgt-SPEC := comgt.spec
58 IN_NODEIMAGE += comgt
59 ALL += comgt
60
61 #
62 # umts: root context stuff
63 #
64 umts-backend-MODULES := planetlab-umts-tools
65 umts-backend-SPEC := backend.spec
66 IN_NODEIMAGE += umts-backend
67 ALL += umts-backend
68
69 #
70 # umts: slice tools
71 #
72 umts-frontend-MODULES := planetlab-umts-tools
73 umts-frontend-SPEC := frontend.spec
74 IN_SLICEIMAGE += umts-frontend
75 ALL += umts-frontend
76
77 #
78 # NodeUpdate
79 #
80 nodeupdate-MODULES := nodeupdate
81 nodeupdate-SPEC := NodeUpdate.spec
82 ALL += nodeupdate
83 IN_NODEIMAGE += nodeupdate
84
85 #
86 # ipod
87 #
88 ipod-MODULES := PingOfDeath
89 ipod-SPEC := ipod.spec
90 ALL += ipod
91 IN_NODEIMAGE += ipod
92
93 #
94 # plnode-utils
95
96 plnode-utils-MODULES := plnode-utils
97 plnode-utils-SPEC := plnode-utils-lxc.spec
98 ALL += plnode-utils
99 IN_NODEIMAGE += plnode-utils
100
101 #
102 # nodemanager
103 #
104 nodemanager-MODULES := nodemanager
105 nodemanager-SPEC := nodemanager.spec
106 ALL += nodemanager
107 IN_NODEIMAGE += nodemanager
108
109 #
110 # pl_sshd
111 #
112 sshd-MODULES := pl_sshd
113 sshd-SPEC := pl_sshd.spec
114 ALL += sshd
115 IN_NODEIMAGE += sshd
116
117 #
118 # codemux: Port 80 demux
119 #
120 codemux-MODULES := codemux
121 codemux-SPEC   := codemux.spec
122 ALL += codemux
123 IN_NODEIMAGE += codemux
124
125 #
126 # fprobe-ulog
127 #
128 fprobe-ulog-MODULES := fprobe-ulog
129 fprobe-ulog-SPEC := fprobe-ulog.spec
130 ALL += fprobe-ulog
131 IN_NODEIMAGE += fprobe-ulog
132
133 #################### libvirt version selection
134 # settling with using version 1.2.1 on all fedoras
135 # although this does not solve the slice re-creation issue seen on f20
136
137 local_libvirt=true
138 separate_libvirt_python=true
139
140 #
141 # libvirt
142 #
143 ifeq "$(local_libvirt)" "true"
144
145 libvirt-MODULES := libvirt
146 libvirt-SPEC    := libvirt.spec
147 libvirt-BUILD-FROM-SRPM := yes
148 # The --without options are breaking spec2make : hard-wired in the specfile instead
149 libvirt-STOCK-DEVEL-RPMS += xhtml1-dtds
150 libvirt-STOCK-DEVEL-RPMS += libattr-devel augeas libpciaccess-devel yajl-devel 
151 libvirt-STOCK-DEVEL-RPMS += libpcap-devel radvd ebtables device-mapper-devel 
152 libvirt-STOCK-DEVEL-RPMS += ceph-devel numactl-devel libcap-ng-devel scrub 
153 # for 1.2.1 - first seen on f20, not sure for the other ones
154 libvirt-STOCK-DEVEL-RPMS += libblkid-devel glusterfs-api-devel glusterfs-devel
155 # strictly speaking fuse-devel is not required anymore but we might wish to turn fuse back on again in the future
156 libvirt-STOCK-DEVEL-RPMS += fuse-devel libssh2-devel dbus-devel numad 
157 libvirt-STOCK-DEVEL-RPMS += systemd-devel libnl3-devel iptables-services netcf-devel
158 ALL += libvirt
159 IN_NODEREPO += libvirt
160 IN_NODEIMAGE += libvirt
161
162 endif
163
164 #
165 ## libvirt-python
166 #
167 ifeq "$(separate_libvirt_python)" "true"
168
169 libvirt-python-MODULES := libvirt-python
170 libvirt-python-SPEC    := libvirt-python.spec
171 libvirt-python-BUILD-FROM-SRPM := yes
172 libvirt-python-STOCK-DEVEL-RPMS += pm-utils
173 libvirt-python-LOCAL-DEVEL-RPMS += libvirt-devel libvirt-docs libvirt-client
174 libvirt-python-RPMFLAGS :=     --define 'packager PlanetLab'
175 ALL += libvirt-python
176 IN_NODEREPO += libvirt-python
177 IN_NODEIMAGE += libvirt-python
178
179 endif
180
181 #
182 # DistributedRateLimiting
183 #
184 #DistributedRateLimiting-MODULES := DistributedRateLimiting
185 #DistributedRateLimiting-SPEC := DistributedRateLimiting.spec
186 #ALL += DistributedRateLimiting
187 #IN_NODEREPO += DistributedRateLimiting
188
189 #
190 # pf2slice
191 #
192 pf2slice-MODULES := pf2slice
193 pf2slice-SPEC := pf2slice.spec
194 ALL += pf2slice
195
196 ##
197 ## PlanetLab Mom: Cleans up your mess
198 ##
199 #mom-MODULES := mom
200 #mom-SPEC := pl_mom.spec
201 #ALL += mom
202 #IN_NODEIMAGE += mom
203
204 #
205 # openvswitch
206 #
207 # openvswitch-MODULES := openvswitch
208 # openvswitch-SPEC := openvswitch.spec
209 # openvswitch-STOCK-DEVEL-RPMS += kernel-devel
210 # IN_NODEIMAGE += openvswitch
211 # # build only on f14 as f16 has this natively
212 # ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f14)"
213 # ALL += openvswitch
214 # endif
215
216 #
217 # vsys
218 #
219 vsys-MODULES := vsys
220 vsys-SPEC := vsys.spec
221 # ocaml-docs is not needed anymore but keep it on a tmp basis as some tags may still have it
222 vsys-STOCK-DEVEL-RPMS += ocaml-ocamldoc ocaml-docs
223 IN_NODEIMAGE += vsys
224 ALL += vsys
225
226 #
227 # vsyssh : installed in slivers
228 #
229 vsyssh-MODULES := vsys
230 vsyssh-SPEC := vsyssh.spec
231 IN_SLICEIMAGE += vsyssh
232 ALL += vsyssh
233
234 #
235 # vsys-scripts
236 #
237 vsys-scripts-MODULES := vsys-scripts
238 vsys-scripts-SPEC := root-context/vsys-scripts.spec
239 IN_NODEIMAGE += vsys-scripts
240 ALL += vsys-scripts
241
242 vsys-wrapper-MODULES := vsys-scripts
243 vsys-wrapper-SPEC := slice-context/vsys-wrapper.spec
244 IN_SLICEIMAGE += vsys-wrapper
245 ALL += vsys-wrapper
246
247 #
248 # bind_public
249 #
250 bind_public-MODULES := bind_public
251 bind_public-SPEC := bind_public.spec
252 IN_SLICEIMAGE += bind_public
253 ALL += bind_public
254
255 #
256 # sliver-openvswitch
257 #
258 sliver-openvswitch-MODULES := sliver-openvswitch
259 sliver-openvswitch-SPEC := sliver-openvswitch.spec
260 IN_SLICEIMAGE += sliver-openvswitch
261 ALL += sliver-openvswitch
262
263 #
264 # plcapi
265 #
266 plcapi-MODULES := plcapi
267 plcapi-SPEC := plcapi.spec
268 ALL += plcapi
269 IN_MYPLC += plcapi
270
271 #
272 # drupal
273
274 drupal-MODULES := drupal
275 drupal-SPEC := drupal.spec
276 drupal-BUILD-FROM-SRPM := yes
277 ALL += drupal
278 IN_MYPLC += drupal
279
280 #
281 # use the plewww module instead
282 #
283 plewww-MODULES := plewww
284 plewww-SPEC := plewww.spec
285 ALL += plewww
286 IN_MYPLC += plewww
287
288 #
289 # www-register-wizard
290 #
291 www-register-wizard-MODULES := www-register-wizard
292 www-register-wizard-SPEC := www-register-wizard.spec
293 ALL += www-register-wizard
294 IN_MYPLC += www-register-wizard
295
296 #
297 # pcucontrol
298 #
299 pcucontrol-MODULES := pcucontrol
300 pcucontrol-SPEC := pcucontrol.spec
301 ALL += pcucontrol
302
303 #
304 # monitor
305 #
306 #monitor-MODULES := monitor
307 #monitor-SPEC := Monitor.spec
308 #monitor-STOCK-DEVEL-RPMS += net-snmp net-snmp-devel
309 #ALL += monitor
310 #IN_NODEIMAGE += monitor
311
312 #
313 # PLC RT
314 #
315 plcrt-MODULES := PLCRT
316 plcrt-SPEC := plcrt.spec
317 ALL += plcrt
318
319 # f12 has 0.9-1 already
320 ifeq "$(DISTRONAME)" "$(filter $(DISTRONAME),f8 centos5)"
321 #
322 # pyopenssl
323 #
324 pyopenssl-MODULES := pyopenssl
325 pyopenssl-SPEC := pyOpenSSL.spec
326 pyopenssl-BUILD-FROM-SRPM := yes
327 ALL += pyopenssl
328 endif
329
330 #
331 # pyaspects
332 #
333 pyaspects-MODULES := pyaspects
334 pyaspects-SPEC := pyaspects.spec
335 pyaspects-BUILD-FROM-SRPM := yes
336 ALL += pyaspects
337
338 #
339 # nodeconfig
340 #
341 nodeconfig-MODULES := nodeconfig
342 nodeconfig-SPEC := nodeconfig.spec
343 ALL += nodeconfig
344 IN_MYPLC += nodeconfig
345
346 #
347 # bootmanager
348 #
349 bootmanager-MODULES := bootmanager
350 bootmanager-SPEC := bootmanager.spec
351 ALL += bootmanager
352 IN_MYPLC += bootmanager
353
354 #
355 # pypcilib : used in bootcd
356
357 pypcilib-MODULES := pypcilib
358 pypcilib-SPEC := pypcilib.spec
359 ALL += pypcilib
360 IN_BOOTCD += pypcilib
361
362 #
363 # pyplnet
364 #
365 pyplnet-MODULES := pyplnet
366 pyplnet-SPEC := pyplnet.spec
367 ALL += pyplnet
368 IN_NODEIMAGE += pyplnet
369 IN_MYPLC += pyplnet
370 IN_BOOTCD += pyplnet
371
372 #
373 # OML measurement library
374 #
375 oml-MODULES := oml
376 oml-STOCK-DEVEL-RPMS += sqlite-devel 
377 oml-SPEC := liboml.spec
378 ALL += oml
379
380 #
381 # bootcd
382 #
383 bootcd-MODULES := bootcd build
384 bootcd-SPEC := bootcd.spec
385 bootcd-DEPEND-PACKAGES := $(IN_BOOTCD)
386 bootcd-DEPEND-FILES := RPMS/yumgroups.xml
387 bootcd-RPMDATE := yes
388 ALL += bootcd
389 IN_MYPLC += bootcd
390
391 #
392 # images for slices
393 #
394 sliceimage-MODULES := sliceimage build
395 sliceimage-SPEC := sliceimage.spec
396 sliceimage-DEPEND-PACKAGES := $(IN_SLICEIMAGE)
397 sliceimage-DEPEND-FILES := RPMS/yumgroups.xml
398 sliceimage-RPMDATE := yes
399 ALL += sliceimage
400 IN_NODEIMAGE += sliceimage
401
402 #
403 # lxc-specific sliceimage initialization
404
405 lxc-sliceimage-MODULES  := sliceimage
406 lxc-sliceimage-SPEC     := lxc-sliceimage.spec
407 lxc-sliceimage-RPMDATE  := yes
408 ALL                     += lxc-sliceimage
409 IN_NODEIMAGE            += lxc-sliceimage
410
411 #
412 # nodeimage
413 #
414 nodeimage-MODULES := nodeimage build
415 nodeimage-SPEC := nodeimage.spec
416 nodeimage-DEPEND-PACKAGES := $(IN_NODEIMAGE)
417 nodeimage-DEPEND-FILES := RPMS/yumgroups.xml
418 nodeimage-RPMDATE := yes
419 ALL += nodeimage
420 IN_MYPLC += nodeimage
421
422 #
423 # noderepo
424 #
425 # all rpms resulting from packages marked as being in nodeimage and sliceimage
426 NODEREPO_RPMS = $(foreach package,$(IN_NODEIMAGE) $(IN_NODEREPO) $(IN_SLICEIMAGE),$($(package).rpms))
427 # replace space with +++ (specvars cannot deal with spaces)
428 SPACE=$(subst x, ,x)
429 NODEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(NODEREPO_RPMS))
430
431 noderepo-MODULES := nodeimage
432 noderepo-SPEC := noderepo.spec
433 # package requires all embedded packages
434 noderepo-DEPEND-PACKAGES := $(IN_NODEIMAGE) $(IN_NODEREPO) $(IN_SLICEIMAGE)
435 noderepo-DEPEND-FILES := RPMS/yumgroups.xml
436 #export rpm list to the specfile
437 noderepo-SPECVARS = node_rpms_plus=$(NODEREPO_RPMS_3PLUS)
438 noderepo-RPMDATE := yes
439 ALL += noderepo
440 IN_MYPLC += noderepo
441
442 #
443 # slicerepo
444 #
445 # all rpms resulting from packages marked as being in vserver
446 SLICEREPO_RPMS = $(foreach package,$(IN_SLICEIMAGE),$($(package).rpms))
447 # replace space with +++ (specvars cannot deal with spaces)
448 SPACE=$(subst x, ,x)
449 SLICEREPO_RPMS_3PLUS = $(subst $(SPACE),+++,$(SLICEREPO_RPMS))
450
451 slicerepo-MODULES := nodeimage
452 slicerepo-SPEC := slicerepo.spec
453 # package requires all embedded packages
454 slicerepo-DEPEND-PACKAGES := $(IN_SLICEIMAGE)
455 slicerepo-DEPEND-FILES := RPMS/yumgroups.xml
456 #export rpm list to the specfile
457 slicerepo-SPECVARS = slice_rpms_plus=$(SLICEREPO_RPMS_3PLUS)
458 slicerepo-RPMDATE := yes
459 ALL += slicerepo
460
461 #
462 # MyPLC : lightweight packaging, dependencies are yum-installed in a vserver
463 #
464 myplc-MODULES := myplc
465 myplc-SPEC := myplc.spec
466 myplc-DEPEND-FILES := myplc-release RPMS/yumgroups.xml
467 ALL += myplc
468
469 # myplc-docs only contains docs for PLCAPI and NMAPI, but
470 # we still need to pull MyPLC, as it is where the specfile lies, 
471 # together with the utility script docbook2drupal.sh
472 myplc-docs-MODULES := myplc plcapi nodemanager monitor
473 myplc-docs-SPEC := myplc-docs.spec
474 ALL += myplc-docs
475
476 # using some other name than myplc-release, as this is a make target already
477 release-MODULES := myplc
478 release-SPEC := myplc-release.spec
479 release-RPMDATE := yes
480 ALL += release
481
482 ##############################
483 #
484 # sfa - Slice Facility Architecture
485 #
486 sfa-MODULES := sfa
487 sfa-SPEC := sfa.spec
488 ALL += sfa