VirtualBox

source: vbox/trunk/src/VBox/Installer/solaris/makepackage.sh@ 16793

Last change on this file since 16793 was 16713, checked in by vboxsync, 16 years ago

Solaris/Installer: Fixed VBoxVRDP broken link.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 7.9 KB
Line 
1#!/bin/sh
2## @file
3# Sun xVM VirtualBox
4# VirtualBox package creation script, Solaris hosts.
5#
6
7#
8# Copyright (C) 2007-2008 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19# Clara, CA 95054 USA or visit http://www.sun.com if you need
20# additional information or have any questions.
21#
22
23#
24# Usage:
25# makespackage.sh [--hardened] $(PATH_TARGET)/install packagename {$(KBUILD_TARGET_ARCH)|neutral} $(VBOX_SVN_REV) [VBIPackageName]
26
27
28# Parse options.
29HARDENED=""
30while test $# -ge 1;
31do
32 case "$1" in
33 --hardened)
34 HARDENED=1
35 ;;
36 *)
37 break
38 ;;
39 esac
40 shift
41done
42
43if [ -z "$4" ]; then
44 echo "Usage: $0 installdir packagename x86|amd64 svnrev [VBIPackage]"
45 echo "-- packagename must not have any extension (e.g. VirtualBox-SunOS-amd64-r28899)"
46 exit 1
47fi
48
49VBOX_INSTALLED_DIR=$1
50VBOX_PKGFILE=$2.pkg
51VBOX_ARCHIVE=$2.tar.gz
52# VBOX_PKG_ARCH is currently unused.
53VBOX_PKG_ARCH=$3
54VBOX_SVN_REV=$4
55
56VBOX_PKGNAME=SUNWvbox
57VBOX_GGREP=/usr/sfw/bin/ggrep
58VBOX_AWK=/usr/bin/awk
59VBOX_GTAR=/usr/sfw/bin/gtar
60
61# check for GNU grep we use which might not ship with all Solaris
62if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
63 echo "## GNU grep not found in $VBOX_GGREP."
64 exit 1
65fi
66
67# check for GNU tar we use which might not ship with all Solaris
68if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
69 echo "## GNU tar not found in $VBOX_GTAR."
70 exit 1
71fi
72
73# bail out on non-zero exit status
74set -e
75
76# Fixup filelist using awk, the parameters must be in awk syntax
77# params: filename condition action
78filelist_fixup()
79{
80 "$VBOX_AWK" 'NF == 6 && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
81 mv -f "tmp-$1" "$1"
82}
83
84hardlink_fixup()
85{
86 "$VBOX_AWK" 'NF == 3 && $1=="l" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
87 mv -f "tmp-$1" "$1"
88}
89
90symlink_fixup()
91{
92 "$VBOX_AWK" 'NF == 3 && $1=="s" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
93 mv -f "tmp-$1" "$1"
94}
95
96
97# prepare file list
98cd "$VBOX_INSTALLED_DIR"
99echo 'i pkginfo=./vbox.pkginfo' > prototype
100echo 'i postinstall=./postinstall.sh' >> prototype
101echo 'i preremove=./preremove.sh' >> prototype
102echo 'i space=./vbox.space' >> prototype
103if test -f "./vbox.copyright"; then
104 echo 'i copyright=./vbox.copyright' >> prototype
105fi
106
107# Relative hardlinks
108ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxManage
109ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxSDL
110ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/vboxwebsrv
111ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/webtest
112ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxZoneAccess
113if test -f $VBOX_INSTALLED_DIR/amd64/VirtualBox || test -f $VBOX_INSTALLED_DIR/i386/VirtualBox; then
114 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VirtualBox
115fi
116if test -f $VBOX_INSTALLED_DIR/amd64/VBoxBFE || test -f $VBOX_INSTALLED_DIR/i386/VBoxBFE; then
117 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxBFE
118fi
119if test -f $VBOX_INSTALLED_DIR/amd64/VBoxHeadless || test -f $VBOX_INSTALLED_DIR/i386/VBoxHeadless; then
120 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxHeadless
121 ln -fs ./VBoxHeadless $VBOX_INSTALLED_DIR/VBoxVRDP
122fi
123
124find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vbox.pkginfo|postinstall.sh|preremove.sh|ReadMe.txt|vbox.space|vbox.copyright|VirtualBoxKern' | pkgproto >> prototype
125
126# don't grok for the class files
127filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
128filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3"="$3'
129hardlink_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3'
130symlink_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3'
131
132# install the kernel modules to the right place.
133filelist_fixup prototype '$3 == "opt/VirtualBox/i386/vboxdrv=i386/vboxdrv"' '$3 = "platform/i86pc/kernel/drv/vboxdrv=i386/vboxdrv"; $6 = "sys"'
134filelist_fixup prototype '$3 == "opt/VirtualBox/amd64/vboxdrv=amd64/vboxdrv"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxdrv=amd64/vboxdrv"; $6 = "sys"'
135
136filelist_fixup prototype '$3 == "opt/VirtualBox/i386/vboxflt=i386/vboxflt"' '$3 = "platform/i86pc/kernel/drv/vboxflt=i386/vboxflt"; $6 = "sys"'
137filelist_fixup prototype '$3 == "opt/VirtualBox/amd64/vboxflt=amd64/vboxflt"' '$3 = "platform/i86pc/kernel/drv/amd64/vboxflt=amd64/vboxflt"; $6 = "sys"'
138
139filelist_fixup prototype '$3 == "opt/VirtualBox/vboxdrv.conf=vboxdrv.conf"' '$3 = "platform/i86pc/kernel/drv/vboxdrv.conf=vboxdrv.conf"'
140filelist_fixup prototype '$3 == "opt/VirtualBox/vboxflt.conf=vboxflt.conf"' '$3 = "platform/i86pc/kernel/drv/vboxflt.conf=vboxflt.conf"'
141
142# hardening requires some executables to be marked setuid.
143if test -n "$HARDENED"; then
144 $VBOX_AWK 'NF == 6 \
145 && ( $3 == "opt/VirtualBox/amd64/VirtualBox=amd64/VirtualBox" \
146 || $3 == "opt/VirtualBox/amd64/VirtualBox3=amd64/VirtualBox3" \
147 || $3 == "opt/VirtualBox/amd64/VBoxHeadless=amd64/VBoxHeadless" \
148 || $3 == "opt/VirtualBox/amd64/VBoxSDL=amd64/VBoxSDL" \
149 || $3 == "opt/VirtualBox/amd64/VBoxBFE=amd64/VBoxBFE" \
150 || $3 == "opt/VirtualBox/i386/VirtualBox=i386/VirtualBox" \
151 || $3 == "opt/VirtualBox/i386/VirtualBox3=i386/VirtualBox3" \
152 || $3 == "opt/VirtualBox/i386/VBoxHeadless=i386/VBoxHeadless" \
153 || $3 == "opt/VirtualBox/i386/VBoxSDL=i386/VBoxSDL" \
154 || $3 == "opt/VirtualBox/i386/VBoxBFE=i386/VBoxBFE" \
155 ) \
156 { $4 = "4755" } { print }' prototype > prototype2
157 mv -f prototype2 prototype
158fi
159
160# desktop links and icons
161filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox.desktop=virtualbox.desktop"' '$3 = "usr/share/applications/virtualbox.desktop=virtualbox.desktop"'
162filelist_fixup prototype '$3 == "opt/VirtualBox/VBox.png=VBox.png"' '$3 = "usr/share/pixmaps/VBox.png=VBox.png"'
163
164# zoneaccess SMF manifest
165filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox-zoneaccess.xml=virtualbox-zoneaccess.xml"' '$3 = "var/svc/manifest/application/virtualbox/zoneaccess.xml=virtualbox-zoneaccess.xml"'
166
167# webservice SMF manifest
168filelist_fixup prototype '$3 == "opt/VirtualBox/virtualbox-webservice.xml=virtualbox-webservice.xml"' '$3 = "var/svc/manifest/application/virtualbox/webservice.xml=virtualbox-webservice.xml"'
169
170# webservice SMF start/stop script
171filelist_fixup prototype '$3 == "opt/VirtualBox/smf-vboxwebsrv.sh=smf-vboxwebsrv.sh"' '$3 = "opt/VirtualBox/smf-vboxwebsrv=smf-vboxwebsrv.sh"'
172
173echo " --- start of prototype ---"
174cat prototype
175echo " --- end of prototype --- "
176
177# explicitly set timestamp to shutup warning
178VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`_r$VBOX_SVN_REV
179
180# create the package instance
181pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
182
183# translate into package datastream
184pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
185
186# $5 if exist would contain the path to the VBI package to include in the .tar.gz
187if test -f "$5"; then
188 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" "$5" autoresponse ReadMe.txt
189else
190 $VBOX_GTAR zcvf "$VBOX_ARCHIVE" "$VBOX_PKGFILE" autoresponse ReadMe.txt
191fi
192
193echo "## Packaging and transfer completed successfully!"
194rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
195
196exit $?
197
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