1998-05-23 23:35:29 +00:00
|
|
|
#! /bin/sh
|
1997-09-22 22:49:02 +00:00
|
|
|
#
|
|
|
|
# GNUstep.sh.in
|
|
|
|
#
|
|
|
|
# Shell initialization for the GNUstep environment.
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# Author: Scott Christley <scottc@net-community.com>
|
|
|
|
#
|
|
|
|
# This file is part of the GNUstep Makefile Package.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public
|
|
|
|
# License along with this library; see the file COPYING.LIB.
|
|
|
|
# If not, write to the Free Software Foundation,
|
|
|
|
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Set the GNUstep system root and local root
|
|
|
|
#
|
|
|
|
GNUSTEP_SYSTEM_ROOT=@prefix@
|
1999-04-23 02:54:45 +00:00
|
|
|
if [ -z "$LIBRARY_COMBO" ]; then
|
|
|
|
LIBRARY_COMBO=@ac_cv_library_combo@
|
|
|
|
fi
|
1997-11-13 21:28:59 +00:00
|
|
|
export GNUSTEP_SYSTEM_ROOT LIBRARY_COMBO
|
1997-10-28 02:34:11 +00:00
|
|
|
|
1997-11-13 21:28:59 +00:00
|
|
|
GNUSTEP_LOCAL_ROOT=@prefix@/Local
|
|
|
|
GNUSTEP_USER_ROOT=~/GNUstep
|
|
|
|
export GNUSTEP_LOCAL_ROOT GNUSTEP_USER_ROOT
|
1997-09-22 22:49:02 +00:00
|
|
|
|
1998-09-03 14:35:49 +00:00
|
|
|
if [ -z "$GNUSTEP_BUILD_ROOT" ]; then
|
|
|
|
GNUSTEP_MAKEFILES=$GNUSTEP_SYSTEM_ROOT/Makefiles
|
|
|
|
else
|
|
|
|
GNUSTEP_MAKEFILES=$GNUSTEP_BUILD_ROOT/Makefiles
|
|
|
|
fi
|
1999-08-01 13:32:58 +00:00
|
|
|
export GNUSTEP_MAKEFILES
|
1998-09-03 14:35:49 +00:00
|
|
|
|
1997-09-22 22:49:02 +00:00
|
|
|
#
|
|
|
|
# Determine the host information
|
|
|
|
#
|
1999-09-07 19:10:49 +00:00
|
|
|
if [ -z "$GNUSTEP_HOST" ]; then
|
|
|
|
GNUSTEP_HOST=`(cd /tmp; $GNUSTEP_MAKEFILES/config.guess)`
|
|
|
|
fi
|
1998-09-03 14:35:49 +00:00
|
|
|
GNUSTEP_HOST_CPU=`$GNUSTEP_MAKEFILES/cpu.sh $GNUSTEP_HOST`
|
|
|
|
GNUSTEP_HOST_VENDOR=`$GNUSTEP_MAKEFILES/vendor.sh $GNUSTEP_HOST`
|
|
|
|
GNUSTEP_HOST_OS=`$GNUSTEP_MAKEFILES/os.sh $GNUSTEP_HOST`
|
1997-09-22 22:49:02 +00:00
|
|
|
|
|
|
|
# Clean the host
|
1998-09-03 14:35:49 +00:00
|
|
|
GNUSTEP_HOST_CPU=`$GNUSTEP_MAKEFILES/clean_cpu.sh $GNUSTEP_HOST_CPU`
|
|
|
|
GNUSTEP_HOST_VENDOR=`$GNUSTEP_MAKEFILES/clean_vendor.sh $GNUSTEP_HOST_VENDOR`
|
|
|
|
GNUSTEP_HOST_OS=`$GNUSTEP_MAKEFILES/clean_os.sh $GNUSTEP_HOST_OS`
|
1997-09-22 22:49:02 +00:00
|
|
|
|
|
|
|
export GNUSTEP_HOST GNUSTEP_HOST_CPU GNUSTEP_HOST_VENDOR GNUSTEP_HOST_OS
|
|
|
|
|
1998-09-03 14:35:49 +00:00
|
|
|
#
|
|
|
|
# the rest of this file is only executed, if the core already is installed.
|
|
|
|
#
|
|
|
|
if [ -z "$GNUSTEP_BUILD_ROOT" ]; then
|
|
|
|
|
1997-09-22 22:49:02 +00:00
|
|
|
#
|
|
|
|
# Add the GNUstep tools directories to the path
|
|
|
|
#
|
1999-06-02 03:16:12 +00:00
|
|
|
if [ -z "$GNUSTEP_PATHPREFIX_LIST" ]; then
|
|
|
|
GNUSTEP_PATHPREFIX_LIST=$GNUSTEP_USER_ROOT:$GNUSTEP_LOCAL_ROOT:$GNUSTEP_SYSTEM_ROOT
|
|
|
|
export GNUSTEP_PATHPREFIX_LIST
|
|
|
|
fi
|
1999-07-26 20:35:09 +00:00
|
|
|
tmp_IFS="$IFS"
|
1999-06-02 03:16:12 +00:00
|
|
|
IFS=:
|
1999-06-04 04:26:07 +00:00
|
|
|
temp_path=
|
1999-06-02 03:16:12 +00:00
|
|
|
for dir in $GNUSTEP_PATHPREFIX_LIST; do
|
1999-06-04 04:26:07 +00:00
|
|
|
temp_path=$temp_path$dir/Tools:
|
1999-06-28 13:31:25 +00:00
|
|
|
temp_path=$temp_path$dir/Tools/${GNUSTEP_HOST_CPU}/${GNUSTEP_HOST_OS}:
|
1999-06-02 03:16:12 +00:00
|
|
|
done
|
1999-06-04 04:26:07 +00:00
|
|
|
PATH=$temp_path$PATH
|
1999-07-26 20:35:09 +00:00
|
|
|
IFS="$tmp_IFS"
|
1997-10-28 02:34:11 +00:00
|
|
|
|
1999-07-15 15:31:42 +00:00
|
|
|
if [ -z "$MANPATH" ]; then
|
|
|
|
MANPATH=${GNUSTEP_SYSTEM_ROOT}/Library/man:/usr/local/man:/usr/man
|
|
|
|
else
|
|
|
|
MANPATH=${GNUSTEP_SYSTEM_ROOT}/Library/man:${MANPATH}
|
|
|
|
fi
|
|
|
|
|
1998-09-03 14:35:49 +00:00
|
|
|
. $GNUSTEP_MAKEFILES/ld_lib_path.sh
|
1997-09-22 22:49:02 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Perform any user initialization
|
|
|
|
#
|
1997-10-29 16:27:45 +00:00
|
|
|
if [ -f ~/.GNUstep/GNUstep.sh ]
|
1997-09-22 22:49:02 +00:00
|
|
|
then
|
1999-06-27 14:33:32 +00:00
|
|
|
. ~/.GNUstep/GNUstep.sh
|
1997-09-22 22:49:02 +00:00
|
|
|
fi
|
1998-09-03 14:35:49 +00:00
|
|
|
|
1999-01-07 18:26:43 +00:00
|
|
|
#
|
|
|
|
# Run 'make_services' in background if possible - updates cache of services
|
|
|
|
# and applications/file-extensions known to the applications.
|
|
|
|
#
|
1999-06-27 14:35:36 +00:00
|
|
|
if [ -x $GNUSTEP_SYSTEM_ROOT/Tools/make_services ]
|
|
|
|
then
|
1999-06-27 14:33:32 +00:00
|
|
|
$GNUSTEP_SYSTEM_ROOT/Tools/make_services &
|
|
|
|
fi
|
1999-01-07 18:26:43 +00:00
|
|
|
|
1998-09-03 14:35:49 +00:00
|
|
|
fi # [ -z "$GNUSTEP_BUILD_ROOT" ]
|