1 | #!/usr/bin/make -f
|
---|
2 | # $Id: rules 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # VirtualBox rules.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox base platform packages, as
|
---|
11 | # available from https://www.virtualbox.org.
|
---|
12 | #
|
---|
13 | # This program is free software; you can redistribute it and/or
|
---|
14 | # modify it under the terms of the GNU General Public License
|
---|
15 | # as published by the Free Software Foundation, in version 3 of the
|
---|
16 | # License.
|
---|
17 | #
|
---|
18 | # This program is distributed in the hope that it will be useful, but
|
---|
19 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | # General Public License for more details.
|
---|
22 | #
|
---|
23 | # You should have received a copy of the GNU General Public License
|
---|
24 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 | #
|
---|
26 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
27 | #
|
---|
28 |
|
---|
29 | # possible overrides:
|
---|
30 | # OSE=1 force VBOX_OSE
|
---|
31 | # NOPARALLEL=1 compile with -j1
|
---|
32 | # LINUX=<dir> compile vboxdrv against Linux found in <dir>
|
---|
33 | # VERBOSE=1 verbose build
|
---|
34 | # DEBUG=1 debug build
|
---|
35 | # NOSUBVER=1 disable generation of the sub-version field (which is
|
---|
36 | # either the subversion rev [if available] or the build date)
|
---|
37 | # NODOCS=1 don't build docs, use precompiled UserManual*.pdf and
|
---|
38 | # maybe UserManual*.qch and UserManual*.qhc from $(vboxroot)/prebuild
|
---|
39 | # NOMODS=1 don't build any module
|
---|
40 | # NOQT=1 don't build the Qt GUI
|
---|
41 | # NOSDL=1 don't build VBoxSDL
|
---|
42 | # EFI=1 include the EFI binary from prebuild
|
---|
43 | # VERSUFFIX=<suffix> set a particular package version suffix (e.g. _customer)
|
---|
44 | # HEADLESS=1 build the headless version
|
---|
45 | # VNC=1 build VNC code
|
---|
46 | # NOWEBSVC=1 don't build the webservice API
|
---|
47 | # STAGEDISO=<path> don't build the VBoxAdditions, use the precompiled .iso
|
---|
48 | # PKGDIR=<path> where to store the final package(s)
|
---|
49 | # svn_revision=xxx do not depend on subversion being available, but use this
|
---|
50 | # hard-coded revision number instead
|
---|
51 | #
|
---|
52 | # NODOCS will be set if UserManual*.pdf, UserManual*.qch and UserManual*.qhc are
|
---|
53 | # placed in $(vboxroot)/prebuild.
|
---|
54 | # STAGEDISO will be set if VBoxGuestAdditions.iso is placed there.
|
---|
55 | #
|
---|
56 | # Wine will not be required if STAGEDISO is set.
|
---|
57 |
|
---|
58 | verpkg := VirtualBox-7.1
|
---|
59 | vboxroot := $(shell while ! test -r configure && ! test "$$PWD" = "/"; do cd ..; done; pwd)
|
---|
60 | instlin := $(vboxroot)/src/VBox/Installer/linux
|
---|
61 | pkgdir := $(if $(PKGDIR),$(PKGDIR),$(shell cd $(vboxroot)/..; pwd))
|
---|
62 | outdir := $(if $(PATH_OUT_BASE),$(PATH_OUT_BASE),$(vboxroot)/out)
|
---|
63 | bldbase := $(outdir)/rpm
|
---|
64 | builddir := $(bldbase)/builddir
|
---|
65 | stagedir := $(bldbase)/rpmbuild
|
---|
66 | rpmlib := $(shell if [ `uname -m` = "x86_64" ]; then echo "lib64"; else echo "lib"; fi)
|
---|
67 | verfile := $(builddir)/version-generated.mk
|
---|
68 | ose := $(if $(OSE),1,$(if $(wildcard $(vboxroot)/src/VBox/RDP/server),,1))
|
---|
69 | chrarch := $(shell if [ `uname -m` = "x86_64" ]; then echo "amd64"; else echo "x86"; fi)
|
---|
70 | -include $(vboxroot)/SVN_REVISION
|
---|
71 |
|
---|
72 | NOMODS ?= $(ose)
|
---|
73 | NOQT ?= $(HEADLESS)
|
---|
74 | NOSDL ?= $(HEADLESS)
|
---|
75 | NOWEBSVC ?=
|
---|
76 | EFI ?= $(if $(wildcard $(vboxroot)/prebuild/VBoxEFI32.fd $(vboxroot)/prebuild/VBoxEFI64.fd),1,)
|
---|
77 | NODOCS ?= $(if $(wildcard $(addprefix $(vboxroot)/prebuild/,UserManual*.pdf UserManual*.qch UserManual*.qhc)),1,)
|
---|
78 | STAGEDISO ?= $(if $(wildcard $(vboxroot)/prebuild/VBoxGuestAdditions.iso),$(vboxroot)/prebuild,)
|
---|
79 | NOWINE := $(if $(STAGEDISO),1,$(ose))
|
---|
80 |
|
---|
81 | ifneq ($(STAGEDISO),)
|
---|
82 | ifeq ($(wildcard $(STAGEDISO)/VBoxGuestAdditions.iso),)
|
---|
83 | $(error STAGEDISO='$(STAGEDISO)/VBoxGuestAdditions.iso' not found)
|
---|
84 | endif
|
---|
85 | endif
|
---|
86 |
|
---|
87 | ifeq ($(wildcard rpm/rules),)
|
---|
88 | $(error call rpm/rules from src/VBox/Installer/linux)
|
---|
89 | endif
|
---|
90 |
|
---|
91 | ifneq ($(MAKECMDGOALS),clean)
|
---|
92 | # look for fedora
|
---|
93 | rpmrel := $(shell cat /etc/fedora-release 2> /dev/null | sed -e 's/^Fedora *release *\([1-9][0-9]*\) .*/fedora\1/')
|
---|
94 | ifeq ($(rpmrel),)
|
---|
95 | # look for OEL
|
---|
96 | rpmrel := $(shell cat /etc/enterprise-release 2> /dev/null | sed -ne 's/^Enterprise Linux[a-zA-Z ]*\([1-9][0-9]*\).*/el\1/p')
|
---|
97 | endif
|
---|
98 | ifeq ($(rpmrel),)
|
---|
99 | # look for OL
|
---|
100 | rpmrel := $(shell cat /etc/oracle-release 2> /dev/null | sed -ne 's/^Oracle Linux[a-zA-Z ]*\([1-9][0-9]*\).*/el\1/p')
|
---|
101 | endif
|
---|
102 | ifeq ($(rpmrel),)
|
---|
103 | # look for CentOS
|
---|
104 | rpmrel := $(shell cat /etc/redhat-release 2> /dev/null | sed -ne 's/^CentOS[a-zA-Z ]*\([1-9][0-9]*\).*/el\1/p')
|
---|
105 | endif
|
---|
106 | ifeq ($(rpmrel),)
|
---|
107 | # look for Red Hat
|
---|
108 | rpmrel := $(shell cat /etc/redhat-release 2> /dev/null | sed -ne 's/^Red Hat[a-zA-Z ]*\([1-9][0-9]*\).*/el\1/p')
|
---|
109 | endif
|
---|
110 | ifeq ($(rpmrel),)
|
---|
111 | # look for openSUSE
|
---|
112 | rpmrel := $(shell cat /etc/SUSE-brand 2> /dev/null | sed -ne 's/^VERSION *= *\([0-9]*\)\.\([0-9]*\)/openSUSE\1\2/p')
|
---|
113 | endif
|
---|
114 | # look for openSUSE Tumbleweed
|
---|
115 | ifeq ($(rpmrel),)
|
---|
116 | rpmrel := $(shell cat /etc/SUSE-brand 2> /dev/null | sed -ne 's/^VERSION *= *tumbleweed/openSUSETW/p')
|
---|
117 | endif
|
---|
118 | ifeq ($(rpmrel),)
|
---|
119 | $(error failed to detect the release type. Hack the detection.)
|
---|
120 | endif
|
---|
121 |
|
---|
122 | rpmdist := $(strip $(shell grep $(rpmrel) $(instlin)/distributions_rpm | cut -d'=' -f2))
|
---|
123 | ifeq ($(rpmdist),)
|
---|
124 | $(error Cannot detect package distribution (rpmrel=$(rpmrel)))
|
---|
125 | endif
|
---|
126 |
|
---|
127 | ifeq ($(filter-out el5 el6 el7 el8 el9 fedora18 fedora19 fedora20 fedora21 fedora22 fedora24 fedora25 fedora26 fedora29 fedora31 fedora32 fedora33 fedora35 fedora36 fedora40,$(rpmrel)),)
|
---|
128 | rpmspec := rpm_redhat
|
---|
129 | endif
|
---|
130 | ifeq ($(filter-out openSUSE110 openSUSE111 openSUSE112 openSUSE113 openSUSE114 openSUSE123 openSUSE131 openSUSE132 openSUSE150 openSUSE153 openSUSETW,$(rpmrel)),)
|
---|
131 | rpmspec := rpm_suse
|
---|
132 | endif
|
---|
133 | ifeq ($(rpmspec),)
|
---|
134 | $(error failed to detect the .spec file (rpmrel=$(rpmrel)))
|
---|
135 | endif
|
---|
136 | endif
|
---|
137 |
|
---|
138 | ifneq ($(wildcard $(verfile)),)
|
---|
139 | include $(verfile)
|
---|
140 | ver := $(VBOX_VERSION_STRING)
|
---|
141 | svnver := $(if $(NOSUBVER),,$(if $(svn_revision),-$(svn_revision),$(shell if \
|
---|
142 | svn info $(vboxroot) > /dev/null 2>&1; then \
|
---|
143 | svn info $(vboxroot)|sed -e "s/^Revision: \(.*\)/-\1/;t;d"; else \
|
---|
144 | date +"-%Y%m%d"; fi)))
|
---|
145 | rpmver := $(ver)$(subst -,_,$(svnver))$(VERSUFFIX)$(if $(HEADLESS),_headless,)$(if $(DEBUG),_dbg,)
|
---|
146 | archdir := $(bldbase)/VirtualBox-$(ver)
|
---|
147 | rpmname := $(verpkg)-$(rpmver)_$(rpmrel)
|
---|
148 | endif
|
---|
149 |
|
---|
150 | # never ship any modules
|
---|
151 | instmod :=
|
---|
152 |
|
---|
153 | ifeq ($(wildcard /usr/share/doc/packages/bash),)
|
---|
154 | doc_dir := VBOX_PATH_PACKAGE_DOCS="/usr/share/doc/$(verpkg)"
|
---|
155 | else
|
---|
156 | # Novell (OpenSUSE, SLES)
|
---|
157 | doc_dir := VBOX_PATH_PACKAGE_DOCS="/usr/share/doc/packages/$(verpkg)"
|
---|
158 | endif
|
---|
159 |
|
---|
160 | ifeq ($(NOQT),)
|
---|
161 | ifeq ($(rpmrel),el7)
|
---|
162 | # Protect against the fact that this Makefile is run several times, updating
|
---|
163 | # PATH every time. Still assumes that nothing else is added as a prefix.
|
---|
164 | PATH := $(PATH:/opt/rh/devtoolset-9/root/usr/bin:%=%)
|
---|
165 | export PATH := /opt/rh/devtoolset-9/root/usr/bin:$(PATH)
|
---|
166 | endif
|
---|
167 | endif
|
---|
168 |
|
---|
169 | # EL5 ships Python 2.4 while our Python support requires Python 2.6 or later
|
---|
170 | cfg_flags := $(if $(NOQT),--disable-qt,) \
|
---|
171 | $(if $(NOSDL),--disable-vboxsdl,) \
|
---|
172 | $(if $(filter el5 el6,$(rpmrel)),--build-libvpx,) \
|
---|
173 | $(if $(filter el5 el6,$(rpmrel)),--build-libopus,) \
|
---|
174 | $(if $(filter el5 el6,$(rpmrel)),--build-libssl,) \
|
---|
175 | $(if $(filter el5,$(rpmrel)),--build-libcurl,) \
|
---|
176 | $(if $(filter el5,$(rpmrel)),--disable-sdl-ttf,) \
|
---|
177 | $(if $(filter el5,$(rpmrel)),--disable-pulse,) \
|
---|
178 | $(if $(filter el5,$(rpmrel)),--disable-python,) \
|
---|
179 | $(if $(ose),--ose,) $(if $(LINUX),--with-linux=$(LINUX),) \
|
---|
180 | $(if $(HEADLESS),--build-headless,) \
|
---|
181 | $(if $(DEBUG),--build-debug,) \
|
---|
182 | $(if $(NOWINE),,--setup-wine) \
|
---|
183 | $(if $(VNC),--enable-vnc,) \
|
---|
184 | $(if $(PATH_OUT_BASE),--out-base-dir=$(PATH_OUT_BASE),) \
|
---|
185 | --disable-extpack
|
---|
186 |
|
---|
187 | bld_flags := LOCALCFG=$(instlin)/rpm/LocalConfig.kmk \
|
---|
188 | PATH_OUT=$(builddir) \
|
---|
189 | VBOX_WITHOUT_EXTPACK_PUEL_PACKING=1 \
|
---|
190 | VBOX_WITHOUT_EXTPACK_VNC_PACKING=1 \
|
---|
191 | $(if $(filter el5 el6,$(rpmrel)),,VBOX_WITH_VMSVGA3D=1) \
|
---|
192 | VBOX_DO_STRIP= \
|
---|
193 | $(if $(filter el5,$(rpmrel)),VBOX_BLD_PYTHON=$(firstword $(wildcard \
|
---|
194 | /usr/local/bin/python2.7 /usr/bin/python2.7 /usr/bin/python2.6 /usr/bin/python2 /usr/bin/python)),) \
|
---|
195 | $(if $(filter el5,$(rpmrel)),,VBOX_WITH_SYSFS_BY_DEFAULT=1) \
|
---|
196 | $(doc_dir) \
|
---|
197 | VBOX_PACKAGE_DIST=$(rpmdist) \
|
---|
198 | $(if $(svn_revision),VBOX_SVN_REV=$(svn_revision),) \
|
---|
199 | $(if $(NODOCS),VBOX_WITH_DOCS=,) \
|
---|
200 | $(if $(VERBOSE),--print-directory KBUILD_VERBOSE=2,--no-print-directory) \
|
---|
201 | $(if $(STAGEDISO),VBOX_WITHOUT_ADDITIONS=1,)
|
---|
202 |
|
---|
203 | configure: $(bldbase)/configure-stamp
|
---|
204 | $(bldbase)/configure-stamp:
|
---|
205 | mkdir -p $(bldbase)
|
---|
206 | cd $(vboxroot) && ./configure --odir=$(bldbase) $(cfg_flags)
|
---|
207 | touch $@
|
---|
208 |
|
---|
209 | build: $(bldbase)/configure-stamp $(bldbase)/build-stamp
|
---|
210 | $(bldbase)/build-stamp $(verfile): $(bldbase)/configure-stamp
|
---|
211 | . $(bldbase)/env.sh && kmk -C $(vboxroot) $(bld_flags) $(if $(NOPARALLEL),-j1,) all
|
---|
212 | # Files from prebuild go to (builddir)/bin to be used during the
|
---|
213 | # packing stage, overriding what the build did/would produce.
|
---|
214 | $(if $(NODOCS),cp $(addprefix $(vboxroot)/prebuild/,UserManual*.pdf UserManual*.qch UserManual*.qhc) $(builddir)/bin,)
|
---|
215 | $(if $(EFI),cp $(vboxroot)/prebuild/VBoxEFI32.fd $(builddir)/bin,)
|
---|
216 | $(if $(EFI),cp $(vboxroot)/prebuild/VBoxEFI64.fd $(builddir)/bin,)
|
---|
217 | mkdir -p $(builddir)/bin/additions
|
---|
218 | $(if $(STAGEDISO),cp $(STAGEDISO)/VBoxGuestAdditions.iso $(builddir)/bin/additions,)
|
---|
219 | . $(bldbase)/env.sh && kmk -C $(vboxroot) $(bld_flags) \
|
---|
220 | VBOX_NO_LINUX_RUN_INSTALLER=1 \
|
---|
221 | VBOX_LNX_ADD_ARCHIVE.x86=$(builddir)/bin/additions/VBoxGuestAdditions-x86.tar.bz2 \
|
---|
222 | VBOX_LNX_ADD_ARCHIVE.amd64=$(builddir)/bin/additions/VBoxGuestAdditions-amd64.tar.bz2 \
|
---|
223 | VBOX_PATH_ADDITIONS.linux.x86=$(builddir)/bin/additions \
|
---|
224 | VBOX_PATH_ADDITIONS.linux.amd64=$(builddir)/bin/additions \
|
---|
225 | packing
|
---|
226 | touch $(bldbase)/build-stamp
|
---|
227 |
|
---|
228 | clean:
|
---|
229 | rm -rf $(archdir)
|
---|
230 | rm -rf $(stagedir)
|
---|
231 | rm -rf $(builddir)
|
---|
232 | rm -rf $(bldbase)/wine.*
|
---|
233 | rm -rf $(bldbase)/VirtualBox-*
|
---|
234 | rm -f $(bldbase)/VirtualBox.tar $(bldbase)/VirtualBox.tar.bz2
|
---|
235 | rm -f $(bldbase)/build-stamp $(bldbase)/configure-stamp
|
---|
236 | rm -f $(bldbase)/AutoConfig.kmk $(bldbase)/configure.log $(bldbase)/env.sh
|
---|
237 | rm -f $(bldbase)/VirtualBox.spec
|
---|
238 | if [ -d $(bldbase) ]; then rmdir $(bldbase); fi
|
---|
239 |
|
---|
240 | ifeq ($(VBOX_VERSION_MAJOR),)
|
---|
241 | binary: build $(verfile)
|
---|
242 | +$(MAKE) -f rpm/rules binary
|
---|
243 |
|
---|
244 | else
|
---|
245 | binary: build
|
---|
246 | rm -rf $(bldbase)/VirtualBox-*
|
---|
247 | tar -xf $(builddir)/bin/VirtualBox.tar -C $(bldbase)
|
---|
248 | sed \
|
---|
249 | -e 's|%VER%|$(ver)|g' \
|
---|
250 | -e 's|%NAME%|$(verpkg)|g' \
|
---|
251 | -e 's|%BUILDVER%|$(rpmver)|g' \
|
---|
252 | -e 's|%BUILDREL%|$(rpmrel)|g' \
|
---|
253 | -e 's|%BUILDROOT%|$(bldbase)/buildroot|g' \
|
---|
254 | -e 's|%OSE%|$(if $(ose),is_ose,not_ose)|g' \
|
---|
255 | -e 's|%SPEC%|$(rpmspec)|g' \
|
---|
256 | -e 's|%DATE%|$(shell date "+%a %b %d %Y")|g' \
|
---|
257 | -e 's|%PYTHON%|$(if $(filter el5,$(rpmrel)),without_python,with_python)|g' \
|
---|
258 | -e 's|%MACROSPYTHON%|$(if $(wildcard /usr/lib/rpm/macros.d/macros.python3),,$(if $(wildcard /usr/lib/rpm/macros.python),%include /usr/lib/rpm/macros.python,))|g' \
|
---|
259 | -e 's|%INSTMOD%|$(instmod)|g' \
|
---|
260 | -e 's|%LIBASOUND%|$(if $(filter lib64,$(rpmlib)),libasound.so.2()(64bit),libasound.so.2)|g' \
|
---|
261 | -e 's|%INITSCRIPTS%|$(if $(filter fedora,$(rpmspec)),initscripts,)|g' \
|
---|
262 | -e 's|%NETTOOLS%|$(if $(filter fedora18 fedora19 fedora20 fedora21 el5 openSUSE110 openSUSE111 openSUSE112 openSUSE113 openSUSE114,$(rpmrel)),net-tools,iproute)|g' \
|
---|
263 | -e 's|%LIBVULKAN%|$(if $(filter el7,$(rpmrel)),vulkan,%LIBVULKAN%)|g' \
|
---|
264 | -e 's|%LIBVULKAN%|$(if $(findstring el,$(rpmrel)),vulkan-loader,%LIBVULKAN%)|g' \
|
---|
265 | -e 's|%LIBVULKAN%|$(if $(findstring fedora,$(rpmrel)),vulkan-loader,%LIBVULKAN%)|g' \
|
---|
266 | -e 's|%LIBVULKAN%|$(if $(filter openSUSE153,$(rpmrel)),libvulkan1,)|g' \
|
---|
267 | $(instlin)/rpm/VirtualBox.tmpl.spec > $(archdir)/VirtualBox.spec
|
---|
268 | mv $(bldbase)/VirtualBox-$(ver) $(bldbase)/$(rpmname)
|
---|
269 | cp $(vboxroot)/tools/linux.$(chrarch)/bin/chrpath $(bldbase)/$(rpmname) || true
|
---|
270 | tar -cf $(bldbase)/VirtualBox.tar -C $(bldbase) $(rpmname)
|
---|
271 | rm -f $(stagedir)/RPMS/*/VirtualBox*rpm
|
---|
272 | rm -f $(stagedir)/SPECS/*
|
---|
273 | mkdir -p $(stagedir)/BUILD $(stagedir)/RPMS/i386 $(stagedir)/RPMS/x86_64 $(stagedir)/SOURCES $(stagedir)/SPECS $(stagedir)/SRPMS
|
---|
274 | (cd $(bldbase); rpmbuild --define '_topdir $(stagedir)' -tb --clean VirtualBox.tar)
|
---|
275 | mv $(stagedir)/RPMS/*/$(verpkg)-debug* $(pkgdir) || true
|
---|
276 | file=`find $(stagedir)/RPMS -name $(verpkg)*rpm -print`; \
|
---|
277 | mv $$file $(pkgdir)
|
---|
278 | # Note! if rpmbuild fails: sudo chmod a+rw /usr/src/redhat/* /usr/src/redhat/RPMS/*
|
---|
279 | # Note! if find/mv fails: sudo ln -s redhat/ /usr/src/packages
|
---|
280 | endif
|
---|
281 |
|
---|
282 | .PHONY: binary configure build clean
|
---|