VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/rpm/rules@ 84959

Last change on this file since 84959 was 84959, checked in by vboxsync, 5 years ago

Installer/linux: Some RPM build/package cleanups. Makes the CHM help file optional (WINE is increasingly hard to get in working shape), just use it if there is a prebuilt one. Move directory where the main VirtualBox build is done to .../out (there is still lots of rubbish dumped into the source tree, to be fixed later).

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette