add support for DEPENDDEVELRPMS
[build.git] / planetlab.mk
1 #
2 # PlanetLab standard components list
3 #
4 # Mark Huang <mlhuang@cs.princeton.edu>
5 # Copyright (C) 2003-2006 The Trustees of Princeton University
6 #
7 # $Id$
8 #
9 # see doc in Makefile  
10 #
11 #
12 # kernel
13 #
14 # until we are able to build the new kernel layout:
15 # use the old exploded-tree, 2.6.20-based, version on fc4, 6 & 7
16 # and the new one on f8 - that requires the build-id patch
17
18
19 # use a package name with srpm in it:
20 # in this case the srpm is created by running make srpm in the codebase
21 #
22
23 srpm-kernel-$(HOSTARCH)-MODULES := linux-patches
24 srpm-kernel-$(HOSTARCH)-SPEC := kernel-2.6-planetlab.spec
25 ifeq ($(HOSTARCH),i386)
26 srpm-kernel-$(HOSTARCH)-RPMFLAGS:= --target i686
27 else
28 srpm-kernel-$(HOSTARCH)-RPMFLAGS:= --target $(HOSTARCH)
29 endif
30 KERNELS += srpm-kernel-$(HOSTARCH)
31
32 #else
33 #kernel-$(HOSTARCH)-MODULES := linux-tree
34 #kernel-$(HOSTARCH)-SPEC := scripts/kernel-2.6-planetlab.spec
35 #ifeq ($(HOSTARCH),i386)
36 #kernel-$(HOSTARCH)-RPMFLAGS:= --target i686
37 #else
38 #kernel-$(HOSTARCH)-RPMFLAGS:= --target $(HOSTARCH)
39 #endif
40 #KERNELS += kernel-$(HOSTARCH)
41 #endif
42
43 kernel: $(KERNELS)
44 kernel-clean: $(foreach package,$(KERNELS),$(package)-clean)
45
46 ALL += $(KERNELS)
47
48 # the first kernel package defined here
49 kernel_package := $(word 1,$(KERNELS))
50
51 #
52 # libnl
53 #
54 # [daniel]    wait for latest Fedora release 
55 # (03:29:46 PM) daniel_hozac: interfacing with the kernel directly when dealing with netlink was fugly, so... i had to find something nicer.
56 # (03:29:53 PM) daniel_hozac: the one in Fedora is lacking certain APIs i need.
57 #
58 libnl-MODULES := libnl
59 libnl-SPEC := libnl.spec
60 ALL += libnl
61
62 #
63 # util-vserver
64 #
65 util-vserver-MODULES := util-vserver
66 util-vserver-SPEC := util-vserver.spec
67 util-vserver-RPMFLAGS:= --without dietlibc
68 util-vserver-DEPENDDEVELS := libnl
69 ALL += util-vserver
70
71 #
72 # NodeUpdate
73 #
74 NodeUpdate-MODULES := NodeUpdate
75 NodeUpdate-SPEC := NodeUpdate.spec
76 ALL += NodeUpdate
77
78 #
79 # ipod
80 #
81 PingOfDeath-MODULES := PingOfDeath
82 PingOfDeath-SPEC := ipod.spec
83 ALL += PingOfDeath
84
85 #
86 # NodeManager
87 #
88 NodeManager-MODULES := NodeManager
89 NodeManager-SPEC := NodeManager.spec
90 ALL += NodeManager
91
92 #
93 # pl_sshd
94 #
95 pl_sshd-MODULES := pl_sshd
96 pl_sshd-SPEC := pl_sshd.spec
97 ALL += pl_sshd
98
99 #
100 # libhttpd++: 
101 #
102 # Deprecate when vsys takes over [sapan].
103 # keep in build for proper.
104 #
105 libhttpd-MODULES := libhttpd++
106 libhttpd-SPEC := libhttpd++.spec
107 ALL += libhttpd
108
109 #
110 # proper: Privileged Operations Service
111 #
112 proper-MODULES := proper
113 proper-SPEC := proper.spec
114 #proper-RPMBUILD := sudo bash ./rpmbuild.sh
115 proper-DEPENDS := libhttpd
116 proper-DEPENDDEVELRPMS := libhttpd++
117 ALL += proper
118
119 #
120 # codemux: Port 80 demux
121 #
122 codemux-MODULES := CoDemux
123 codemux-SPEC   := codemux.spec
124 codemux-RPMBUILD := sudo bash ./rpmbuild.sh
125 ALL += codemux
126
127 #
128 # ulogd
129 #
130 ulogd-MODULES := ulogd
131 ulogd-SPEC := ulogd.spec
132 ulogd-DEPENDDEVELS := $(kernel_package) proper
133 ALL += ulogd
134
135 #
136 # fprobe-ulog
137 #
138 fprobe-ulog-MODULES := fprobe-ulog
139 fprobe-ulog-SPEC := fprobe-ulog.spec
140 ALL += fprobe-ulog
141
142 #
143 # netflow
144 #
145 netflow-MODULES := PlanetFlow
146 netflow-SPEC := netflow.spec
147 ALL += netflow
148
149 #
150 # PlanetLab Mom: Cleans up your mess
151 #
152 pl_mom-MODULES := Mom
153 pl_mom-SPEC := pl_mom.spec
154 ALL += pl_mom
155
156 #
157 # iptables
158 #
159 iptables-MODULES := iptables
160 iptables-SPEC := iptables.spec
161 iptables-DEPENDDEVELS := $(kernel_package)
162 ALL += iptables
163
164 #
165 # iproute
166 #
167 iproute-MODULES := iproute2
168 iproute-SPEC := iproute.spec
169 ALL += iproute
170
171 #
172 # util-python
173 #
174 # [marc]    deprecate with proper
175 #
176 #util-python-MODULES := util-python
177 #util-python-SPEC := util-python.spec
178 #ALL += util-python
179
180 #
181 # vsys
182 #
183 vsys-MODULES := vsys
184 vsys-SPEC := vsys.spec
185 ifeq ($(DISTRO),"Fedora")
186 ifeq ($(RELEASE),7)
187 ALL += vsys
188 endif
189 endif
190
191 #
192 # PLCAPI
193 #
194 PLCAPI-MODULES := PLCAPI
195 PLCAPI-SPEC := PLCAPI.spec
196 ALL += PLCAPI
197
198 #
199 # PLCWWW
200 #
201 PLCWWW-MODULES := WWW
202 PLCWWW-SPEC := PLCWWW.spec
203 ALL += PLCWWW
204
205 #
206 # bootmanager
207 #
208 bootmanager-MODULES := BootManager build
209 bootmanager-SPEC := bootmanager.spec
210 # Package must be built as root
211 bootmanager-RPMBUILD := sudo bash ./rpmbuild.sh
212 ALL += bootmanager
213
214 #
215 # pypcilib : used in bootcd
216
217 pypcilib-MODULES := pypcilib
218 pypcilib-SPEC := pypcilib.spec
219 ALL += pypcilib
220
221 # copy the current list, so as to keep image-building rpms out
222 ALL-REGULARS := $(ALL)
223
224 #
225 # vserver : reference image for slices
226 #
227 vserver-MODULES := VserverReference build
228 vserver-SPEC := vserver-reference.spec
229 # Package must be built as root
230 vserver-RPMBUILD := sudo bash ./rpmbuild.sh
231 # package requires all regular packages
232 vserver-DEPENDS := $(ALL-REGULARS)
233 vserver-DEPENDFILES := RPMS/yumgroups.xml
234 ALL += vserver
235
236 #
237 # bootcd
238 #
239 bootcd-MODULES := BootCD BootManager build
240 bootcd-SPEC := bootcd.spec
241 bootcd-RPMBUILD := sudo bash ./rpmbuild.sh
242 # package has *some* dependencies, at least these ones
243 bootcd-DEPENDS := $(ALL-REGULARS)
244 bootcd-DEPENDFILES := RPMS/yumgroups.xml
245 ALL += bootcd
246
247 #
248 # bootstrapfs
249 #
250 bootstrapfs-MODULES := BootstrapFS build
251 bootstrapfs-SPEC := bootstrapfs.spec
252 bootstrapfs-RPMBUILD := sudo bash ./rpmbuild.sh
253 # package requires all regular packages
254 bootstrapfs-DEPENDS := $(ALL-REGULARS)
255 bootstrapfs-DEPENDFILES := RPMS/yumgroups.xml
256 ALL += bootstrapfs
257
258 #
259 # myplc : initial, chroot-based packaging
260 #
261 myplc-MODULES := MyPLC build
262 myplc-SPEC := myplc.spec
263 # Package must be built as root
264 myplc-RPMBUILD := sudo bash ./rpmbuild.sh
265 # myplc may require all packages
266 myplc-DEPENDS := $(filter-out vserver,$(ALL))
267 myplc-DEPENDFILES := RPMS/yumgroups.xml
268 ALL += myplc
269
270 #
271 # MyPLC native : lightweight packaging, dependencies are yum-installed in a vserver
272 #
273 myplc-native-MODULES := MyPLC build 
274 myplc-native-SPEC := myplc-native.spec
275 # Package must be built as root
276 myplc-native-RPMBUILD := sudo bash ./rpmbuild.sh
277 # Thierry : don't depend on these at build-time
278 #myplc-native-DEPENDS := $(MyPLC-DEPENDS)
279 # Thierry : dunno about this one, let's stay safe
280 myplc-native-DEPENDFILES := $(MyPLC-DEPENDFILES)
281 #ALL += myplc-native
282
283 #
284 # MyPLC development environment : chroot-based 
285 #
286 myplc-devel-MODULES := MyPLC build 
287 myplc-devel-SPEC := myplc-devel.spec
288 myplc-devel-RPMBUILD := sudo bash ./rpmbuild.sh
289 #ALL += myplc-devel
290
291 #
292 # MyPLC native development environment
293 #
294 myplc-devel-native-MODULES := MyPLC
295 myplc-devel-native-SPEC := myplc-devel-native.spec
296 #ALL += myplc-devel-native