1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
#!/bin/sh
#___INFO__MARK_BEGIN__
##########################################################################
#
# The Contents of this file are made available subject to the terms of
# the Sun Industry Standards Source License Version 1.2
#
# Sun Microsystems Inc., March, 2001
#
#
# Sun Industry Standards Source License Version 1.2
# =================================================
# The contents of this file are subject to the Sun Industry Standards
# Source License Version 1.2 (the "License"); You may not use this file
# except in compliance with the License. You may obtain a copy of the
# License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
#
# Software provided under this License is provided on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
# See the License for the specific provisions governing your rights and
# obligations concerning the Software.
#
# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
#
# Copyright: 2001 by Sun Microsystems, Inc.
#
# All Rights Reserved.
#
##########################################################################
#___INFO__MARK_END__
# This probably isn't worth keeping.
echo ""
echo "This will configure, compile and install the GNU gettext libary"
ARCHITECTURE=$1
INSTALLDIR=$2
GETTEXTDIR=$3
if [ -z "$ARCHITECTURE" || -z "$INSTALLDIR" || -z "$GETTEXTDIR" ]; then
echo "Error: wrong arguments "
echo "Usage: ${0} <ARCH> <INSTALL_DIR> <SOURCE_DIR>"
echo " <ARCH> : e.g. SOLARIS64 etc."
echo " <INSTALL_DIR> : path where the binaries should be installed"
echo " (e.g. /home/codine/gettext)"
echo " <SOURCE_DIR> : path to the GNU gettext source code"
exit -1
fi
echo ""
echo "Following parameters are used:"
echo "ARCHITECTURE = ${ARCHITECTURE}"
echo "INSTALLDIR = ${INSTALLDIR}"
echo "GETTEXTDIR = ${GETTEXTDIR}"
echo "please wait ..."
if [ "${ARCHITECTURE}" = "SOLARIS64" ]; then
echo ""
echo "This is a SOLARIS64 system, we have to do something special ..."
CFLAGS="-fast -xarch=v9"
echo "-end of SOLARIS64 specific options-"
fi
( cd ${GETTEXTDIR}
if [ -f Makefile ]; then
echo ""
echo "Cleaning up binaries and object files ..."
make clean
echo ""
echo "Cleaning up old configure files ..."
make distclean
fi
echo ""
echo "Perform configure (INSTALLDIR is ${INSTALLDIR}) ..."
configure --prefix=${INSTALLDIR} --exec-prefix=${INSTALLDIR}/${ARCHITECTURE} --with-included-gettext --enable-shared
echo ""
echo "Perform make"
make
echo ""
echo "Perform self-tests"
make check
if [ ! -f ${INSTALLDIR} ]; then
echo ""
echo "Creating directory ${INSTALLDIR}, chmod to 774"
mkdir ${INSTALLDIR}
chmod 774 ${INSTALLDIR}
fi
OLDFILE=`ls -la ${INSTALLDIR}/${ARCHITECTURE}/bin/gettext`
echo ""
echo "Installing libary into ${INSTALLDIR}"
make install
) # cd
NEWFILE=`ls -la ${INSTALLDIR}/${ARCHITECTURE}/bin/gettext`
echo "Old gettext binary file: ${OLDFILE}"
echo "New gettext binary file: ${NEWFILE}"
if [ "${OLDFILE}" = "${NEWFILE}" ]; then
echo ""
echo "STATE: W A R N I N G : new gettext binary not installed for ${ARCHITECTURE}"
exit -1
fi
echo ""
echo "STATE: new gettext binary installed for ${ARCHITECTURE}"
|