VirtualBox

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

Last change on this file since 58788 was 58387, checked in by vboxsync, 9 years ago

Installer/linux (host): silence some non-fatal warnings in rpm/rules and do not copy no-longer-needed files.

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

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