* harbour/make_gnu.sh
* harbour/make_tgz.sh
* fixed HPUX detection
* harbour/bin/hb-func.sh
* late GTK lib checking for -xbgtk switch in hb* scripts
* harbour/contrib/btree/hb_btree.api
* harbour/contrib/btree/hb_btree.c
* harbour/contrib/libnf/chdir.c
* harbour/contrib/libnf/dispc.c
* harbour/contrib/libnf/ftint86.ch
* harbour/contrib/libnf/getver.c
* harbour/contrib/libnf/mkdir.c
* harbour/contrib/libnf/proper.c
* harbour/contrib/libnf/rmdir.c
* casting and small fixes for OpenWatcom compilation
* harbour/include/hbdefs.h
* force big endian if not detected automatically for HPUX
* harbour/source/vm/itemapi.c
* HPUX uses isfinite() not finite()
* harbour/source/vm/memvars.c
! fixed endian dependent code
215 lines
5.6 KiB
Bash
215 lines
5.6 KiB
Bash
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
# ---------------------------------------------------------------
|
|
# Copyright 2003 Przemyslaw Czerpak <druzus@polbox.com>
|
|
# simple script to build binaries .tgz from Harbour sources
|
|
#
|
|
# See doc/license.txt for licensing terms.
|
|
# ---------------------------------------------------------------
|
|
|
|
cd `dirname $0`
|
|
. bin/hb-func.sh
|
|
|
|
name="harbour"
|
|
hb_ver=`get_hbver`
|
|
hb_platform=`get_hbplatform`
|
|
[ "${hb_platform}" = "" ] || hb_platform="-${hb_platform}"
|
|
hb_archfile="${name}-${hb_ver}${hb_platform}.bin.tar.gz"
|
|
hb_instfile="${name}-${hb_ver}${hb_platform}.inst.sh"
|
|
hb_lnkso="yes"
|
|
hb_pref="hb"
|
|
hb_contrib=""
|
|
export C_USR="-DHB_FM_STATISTICS_OFF -O2"
|
|
|
|
if [ -z "$HB_ARCHITECTURE" ]; then
|
|
hb_arch=`uname -s | tr -d "[-]" | tr "[A-Z]" "[a-z]" 2>/dev/null`
|
|
case "$hb_arch" in
|
|
*windows*) hb_arch="w32" ;;
|
|
*dos) hb_arch="dos" ;;
|
|
*bsd) hb_arch="bsd" ;;
|
|
esac
|
|
export HB_ARCHITECTURE="$hb_arch"
|
|
fi
|
|
|
|
if [ -z "$HB_COMPILER" ]; then
|
|
case "$HB_ARCHITECTURE" in
|
|
w32) hb_comp="mingw32" ;;
|
|
dos) hb_comp="djgpp" ;;
|
|
*) hb_comp="gcc" ;;
|
|
esac
|
|
export HB_COMPILER="$hb_comp"
|
|
fi
|
|
|
|
if [ -z "$HB_GT_LIB" ]; then export HB_GT_LIB=gtcrs; fi
|
|
if [ -z "$HB_MULTI_GT" ]; then export HB_MULTI_GT=no; fi
|
|
if [ -z "$HB_MT" ]; then export HB_MT=no; fi
|
|
if [ -z "$HB_COMMERCE" ]; then export HB_COMMERCE=no; fi
|
|
|
|
# default lib dir name
|
|
HB_LIBDIRNAME="lib"
|
|
|
|
# Select the platform-specific installation prefix and ownership
|
|
HB_INSTALL_OWNER=root
|
|
case "$HB_ARCHITECTURE" in
|
|
linux)
|
|
[ -z "$HB_INSTALL_PREFIX" ] && HB_INSTALL_PREFIX="/usr"
|
|
[ -d "$HB_INSTALL_PREFIX/lib64" ] && HB_LIBDIRNAME="lib64"
|
|
HB_INSTALL_GROUP=root
|
|
;;
|
|
*)
|
|
[ -z "$HB_INSTALL_PREFIX" ] && HB_INSTALL_PREFIX="/usr/local"
|
|
HB_INSTALL_GROUP=wheel
|
|
;;
|
|
esac
|
|
|
|
# Select the platform-specific command names
|
|
INSTALL=install
|
|
MAKE=make
|
|
TAR=tar
|
|
case "$HB_ARCHITECTURE" in
|
|
darwin) TAR=gtar; INSTALL="install -c" ;;
|
|
bsd) MAKE=gmake ;;
|
|
esac
|
|
|
|
# Set other platform-specific build options
|
|
case "$HB_ARCHITECTURE" in
|
|
linux)
|
|
export HB_GPM_MOUSE=yes
|
|
;;
|
|
darwin)
|
|
# Autodetect old Darwin versions and set appropriate build options
|
|
if [ `uname -r | sed "s/\..*//g"` -lt 6 ]; then
|
|
export HB_NCURSES_FINK=yes
|
|
fi
|
|
[ -z "$HB_WITHOUT_X11" ] && export HB_WITHOUT_X11=yes
|
|
;;
|
|
*)
|
|
[ -z "$HB_WITHOUT_X11" ] && export HB_WITHOUT_X11=yes
|
|
;;
|
|
esac
|
|
|
|
if [ "$HB_COMMERCE" = yes ]
|
|
then
|
|
export HB_GPM_MOUSE=no
|
|
export HB_WITHOUT_GTSLN=yes
|
|
fi
|
|
|
|
export HB_BIN_INSTALL="$HB_INSTALL_PREFIX/bin"
|
|
export HB_INC_INSTALL="$HB_INSTALL_PREFIX/include/${name}"
|
|
export HB_LIB_INSTALL="$HB_INSTALL_PREFIX/$HB_LIBDIRNAME/${name}"
|
|
|
|
# build
|
|
umask 022
|
|
$MAKE -r clean
|
|
$MAKE -r
|
|
for l in ${hb_contrib}
|
|
do
|
|
(cd "contrib/$l"
|
|
$MAKE -r clean
|
|
$MAKE -r)
|
|
done
|
|
|
|
# install
|
|
if [ -z "$TMPDIR" ]; then TMPDIR="/tmp"; fi
|
|
HB_INST_PREF="$TMPDIR/$name.bin.$USER.$$"
|
|
rm -fR "${HB_INST_PREF}"
|
|
|
|
export _DEFAULT_BIN_DIR=$HB_BIN_INSTALL
|
|
export _DEFAULT_INC_DIR=$HB_INC_INSTALL
|
|
export _DEFAULT_LIB_DIR=$HB_LIB_INSTALL
|
|
export HB_BIN_INSTALL="$HB_INST_PREF/$HB_BIN_INSTALL"
|
|
export HB_INC_INSTALL="$HB_INST_PREF/$HB_INC_INSTALL"
|
|
export HB_LIB_INSTALL="$HB_INST_PREF/$HB_LIB_INSTALL"
|
|
|
|
mkdir -p $HB_BIN_INSTALL
|
|
mkdir -p $HB_INC_INSTALL
|
|
mkdir -p $HB_LIB_INSTALL
|
|
$MAKE -r -i install
|
|
for l in ${hb_contrib}
|
|
do
|
|
(cd "contrib/$l"
|
|
$MAKE -r -i install)
|
|
done
|
|
|
|
# Keep the size of the binaries to a minimim.
|
|
strip $HB_BIN_INSTALL/harbour
|
|
# Keep the size of the libraries to a minimim, but don't try to strip symlinks.
|
|
strip -S `find $HB_LIB_INSTALL -type f`
|
|
|
|
mkdir -p $HB_INST_PREF/etc/harbour
|
|
#$INSTALL -m644 source/rtl/gtcrs/hb-charmap.def $HB_INST_PREF/etc/harbour/hb-charmap.def
|
|
|
|
cat > $HB_INST_PREF/etc/harbour.cfg <<EOF
|
|
CC=gcc
|
|
CFLAGS=-c -I$_DEFAULT_INC_DIR -O2
|
|
VERBOSE=YES
|
|
DELTMP=YES
|
|
EOF
|
|
|
|
# check if we should rebuild tools with shared libs
|
|
if [ "${hb_lnkso}" = yes ]
|
|
then
|
|
ADD_LIBS=""
|
|
case $HB_ARCHITECTURE in
|
|
linux) [ "${HB_GPM_MOUSE}" = yes ] && ADD_LIBS="$ADD_LIBS -lgpm" ;;
|
|
darwin) ADD_LIBS="$ADD_LIBS -L/sw/lib" ;;
|
|
esac
|
|
[ "${HB_WITHOUT_GTSLN}" != yes ] && ADD_LIBS="$ADD_LIBS -lslang"
|
|
[ "${HB_WITHOUT_X11}" != yes ] && ADD_LIBS="$ADD_LIBS -L/usr/X11R6/$HB_LIBDIRNAME -lX11"
|
|
|
|
export L_USR="-L${HB_LIB_INSTALL} -l${name} -lncurses ${ADD_LIBS}"
|
|
export PRG_USR="\"-D_DEFAULT_INC_DIR='${_DEFAULT_INC_DIR}'\""
|
|
|
|
for utl in hbmake hbrun hbpp hbdoc hbtest
|
|
do
|
|
(cd "utils/${utl}"
|
|
rm -fR "./${HB_ARCHITECTURE}"
|
|
$MAKE -r install
|
|
strip "${HB_BIN_INSTALL}/${utl}")
|
|
done
|
|
fi
|
|
|
|
# Create and install PP
|
|
pushd contrib/dot
|
|
$HB_BIN_INSTALL/${hb_pref}mk pp -n -w -D_DEFAULT_INC_DIR=\"${_DEFAULT_INC_DIR}\"
|
|
$INSTALL -m755 pp $HB_BIN_INSTALL/pp
|
|
ln -s pp $HB_BIN_INSTALL/pprun
|
|
$INSTALL -m644 rp_dot.ch $HB_INC_INSTALL/
|
|
rm -f pp
|
|
popd
|
|
|
|
|
|
$TAR -czvf "${hb_archfile}" --owner=${HB_INSTALL_OWNER} --group=${HB_INSTALL_GROUP} -C "${HB_INST_PREF}" .
|
|
rm -fR "${HB_INST_PREF}"
|
|
|
|
if [ "${HB_ARCHITECTURE}" = darwin ]; then
|
|
DO_LDCONFIG=""
|
|
else
|
|
DO_LDCONFIG="&& ldconfig"
|
|
fi
|
|
cat > "${hb_instfile}" <<EOF
|
|
#!/bin/sh
|
|
if [ "\$1" == "--extract" ]; then
|
|
sed -e '1,/^HB_INST_EOF\$/ d' \$0 > "${hb_archfile}"
|
|
exit
|
|
fi
|
|
if [ \`id -u\` != 0 ]; then
|
|
echo "This package has to be installed from root account."
|
|
exit 1
|
|
fi
|
|
echo "Do you want to install ${name} (y/n)"
|
|
read ASK
|
|
if [ "\${ASK}" != "y" ] && [ "\${ASK}" != "Y" ]; then
|
|
exit 1
|
|
fi
|
|
(sed -e '1,/^HB_INST_EOF\$/ d' \$0 | gzip -cd | $TAR xvf - -C /) ${DO_LDCONFIG}
|
|
exit \$?
|
|
HB_INST_EOF
|
|
EOF
|
|
cat "${hb_archfile}" >> "${hb_instfile}"
|
|
chmod +x "${hb_instfile}"
|
|
rm -f "${hb_archfile}"
|