2006-04-20 08:13:31 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 08:01:35 -06:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
2008-04-10 10:50:40 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2006-04-20 08:13:31 -05:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
# -------------
|
|
|
|
#
|
|
|
|
# The purpose of this script to take Mac OS X executables and shared libraries
|
|
|
|
# and package them into the required Mac OS X bundle format.
|
|
|
|
#
|
|
|
|
# This script has the following usage:
|
|
|
|
# macosx-create-bundle file1 [file2] ... [fileN]
|
|
|
|
#
|
|
|
|
# Note that file1 through fileN can in either of the following formats:
|
|
|
|
# - A file name
|
|
|
|
# - A file name and a directory to look for missing files. To use this option,
|
|
|
|
# use the following format:
|
|
|
|
# filename=directory
|
|
|
|
#
|
|
|
|
# The file argument is the file that you want to package into a Mac OS X
|
|
|
|
# bundle. Currently, this script will only package executables and shared
|
|
|
|
# libraries.
|
|
|
|
#
|
|
|
|
# The output for each executable will be a bundle named <file>.app and
|
|
|
|
# the output for each shared library will be a symlink from libfoo.jnilib
|
|
|
|
# back to libfoo.dylib.
|
|
|
|
# These output directories will be in the same directory as the executable or
|
|
|
|
# shared library.
|
|
|
|
|
|
|
|
# Code
|
|
|
|
# ----
|
|
|
|
|
|
|
|
# Parse command line arguments
|
|
|
|
if [ $# = 0 ]; then
|
|
|
|
printf "macosx-create-bundle: error: incorrect number of arguments\n" >&2
|
|
|
|
printf "Usage: macosx-create-bundle file1 [file2] ... [fileN]\n" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
while [ $# != 0 ]; do
|
|
|
|
inputfile=`echo "$1" | awk -F= '{print $1}'`
|
|
|
|
sourcedir=`echo "$1" | awk -F= '{print $2}'`
|
|
|
|
|
|
|
|
shift
|
|
|
|
|
|
|
|
inputfilename=`basename "$inputfile"`
|
|
|
|
outputdir=`dirname "$inputfile"`
|
|
|
|
|
|
|
|
solverlibdir="$SOLARVERSION/$INPATH/lib"
|
|
|
|
locallibdir="../../../../lib"
|
|
|
|
|
|
|
|
solverbindir="$SOLARVERSION/$INPATH/bin"
|
|
|
|
localbindir="../../.."
|
|
|
|
|
|
|
|
# Determine file type
|
|
|
|
filetype=`file -L "$inputfile"`
|
|
|
|
|
|
|
|
# Create bundle based on file type
|
|
|
|
if printf "$filetype" | grep -q 'Mach-O executable'; then
|
|
|
|
|
|
|
|
# Do nothing as this step is obsolete
|
|
|
|
:
|
|
|
|
|
|
|
|
elif printf "$filetype" | grep -q 'Mach-O dynamically linked shared library'; then
|
|
|
|
# Screen out lib\w+static libraries as they are not used directly
|
|
|
|
if ! printf "$inputfilename" | grep -q -x -E 'lib\w+static.*\.dylib'; then
|
|
|
|
# Create jnilib link
|
|
|
|
inputjnilibname="`basename $inputfilename .dylib`.jnilib"
|
|
|
|
if [ ! -L "$outputdir/$inputjnilibname" ]; then
|
|
|
|
rm -Rf "$outputdir/$inputjnilibname"
|
|
|
|
fi
|
|
|
|
# Link jnilib
|
|
|
|
ln -sf "$inputfilename" "$outputdir/$inputjnilibname"
|
|
|
|
|
|
|
|
printf "macosx-create-bundle: $outputdir/$inputjnilibname successfully created\n"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
printf "macosx-create-bundle: error: file is not an executable or shared library.\n" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|