mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
102 lines
2.2 KiB
Bash
Executable File
102 lines
2.2 KiB
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# The contents of this file are subject to the Netscape Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
#
|
|
|
|
DEST=$1; shift
|
|
NAME=$1; shift
|
|
CLASS=$1; shift
|
|
VERSIONN=$1; shift
|
|
STRS=$1; shift
|
|
RESOURCES=$1; shift
|
|
RES_TRANS=$1; shift
|
|
MOZ_USER_DIR=$1; shift
|
|
VSUFFIX=$1; shift
|
|
SS=$1; shift
|
|
LOCALE_MAP=$1
|
|
|
|
|
|
if test $# -eq 2
|
|
then
|
|
shift
|
|
MAIL_IM_HACK=$1; shift
|
|
NEWS_IM_HACK=$1; shift
|
|
else
|
|
MAIL_IM_HACK=""
|
|
NEWS_IM_HACK=""
|
|
fi
|
|
|
|
PROGNAME="mozilla"
|
|
|
|
echo "Generating ${DEST} from resources..."
|
|
|
|
VN=`sed -n 's/^#define VERSION_NUMBER *\(.*\)$/\1/p' ${VERSIONN}`
|
|
VERS=`echo ${VN}${VSUFFIX}`
|
|
|
|
SGIP=`echo ${DEST} | sed -n 's/.*IRIX.*/TRUE/p'`
|
|
if [ "x${SGIP}" = "xTRUE" ]; then
|
|
NOTSGI="!"
|
|
ONLYSGI=""
|
|
else
|
|
NOTSGI=""
|
|
ONLYSGI="!"
|
|
fi
|
|
|
|
SUNP=`echo ${DEST} | sed -n 's/.*SunOS.*/TRUE/p'`
|
|
if [ "x${SUNP}" = "xTRUE" ]; then
|
|
NOTSUN="!"
|
|
ONLYSUN=""
|
|
else
|
|
NOTSUN=""
|
|
ONLYSUN="!"
|
|
fi
|
|
|
|
SCOP=`echo ${DEST} | sed -n 's/.*SCO.*/TRUE/p'`
|
|
if [ "x${SCOP}" = "xTRUE" ]; then
|
|
ONLYSCO=""
|
|
else
|
|
ONLYSCO="!"
|
|
fi
|
|
|
|
# Sed sucks! I have to hard code the filename
|
|
rm -f ${DEST}
|
|
cat ${RESOURCES} ${LOCALE_MAP} ${STRS} | sed \
|
|
"s/@NAME@/${NAME}/g;
|
|
s/@CLASS@/${CLASS}/g;
|
|
s/@PROGNAME@/${PROGNAME}/g;
|
|
s/@VERSION@/${VERS}/g;
|
|
s/@NOTSGI@/${NOTSGI}/g;
|
|
s/@NOTSUN@/${NOTSUN}/g;
|
|
s/@ONLYSGI@/${ONLYSGI}/g;
|
|
s/@ONLYSCO@/${ONLYSCO}/g;
|
|
s/@ONLYSUN@/${ONLYSUN}/g;
|
|
s/@LOC@//g;
|
|
s/@LTD@//g;
|
|
s:@LIBDIR@:${LOC_LIB_DIR}:g;
|
|
s/@MAIL_IM_HACK@/${MAIL_IM_HACK}/g;
|
|
s/@NEWS_IM_HACK@/${NEWS_IM_HACK}/g;
|
|
s/@URLVERSION@/${VERS}/g;
|
|
s/@MOZ_USER_DIR@/${MOZ_USER_DIR}/g;
|
|
/@INCLUDE resources-translations@.*/ {
|
|
r ${RES_TRANS}
|
|
d
|
|
}" > ${DEST}
|
|
|