mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
908 lines
31 KiB
908 lines
31 KiB
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
function qpushd() { pushd "$@" >/dev/null; }
|
|
function qpopd() { popd >/dev/null; }
|
|
function unix_path() { echo "$*" | sed 's,^\([A-Za-z]\):,/\1,;s,\\,/,g'; }
|
|
|
|
qpushd "$(dirname $(unix_path "$0"))"
|
|
. functions
|
|
. custom.sh
|
|
|
|
register_env_var ACLOCAL_FLAGS " "
|
|
register_env_var AUTOTOOLS_CPPFLAGS " "
|
|
register_env_var AUTOTOOLS_LDFLAGS " "
|
|
register_env_var GNOME_CPPFLAGS " "
|
|
register_env_var GNOME_LDFLAGS " "
|
|
register_env_var GUILE_LOAD_PATH ";"
|
|
register_env_var GUILE_CPPFLAGS " "
|
|
register_env_var GUILE_LDFLAGS " "
|
|
register_env_var INTLTOOL_PERL " "
|
|
register_env_var PATH ":"
|
|
register_env_var PKG_CONFIG ":" ""
|
|
register_env_var PKG_CONFIG_PATH ":"
|
|
register_env_var READLINE_CPPFLAGS " "
|
|
register_env_var READLINE_LDFLAGS " "
|
|
register_env_var REGEX_CPPFLAGS " "
|
|
register_env_var REGEX_LDFLAGS " "
|
|
|
|
function prepare() {
|
|
# Necessary so that intltoolize doesn't come up with some
|
|
# foolish AC_CONFIG_AUX_DIR; bug#362006
|
|
# We cannot simply create install-sh in the repository, because
|
|
# this will confuse other parts of the tools
|
|
_REPOS_UDIR=`unix_path $REPOS_DIR`
|
|
level0=.
|
|
level1=$(basename ${_REPOS_UDIR})
|
|
level2=$(basename $(dirname ${_REPOS_UDIR}))"/"$level1
|
|
for mydir in $level0 $level1 $level2; do
|
|
if [ -f $mydir/make-gnucash-patch.in ]; then
|
|
die "Do not save install.sh in the repository or one its parent directories"
|
|
fi
|
|
done
|
|
# # Remove old empty install-sh files
|
|
# if [ -f ${_REPOS_UDIR}/install-sh -a "$(cat ${_REPOS_UDIR}/install-sh &>/dev/null | wc -l)" -eq 0 ]; then
|
|
# rm -f ${_REPOS_UDIR}/install-sh
|
|
# fi
|
|
# Partially remove RegEx-GNU if installed
|
|
_REGEX_UDIR=`unix_path $REGEX_DIR`
|
|
if [ -f ${_REGEX_UDIR}/contrib/regex-0.12-GnuWin32.README ]; then
|
|
qpushd ${_REGEX_UDIR}
|
|
rm -f bin/*regex*.dll
|
|
rm -f contrib/regex*
|
|
rm -f lib/*regex*
|
|
qpopd
|
|
fi
|
|
|
|
DOWNLOAD_UDIR=`unix_path $DOWNLOAD_DIR`
|
|
TMP_UDIR=`unix_path $TMP_DIR`
|
|
mkdir -p $TMP_UDIR
|
|
mkdir -p $DOWNLOAD_UDIR
|
|
|
|
if [ "$DISABLE_OPTIMIZATIONS" = "yes" ]; then
|
|
export CFLAGS="$CFLAGS -O0"
|
|
fi
|
|
}
|
|
|
|
function inst_wget() {
|
|
setup Wget
|
|
_WGET_UDIR=`unix_path $WGET_DIR`
|
|
add_to_env $_WGET_UDIR/bin PATH
|
|
if quiet $_WGET_UDIR/wget --version || quiet wget --version
|
|
then
|
|
echo "already installed. skipping."
|
|
else
|
|
mkdir -p $_WGET_UDIR/bin
|
|
tar -xjpf $DOWNLOAD_UDIR/wget*.tar.bz2 -C $_WGET_UDIR
|
|
cp $_WGET_UDIR/*/*/wget.exe $_WGET_UDIR/bin
|
|
fi
|
|
quiet wget --version || die "wget unavailable"
|
|
}
|
|
|
|
function inst_dtk() {
|
|
setup MSYS DTK
|
|
_MSYS_UDIR=`unix_path $MSYS_DIR`
|
|
if quiet ${_MSYS_UDIR}/bin/perl --help
|
|
then
|
|
echo "msys dtk already installed. skipping."
|
|
else
|
|
smart_wget $DTK_URL $DOWNLOAD_DIR
|
|
echo "!!! When asked for an installation path, specify $MSYS_DIR !!!"
|
|
$LAST_FILE
|
|
for file in \
|
|
/bin/{aclocal*,auto*,ifnames,libtool*,guile*} \
|
|
/share/{aclocal,aclocal-1.7,autoconf,autogen,automake-1.7,guile,libtool}
|
|
do
|
|
[ "${file##*.bak}" ] || continue
|
|
_dst_file=$file.bak
|
|
while [ -e $_dst_file ]; do _dst_file=$_dst_file.bak; done
|
|
mv $file $_dst_file
|
|
done
|
|
fi
|
|
quiet ${_MSYS_UDIR}/bin/perl --help || die "msys dtk not installed correctly"
|
|
}
|
|
|
|
function inst_mingw() {
|
|
setup MinGW
|
|
if quiet ${CC} --version
|
|
then
|
|
echo "mingw already installed. skipping."
|
|
else
|
|
_MINGW_WFSDIR=`win_fs_path $MINGW_DIR`
|
|
smart_wget $MINGW_URL $DOWNLOAD_DIR
|
|
echo "!!! Install g++ !!!"
|
|
echo "!!! When asked for an installation path, specify $MINGW_DIR !!!"
|
|
$LAST_FILE
|
|
(echo "y"; echo "y"; echo "$_MINGW_WFSDIR") | sh pi.sh
|
|
fi
|
|
quiet ${CC} --version && quiet ${LD} --help || die "mingw not installed correctly"
|
|
}
|
|
|
|
function inst_unzip() {
|
|
setup Unzip
|
|
_UNZIP_UDIR=`unix_path $UNZIP_DIR`
|
|
add_to_env $_UNZIP_UDIR/bin PATH
|
|
if quiet $_UNZIP_UDIR/bin/unzip --help || quiet unzip --help
|
|
then
|
|
echo "unzip already installed. skipping."
|
|
else
|
|
smart_wget $UNZIP_URL $DOWNLOAD_DIR
|
|
echo "!!! When asked for an installation path, specify $UNZIP_DIR !!!"
|
|
$LAST_FILE
|
|
fi
|
|
quiet unzip --help || die "unzip unavailable"
|
|
}
|
|
|
|
function inst_regex() {
|
|
setup RegEx
|
|
_REGEX_UDIR=`unix_path $REGEX_DIR`
|
|
add_to_env -lregex REGEX_LDFLAGS
|
|
add_to_env -I$_REGEX_UDIR/include REGEX_CPPFLAGS
|
|
add_to_env -L$_REGEX_UDIR/lib REGEX_LDFLAGS
|
|
add_to_env $_REGEX_UDIR/bin PATH
|
|
if quiet ${LD} $REGEX_LDFLAGS -lregex -o $TMP_UDIR/ofile
|
|
then
|
|
echo "regex already installed. skipping."
|
|
else
|
|
mkdir -p $_REGEX_UDIR
|
|
wget_unpacked $REGEX_URL $DOWNLOAD_DIR $REGEX_DIR
|
|
wget_unpacked $REGEX_DEV_URL $DOWNLOAD_DIR $REGEX_DIR
|
|
fi
|
|
quiet ${LD} $REGEX_LDFLAGS -o $TMP_UDIR/ofile || die "regex not installed correctly"
|
|
}
|
|
|
|
function inst_readline() {
|
|
setup Readline
|
|
_READLINE_UDIR=`unix_path $READLINE_DIR`
|
|
add_to_env -I$_READLINE_UDIR/include READLINE_CPPFLAGS
|
|
add_to_env -L$_READLINE_UDIR/lib READLINE_LDFLAGS
|
|
add_to_env $_READLINE_UDIR/bin PATH
|
|
if quiet ${LD} $READLINE_LDFLAGS -lreadline -o $TMP_UDIR/ofile
|
|
then
|
|
echo "readline already installed. skipping."
|
|
else
|
|
mkdir -p $_READLINE_UDIR
|
|
wget_unpacked $READLINE_BIN_URL $DOWNLOAD_DIR $READLINE_DIR
|
|
wget_unpacked $READLINE_LIB_URL $DOWNLOAD_DIR $READLINE_DIR
|
|
fi
|
|
quiet ${LD} $READLINE_LDFLAGS -lreadline -o $TMP_UDIR/ofile || die "readline not installed correctly"
|
|
}
|
|
|
|
function inst_active_perl() {
|
|
setup ActivePerl \(intltool\)
|
|
_ACTIVE_PERL_WFSDIR=`win_fs_path $ACTIVE_PERL_DIR`
|
|
add_to_env $_ACTIVE_PERL_WFSDIR/bin/perl INTLTOOL_PERL
|
|
if quiet $INTLTOOL_PERL --help
|
|
then
|
|
echo "ActivePerl already installed. skipping."
|
|
else
|
|
wget_unpacked $ACTIVE_PERL_URL $DOWNLOAD_DIR $ACTIVE_PERL_DIR
|
|
# this is the first of several bad hacks
|
|
# it would be much more natural to have a sort of -p flag like for `patch'
|
|
# please deuglify me
|
|
qpushd $ACTIVE_PERL_DIR
|
|
cp -r ActivePerl/Perl/* .
|
|
rm -rf ActivePerl
|
|
qpopd
|
|
fi
|
|
quiet $INTLTOOL_PERL --help || die "ActivePerl not installed correctly"
|
|
}
|
|
|
|
function inst_autotools() {
|
|
setup Autotools
|
|
_AUTOTOOLS_UDIR=`unix_path $AUTOTOOLS_DIR`
|
|
add_to_env $_AUTOTOOLS_UDIR/bin PATH
|
|
if quiet autoconf --help && quiet automake --help
|
|
then
|
|
echo "autoconf/automake already installed. skipping."
|
|
else
|
|
wget_unpacked $AUTOCONF_URL $DOWNLOAD_DIR $TMP_DIR
|
|
wget_unpacked $AUTOMAKE_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/autoconf-*
|
|
qpushd $TMP_UDIR/autoconf-*
|
|
echo "building autoconf..."
|
|
./configure --prefix=$_AUTOTOOLS_UDIR
|
|
make
|
|
make install
|
|
qpopd
|
|
assert_one_dir $TMP_UDIR/automake-*
|
|
qpushd $TMP_UDIR/automake-*
|
|
echo "building automake..."
|
|
./configure --prefix=$_AUTOTOOLS_UDIR
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
if quiet ${LIBTOOLIZE} --help
|
|
then
|
|
echo "libtool/libtoolize already installed. skipping."
|
|
else
|
|
wget_unpacked $LIBTOOL_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/libtool-*
|
|
qpushd $TMP_UDIR/libtool-*
|
|
echo "building libtool..."
|
|
./configure ${HOST_XCOMPILE} --prefix=$_AUTOTOOLS_UDIR --disable-static
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
add_to_env -I$_AUTOTOOLS_UDIR/include AUTOTOOLS_CPPFLAGS
|
|
add_to_env -L$_AUTOTOOLS_UDIR/lib AUTOTOOLS_LDFLAGS
|
|
add_to_env "-I $_AUTOTOOLS_UDIR/share/aclocal" ACLOCAL_FLAGS
|
|
quiet autoconf --help &&
|
|
quiet automake --help &&
|
|
quiet ${LIBTOOLIZE} --help || die "autotools not installed correctly"
|
|
}
|
|
|
|
function inst_guile() {
|
|
setup Guile
|
|
_GUILE_WFSDIR=`win_fs_path $GUILE_DIR`
|
|
_GUILE_UDIR=`unix_path $GUILE_DIR`
|
|
add_to_env -I$_GUILE_UDIR/include GUILE_CPPFLAGS
|
|
add_to_env -L$_GUILE_UDIR/lib GUILE_LDFLAGS
|
|
add_to_env $_GUILE_UDIR/bin PATH
|
|
if quiet guile -c '(use-modules (srfi srfi-39))' &&
|
|
quiet guile -c "(use-modules (ice-9 slib)) (require 'printf)"
|
|
then
|
|
echo "guile and slib already installed. skipping."
|
|
else
|
|
smart_wget $GUILE_URL $DOWNLOAD_DIR
|
|
_GUILE_BALL=$LAST_FILE
|
|
smart_wget $SLIB_URL $DOWNLOAD_DIR
|
|
_SLIB_BALL=$LAST_FILE
|
|
tar -xzpf $_GUILE_BALL -C $TMP_UDIR
|
|
assert_one_dir $TMP_UDIR/guile-*
|
|
qpushd $TMP_UDIR/guile-*
|
|
qpushd ice-9
|
|
cp boot-9.scm boot-9.scm.bak
|
|
cat boot-9.scm.bak | sed '/SIGBUS/d' > boot-9.scm
|
|
qpopd
|
|
qpushd libguile
|
|
cp fports.c fports.c.bak
|
|
cat fports.c.bak | sed 's,#elif defined (FIONREAD),#elif 0,' > fports.c
|
|
cp load.c load.c.bak
|
|
cat load.c.bak | sed '/scan !=/s,:,;,' > load.c
|
|
qpopd
|
|
qpushd libguile-ltdl
|
|
cp raw-ltdl.c raw-ltdl.c.bak
|
|
cat raw-ltdl.c.bak | sed 's,\(SCMLTSTATIC\) LT_GLOBAL_DATA,\1,' > raw-ltdl.c
|
|
touch upstream/ltdl.c.diff
|
|
qpopd
|
|
./configure ${HOST_XCOMPILE} \
|
|
--disable-static \
|
|
--disable-elisp \
|
|
--disable-networking \
|
|
--disable-dependency-tracking \
|
|
--disable-libtool-lock \
|
|
--disable-linuxthreads \
|
|
-C --prefix=$_GUILE_WFSDIR \
|
|
ac_cv_func_regcomp_rx=yes \
|
|
CPPFLAGS="${READLINE_CPPFLAGS} ${REGEX_CPPFLAGS}" \
|
|
LDFLAGS="-lwsock32 ${READLINE_LDFLAGS} ${REGEX_LDFLAGS}"
|
|
cp config.status config.status.bak
|
|
cat config.status.bak | sed 's# fileblocks[$.A-Za-z]*,#,#' > config.status
|
|
./config.status
|
|
qpushd guile-config
|
|
cp Makefile Makefile.bak
|
|
cat Makefile.bak | sed '/-bindir-/s,:,^,g' > Makefile
|
|
qpopd
|
|
make LDFLAGS="-lwsock32 ${READLINE_LDFLAGS} ${REGEX_LDFLAGS} -no-undefined -avoid-version"
|
|
make install
|
|
qpopd
|
|
_SLIB_DIR=$_GUILE_UDIR/share/guile/1.*
|
|
unzip $_SLIB_BALL -d $_SLIB_DIR
|
|
qpushd $_SLIB_DIR/slib
|
|
cp guile.init guile.init.bak
|
|
sed '/lambda.*'"'"'unix/a\
|
|
(define software-type (lambda () '"'"'ms-dos))' guile.init.bak > guile.init
|
|
qpopd
|
|
fi
|
|
if test x$cross_compile = xyes ; then
|
|
qpushd $_GUILE_UDIR/bin
|
|
# The cross-compiling guile expects these program names
|
|
# for the build-time guile
|
|
ln -sf /usr/bin/guile-config mingw32-guile-config
|
|
ln -sf /usr/bin/guile mingw32-build-guile
|
|
qpopd
|
|
else
|
|
add_to_env "-I $_GUILE_UDIR/share/aclocal" ACLOCAL_FLAGS
|
|
fi
|
|
guile -c '(use-modules (srfi srfi-39))' &&
|
|
guile -c "(use-modules (ice-9 slib)) (require 'printf)" || die "guile not installed correctly"
|
|
}
|
|
|
|
function inst_openssl() {
|
|
setup OpenSSL
|
|
_OPENSSL_UDIR=`unix_path $OPENSSL_DIR`
|
|
add_to_env $_OPENSSL_UDIR/bin PATH
|
|
# Make sure the files of Win32OpenSSL-0_9_8d are really gone!
|
|
if test -f $_OPENSSL_UDIR/unins000.exe ; then
|
|
die "Wrong version of OpenSSL installed! Run $_OPENSSL_UDIR/unins000.exe and start install.sh again."
|
|
fi
|
|
if [ -f $WINDIR\\system32\\libssl32.dll -o -f $WINDIR\\system32\\libeay32.dll ] ; then
|
|
die "You have uninstalled the Win32OpenSSL-0_9_8d version of OpenSSL, but its DLLs libssl32.dll, libeay32.dll, and ssleay32.dll are still existing in $WINDIR\\system32. You have to delete (or rename) them manually. However, if you know these DLLs are needed by some other package, please contact the gnucash authors so that we can adapt this script."
|
|
fi
|
|
|
|
if test -f ${_OPENSSL_UDIR}/lib/libssl.dll.a ; then
|
|
echo "openssl already installed. skipping."
|
|
else
|
|
mkdir -p ${_OPENSSL_UDIR}
|
|
wget_unpacked $OPENSSL_BIN_URL $DOWNLOAD_DIR $OPENSSL_DIR
|
|
wget_unpacked $OPENSSL_LIB_URL $DOWNLOAD_DIR $OPENSSL_DIR
|
|
fi
|
|
test -f ${_OPENSSL_UDIR}/lib/libssl.dll.a || die "openssl not installed correctly"
|
|
}
|
|
|
|
function inst_pexports() {
|
|
setup pexports
|
|
_PEXPORTS_UDIR=`unix_path $PEXPORTS_DIR`
|
|
add_to_env $_PEXPORTS_UDIR/bin PATH
|
|
if quiet which pexports
|
|
then
|
|
echo "pexports already installed. skipping."
|
|
else
|
|
wget_unpacked $PEXPORTS_URL $DOWNLOAD_DIR $PEXPORTS_DIR
|
|
qpushd $PEXPORTS_DIR
|
|
mkdir -p $_PEXPORTS_UDIR/bin
|
|
cp pexports-*/bin/* $_PEXPORTS_UDIR/bin
|
|
if test x$cross_compile = xyes ; then
|
|
cd pexports-*/src
|
|
make
|
|
cp pexports.exe ../../bin/pexports
|
|
fi
|
|
qpopd
|
|
fi
|
|
quiet which pexports || die "pexports unavailable"
|
|
}
|
|
|
|
function inst_exetype() {
|
|
setup exetype
|
|
_EXETYPE_UDIR=`unix_path $EXETYPE_DIR`
|
|
add_to_env $_EXETYPE_UDIR/bin PATH
|
|
if quiet which exetype
|
|
then
|
|
echo "exetype already installed. skipping."
|
|
else
|
|
mkdir -p $_EXETYPE_UDIR/bin
|
|
cp $EXETYPE_SCRIPT $_EXETYPE_UDIR/bin/exetype
|
|
fi
|
|
quiet which exetype || die "exetype unavailable"
|
|
}
|
|
|
|
|
|
function inst_libxml2() {
|
|
setup LibXML2
|
|
_LIBXML2_UDIR=`unix_path $LIBXML2_DIR`
|
|
if quiet ${LD} -L$_LIBXML2_UDIR/lib -lxml2 -o $TMP_UDIR/ofile
|
|
then
|
|
echo "libxml2 already installed. skipping."
|
|
else
|
|
wget_unpacked $LIBXML2_URL $DOWNLOAD_DIR $LIBXML2_DIR
|
|
qpushd $LIBXML2_DIR
|
|
mv libxml2-* mydir
|
|
cp -r mydir/* .
|
|
rm -rf mydir
|
|
pexports bin/libxml2.dll > libxml2.def
|
|
${DLLTOOL} --input-def libxml2.def --output-lib lib/libxml2.a
|
|
rm libxml2.def
|
|
_LIBXML2_VERSION=`echo $LAST_FILE | sed 's#.*libxml2-\(.*\).win32.zip#\1#'`
|
|
mkdir -p lib/pkgconfig
|
|
cat > lib/pkgconfig/libxml-2.0.pc <<EOF
|
|
prefix=/ignore
|
|
exec_prefix=\${prefix}
|
|
libdir=\${exec_prefix}/lib
|
|
includedir=\${prefix}/include
|
|
|
|
Name: libXML
|
|
Version: $_LIBXML2_VERSION
|
|
Description: libXML library version 2.
|
|
Requires:
|
|
Libs: -L\${libdir} -lxml2 -lz
|
|
Cflags: -I\${includedir}
|
|
EOF
|
|
qpopd
|
|
fi
|
|
quiet ${LD} -L$_LIBXML2_UDIR/lib -lxml2 -o $TMP_UDIR/ofile || die "libxml2 not installed correctly"
|
|
}
|
|
|
|
function inst_gnome() {
|
|
setup Gnome platform
|
|
_GNOME_UDIR=`unix_path $GNOME_DIR`
|
|
add_to_env -I$_GNOME_UDIR/include GNOME_CPPFLAGS
|
|
add_to_env -L$_GNOME_UDIR/lib GNOME_LDFLAGS
|
|
add_to_env $_GNOME_UDIR/bin PATH
|
|
add_to_env $_GNOME_UDIR/lib/pkgconfig PKG_CONFIG_PATH
|
|
add_to_env $_GNOME_UDIR/bin/pkg-config-msys.sh PKG_CONFIG
|
|
add_to_env "-I $_GNOME_UDIR/share/aclocal" ACLOCAL_FLAGS
|
|
if quiet gconftool-2 --version &&
|
|
${PKG_CONFIG} --exists gconf-2.0 libgnome-2.0 libgnomeui-2.0 libgnomeprint-2.2 libgnomeprintui-2.2 libgtkhtml-3.8 &&
|
|
quiet intltoolize --version
|
|
then
|
|
echo "gnome packages installed. skipping."
|
|
else
|
|
mkdir -p $_GNOME_UDIR
|
|
wget_unpacked $GETTEXT_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GETTEXT_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBICONV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GLIB_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GLIB_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBJPEG_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBPNG_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $ZLIB_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $PKG_CONFIG_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $CAIRO_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $CAIRO_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $EXPAT_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $FONTCONFIG_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $FONTCONFIG_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $FREETYPE_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $FREETYPE_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $ATK_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $ATK_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $PANGO_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $PANGO_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBART_LGPL_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBART_LGPL_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GTK_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GTK_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $INTLTOOL_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $ORBIT2_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $ORBIT2_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GAIL_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GAIL_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $POPT_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $POPT_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GCONF_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GCONF_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBBONOBO_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBBONOBO_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GNOME_VFS_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GNOME_VFS_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOME_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOME_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMECANVAS_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMECANVAS_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBBONOBOUI_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBBONOBOUI_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEUI_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEUI_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGLADE_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGLADE_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEPRINT_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEPRINT_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEPRINTUI_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $LIBGNOMEPRINTUI_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GTKHTML_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
wget_unpacked $GTKHTML_DEV_URL $DOWNLOAD_DIR $GNOME_DIR
|
|
qpushd $GNOME_DIR
|
|
[ -f bin/zlib1.dll ] || mv zlib1.dll bin
|
|
if [ ! -f lib/libz.dll.a ]; then
|
|
qpushd bin
|
|
${DLLTOOL} -D zlib1.dll -d ../lib/zlib.def -l libz.dll.a
|
|
mv libz.dll.a ../lib
|
|
qpopd
|
|
fi
|
|
if [ ! -f libexec/gconfd-2.console.exe ]; then
|
|
cp libexec/gconfd-2.exe libexec/gconfd-2.console.exe
|
|
exetype libexec/gconfd-2.exe windows
|
|
fi
|
|
# work around a bug in msys bash, adding 0x01 smilies
|
|
cat > bin/pkg-config-msys.sh <<EOF
|
|
#!/bin/sh
|
|
PKG_CONFIG="\$(dirname \$0)/pkg-config"
|
|
if \${PKG_CONFIG} "\$@" > /dev/null 2>&1 ; then
|
|
res=true
|
|
else
|
|
res=false
|
|
fi
|
|
\${PKG_CONFIG} "\$@" | tr -d \\\\r && \$res
|
|
EOF
|
|
qpopd
|
|
fi
|
|
if test x$cross_compile = xyes ; then
|
|
qpushd $_GNOME_UDIR/lib/pkgconfig
|
|
perl -pi.bak -e"s!^prefix=.*\$!prefix=$GNOME_DIR!" *.pc
|
|
#perl -pi.bak -e's!^Libs: !Libs: -L\${prefix}/bin !' *.pc
|
|
qpopd
|
|
# Latest gnome-dev packages don't ship with *.la files
|
|
# anymore. What do we do...?
|
|
#qpushd $_GNOME_UDIR/bin
|
|
# for A in *-0.dll; do ln -sf $A `echo $A|sed 's/\(.*\)-0.dll/\1.dll/'`; done
|
|
#qpopd
|
|
fi
|
|
quiet gconftool-2 --version &&
|
|
${PKG_CONFIG} --exists gconf-2.0 libgnome-2.0 libgnomeui-2.0 libgnomeprint-2.2 libgnomeprintui-2.2 libgtkhtml-3.8 &&
|
|
quiet intltoolize --version || die "gnome not installed correctly"
|
|
}
|
|
|
|
function inst_swig() {
|
|
setup Swig
|
|
_SWIG_UDIR=`unix_path $SWIG_DIR`
|
|
add_to_env $_SWIG_UDIR PATH
|
|
if quiet swig -version
|
|
then
|
|
echo "swig already installed. skipping."
|
|
else
|
|
wget_unpacked $SWIG_URL $DOWNLOAD_DIR $SWIG_DIR
|
|
qpushd $SWIG_DIR
|
|
mv swigwin-* mydir
|
|
mv mydir/* .
|
|
mv mydir/.[A-Za-z]* . # hidden files
|
|
rmdir mydir
|
|
rm INSTALL # bites with /bin/install
|
|
qpopd
|
|
fi
|
|
quiet swig -version || die "swig unavailable"
|
|
}
|
|
|
|
function inst_libgsf() {
|
|
setup libGSF
|
|
_LIBGSF_UDIR=`unix_path $LIBGSF_DIR`
|
|
add_to_env $_LIBGSF_UDIR/bin PATH
|
|
add_to_env $_LIBGSF_UDIR/lib/pkgconfig PKG_CONFIG_PATH
|
|
if quiet ${PKG_CONFIG} --exists libgsf-1 libgsf-gnome-1
|
|
then
|
|
echo "libgsf already installed. skipping."
|
|
else
|
|
wget_unpacked $LIBGSF_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/libgsf-*
|
|
qpushd $TMP_UDIR/libgsf-*
|
|
./configure ${HOST_XCOMPILE} \
|
|
--prefix=$_LIBGSF_UDIR \
|
|
--disable-static \
|
|
--without-python \
|
|
CPPFLAGS="${GNOME_CPPFLAGS}" \
|
|
LDFLAGS="${GNOME_LDFLAGS}"
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
${PKG_CONFIG} --exists libgsf-1 libgsf-gnome-1 || die "libgsf not installed correctly"
|
|
}
|
|
|
|
function inst_goffice() {
|
|
setup GOffice
|
|
_GOFFICE_UDIR=`unix_path $GOFFICE_DIR`
|
|
add_to_env $_GOFFICE_UDIR/bin PATH
|
|
add_to_env $_GOFFICE_UDIR/lib/pkgconfig PKG_CONFIG_PATH
|
|
if quiet ${PKG_CONFIG} --exists libgoffice-0.3
|
|
then
|
|
echo "goffice already installed. skipping."
|
|
else
|
|
rm -rf $TMP_UDIR/goffice-*
|
|
wget_unpacked $GOFFICE_URL $DOWNLOAD_DIR $TMP_DIR
|
|
mydir=`pwd`
|
|
assert_one_dir $TMP_UDIR/goffice-*
|
|
qpushd $TMP_UDIR/goffice-*
|
|
[ -n "$GOFFICE_PATCH" -a -f "$GOFFICE_PATCH" ] && \
|
|
patch -p1 < $GOFFICE_PATCH
|
|
${LIBTOOLIZE} --force
|
|
aclocal ${ACLOCAL_FLAGS} -I .
|
|
automake
|
|
autoconf
|
|
./configure ${HOST_XCOMPILE} --prefix=$_GOFFICE_UDIR \
|
|
CPPFLAGS="${GNOME_CPPFLAGS}" \
|
|
LDFLAGS="${GNOME_LDFLAGS}"
|
|
[ -f dumpdef.pl ] || cp -p ../libgsf-*/dumpdef.pl .
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
${PKG_CONFIG} --exists libgoffice-0.3 || die "goffice not installed correctly"
|
|
}
|
|
|
|
function inst_glade() {
|
|
setup Glade
|
|
_GLADE_UDIR=`unix_path $GLADE_DIR`
|
|
_GLADE_WFSDIR=`win_fs_path $GLADE_DIR`
|
|
add_to_env $_GLADE_UDIR/bin PATH
|
|
if quiet glade-3 --version
|
|
then
|
|
echo "glade already installed. skipping."
|
|
else
|
|
wget_unpacked $GLADE_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/glade3-*
|
|
qpushd $TMP_UDIR/glade3-*
|
|
./configure ${HOST_XCOMPILE} --prefix=$_GLADE_WFSDIR
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
quiet glade-3 --version || die "glade not installed correctly"
|
|
}
|
|
|
|
function inst_inno() {
|
|
setup Inno Setup Compiler
|
|
_INNO_UDIR=`unix_path $INNO_DIR`
|
|
add_to_env $_INNO_UDIR PATH
|
|
if quiet which iscc
|
|
then
|
|
echo "Inno Setup Compiler already installed. Skipping."
|
|
else
|
|
smart_wget $INNO_URL $DOWNLOAD_DIR
|
|
echo "!!! When asked for the installation path, specify $INNO_DIR !!!"
|
|
echo "!!! Also, you can deselect all optional components."
|
|
$LAST_FILE
|
|
fi
|
|
quiet which iscc || die "iscc (Inno Setup Compiler) not installed correctly"
|
|
}
|
|
|
|
function inst_opensp() {
|
|
setup Opensp
|
|
_OPENSP_UDIR=`unix_path ${OPENSP_DIR}`
|
|
add_to_env ${_OPENSP_UDIR}/bin PATH
|
|
if test -f ${_OPENSP_UDIR}/bin/libosp-5.dll
|
|
then
|
|
echo "Opensp already installed. Skipping."
|
|
else
|
|
wget_unpacked $OPENSP_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/OpenSP-*
|
|
qpushd $TMP_UDIR/OpenSP-*
|
|
[ -n "$OPENSP_PATCH" -a -f "$OPENSP_PATCH" ] && \
|
|
patch -p0 < $OPENSP_PATCH
|
|
automake lib/Makefile
|
|
./configure \
|
|
--prefix=${_OPENSP_UDIR} \
|
|
--disable-doc-build --disable-static
|
|
# On many windows machines, none of the programs will
|
|
# build, but we only need the library, so ignore the rest.
|
|
make all-am
|
|
make -C lib
|
|
make -i
|
|
make -i install
|
|
qpopd
|
|
fi
|
|
test -f ${_OPENSP_UDIR}/bin/libosp-5.dll || die "Opensp not installed correctly"
|
|
}
|
|
|
|
function inst_libofx() {
|
|
setup Libofx
|
|
_LIBOFX_UDIR=`unix_path ${LIBOFX_DIR}`
|
|
add_to_env ${_LIBOFX_UDIR}/bin PATH
|
|
add_to_env ${_LIBOFX_UDIR}/lib/pkgconfig PKG_CONFIG_PATH
|
|
if quiet ${PKG_CONFIG} --exists libofx
|
|
then
|
|
echo "Libofx already installed. Skipping."
|
|
else
|
|
wget_unpacked $LIBOFX_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/libofx-*
|
|
qpushd $TMP_UDIR/libofx-*
|
|
[ -n "$LIBOFX_PATCH" -a -f "$LIBOFX_PATCH" ] && \
|
|
patch -p1 < $LIBOFX_PATCH
|
|
./configure \
|
|
--prefix=${_LIBOFX_UDIR} \
|
|
--with-opensp-includes=${_OPENSP_UDIR}/include/OpenSP \
|
|
--with-opensp-libs=${_OPENSP_UDIR}/lib \
|
|
CPPFLAGS="-DOS_WIN32" \
|
|
--disable-static
|
|
make LDFLAGS="${LDFLAGS} -no-undefined"
|
|
make install
|
|
qpopd
|
|
fi
|
|
quiet ${PKG_CONFIG} --exists libofx || die "Libofx not installed correctly"
|
|
}
|
|
|
|
function inst_gwenhywfar() {
|
|
setup Gwenhywfar
|
|
_GWENHYWFAR_UDIR=`unix_path ${GWENHYWFAR_DIR}`
|
|
add_to_env ${_GWENHYWFAR_UDIR}/bin PATH
|
|
add_to_env ${_GWENHYWFAR_UDIR}/lib/pkgconfig PKG_CONFIG_PATH
|
|
add_to_env "-I $_GWENHYWFAR_UDIR/share/aclocal" ACLOCAL_FLAGS
|
|
if quiet ${PKG_CONFIG} --exists gwenhywfar
|
|
then
|
|
echo "Gwenhywfar already installed. Skipping."
|
|
else
|
|
wget_unpacked $GWENHYWFAR_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/gwenhywfar-*
|
|
qpushd $TMP_UDIR/gwenhywfar-*
|
|
./configure \
|
|
--with-openssl-includes=$_OPENSSL_UDIR/include \
|
|
ssl_libraries="-L${_OPENSSL_UDIR}/lib" \
|
|
ssl_lib="-lcrypto -lssl" \
|
|
--prefix=$_GWENHYWFAR_UDIR \
|
|
CPPFLAGS="${REGEX_CPPFLAGS}" \
|
|
LDFLAGS="${REGEX_LDFLAGS}"
|
|
make
|
|
make check
|
|
make install
|
|
qpopd
|
|
fi
|
|
${PKG_CONFIG} --exists gwenhywfar || die "Gwenhywfar not installed correctly"
|
|
}
|
|
|
|
function inst_aqbanking() {
|
|
setup AqBanking
|
|
_AQBANKING_UDIR=`unix_path ${AQBANKING_DIR}`
|
|
add_to_env ${_AQBANKING_UDIR}/bin PATH
|
|
add_to_env ${_AQBANKING_UDIR}/lib/pkgconfig PKG_CONFIG_PATH
|
|
add_to_env "-I $_AQBANKING_UDIR/share/aclocal" ACLOCAL_FLAGS
|
|
if quiet ${PKG_CONFIG} --exists aqbanking
|
|
then
|
|
echo "AqBanking already installed. Skipping."
|
|
else
|
|
wget_unpacked $AQBANKING_URL $DOWNLOAD_DIR $TMP_DIR
|
|
assert_one_dir $TMP_UDIR/aqbanking-*
|
|
qpushd $TMP_UDIR/aqbanking-*
|
|
./configure \
|
|
--with-gwen-dir=${_GWENHYWFAR_UDIR} \
|
|
--with-frontends="cbanking" \
|
|
--with-backends="aqdtaus aqhbci aqofxconnect" \
|
|
CPPFLAGS="-I${_LIBOFX_UDIR}/include" \
|
|
LDFLAGS="-L${_LIBOFX_UDIR}/lib" \
|
|
--prefix=${_AQBANKING_UDIR}
|
|
make
|
|
make install
|
|
qpopd
|
|
fi
|
|
${PKG_CONFIG} --exists aqbanking || die "AqBanking not installed correctly"
|
|
}
|
|
|
|
function inst_svn() {
|
|
setup Subversion
|
|
_SVN_UDIR=`unix_path $SVN_DIR`
|
|
export PATH="$_SVN_UDIR/bin:$PATH"
|
|
if quiet svn --version
|
|
then
|
|
echo "subversion already installed. skipping."
|
|
else
|
|
smart_wget $SVN_URL $DOWNLOAD_DIR
|
|
echo "!!! When asked for an installation path, specify $SVN_DIR !!!"
|
|
$LAST_FILE
|
|
fi
|
|
}
|
|
|
|
function svn_up() {
|
|
mkdir -p $_REPOS_UDIR
|
|
qpushd $REPOS_DIR
|
|
# latest revision that should compile, use HEAD or vwxyz
|
|
SVN_REV="HEAD"
|
|
if [ -x .svn ]; then
|
|
setup "svn update in ${REPOS_DIR}"
|
|
svn up -r ${SVN_REV}
|
|
else
|
|
setup svn co
|
|
svn co -r ${SVN_REV} $REPOS_URL .
|
|
fi
|
|
qpopd
|
|
}
|
|
|
|
function inst_gnucash() {
|
|
setup GnuCash
|
|
_INSTALL_WFSDIR=`win_fs_path $INSTALL_DIR`
|
|
_INSTALL_UDIR=`unix_path $INSTALL_DIR`
|
|
_BUILD_UDIR=`unix_path $BUILD_DIR`
|
|
_REL_REPOS_UDIR=`unix_path $REL_REPOS_DIR`
|
|
mkdir -p $_BUILD_UDIR
|
|
add_to_env $_INSTALL_UDIR/bin PATH
|
|
|
|
# When aqbanking is enabled, uncomment this:
|
|
AQBANKING_OPTIONS="--enable-hbci --with-aqbanking-dir=${_AQBANKING_UDIR}"
|
|
AQBANKING_UPATH="${_OPENSSL_UDIR}/bin:${_GWENHYWFAR_UDIR}/bin:${_AQBANKING_UDIR}/bin"
|
|
AQBANKING_PATH="${OPENSSL_DIR}\\bin;${GWENHYWFAR_DIR}\\bin;${AQBANKING_DIR}\\bin"
|
|
LIBOFX_OPTIONS="--enable-ofx --with-ofx-prefix=${_LIBOFX_UDIR}"
|
|
|
|
qpushd $REPOS_DIR
|
|
if test "x$cross_compile" = xyes ; then
|
|
# Set these variables manually because of cross-compiling
|
|
export GUILE_LIBS="${GUILE_LDFLAGS} -lguile -lguile-ltdl"
|
|
export GUILE_INCS="${GUILE_CPPFLAGS}"
|
|
export BUILD_GUILE=yes
|
|
export name_build_guile=/usr/bin/guile-config
|
|
fi
|
|
./autogen.sh
|
|
# Windows DLLs don't need relinking
|
|
grep -v "need_relink=yes" ltmain.sh > ltmain.sh.new ; mv ltmain.sh.new ltmain.sh
|
|
qpopd
|
|
|
|
qpushd $BUILD_DIR
|
|
$_REL_REPOS_UDIR/configure ${HOST_XCOMPILE} ${TARGET_XCOMPILE} \
|
|
--prefix=$_INSTALL_WFSDIR \
|
|
--enable-debug \
|
|
--enable-schemas-install=no \
|
|
${LIBOFX_OPTIONS} \
|
|
${AQBANKING_OPTIONS} \
|
|
--enable-binreloc \
|
|
CPPFLAGS="${AUTOTOOLS_CPPFLAGS} ${REGEX_CPPFLAGS} ${GNOME_CPPFLAGS} ${GUILE_CPPFLAGS} -D_WIN32" \
|
|
LDFLAGS="${AUTOTOOLS_LDFLAGS} ${REGEX_LDFLAGS} ${GNOME_LDFLAGS} ${GUILE_LDFLAGS}" \
|
|
PKG_CONFIG_PATH="${PKG_CONFIG_PATH}"
|
|
|
|
# Windows DLLs don't need relinking
|
|
grep -v "need_relink=yes" libtool > libtool.new ; mv libtool.new libtool
|
|
|
|
make
|
|
|
|
# Try to fix the paths in the "gnucash" script
|
|
qpushd src/bin
|
|
rm gnucash
|
|
make PATH_SEPARATOR=";" \
|
|
bindir="${_INSTALL_UDIR}/bin:${_INSTALL_UDIR}/lib:${_INSTALL_UDIR}/lib/gnucash:${_GOFFICE_UDIR}/bin:${_LIBGSF_UDIR}/bin:${_GNOME_UDIR}/bin:${_LIBXML2_UDIR}/bin:${_GUILE_UDIR}/bin:${_REGEX_UDIR}/bin:${_AUTOTOOLS_UDIR}/bin:${AQBANKING_UPATH}" \
|
|
gnucash
|
|
qpopd
|
|
|
|
make install
|
|
qpopd
|
|
|
|
qpushd $_INSTALL_UDIR/lib/gnucash
|
|
# Move modules that are compiled without -module to lib/gnucash
|
|
mv ../bin/*.dll .
|
|
|
|
# In the installed .la files, remove the dependency_libs line and
|
|
# correct the 'dlname'. We do not use these files to dlopen the
|
|
# modules, so actually this is unneeded.
|
|
for A in *.la; do
|
|
sed '/dependency_libs/d;s#../bin/##' $A > tmp ; mv tmp $A
|
|
done
|
|
qpopd
|
|
|
|
qpushd $_INSTALL_UDIR/etc/gconf/schemas
|
|
for file in *.schemas; do
|
|
gconftool-2 \
|
|
--config-source=xml:merged:${_INSTALL_WFSDIR}/etc/gconf/gconf.xml.defaults \
|
|
--install-schema-file $file
|
|
done
|
|
gconftool-2 --shutdown
|
|
qpopd
|
|
|
|
# Create a startup script that works without the msys shell
|
|
qpushd $_INSTALL_UDIR/bin
|
|
echo "set PATH=${INSTALL_DIR}\\bin;${INSTALL_DIR}\\lib;${INSTALL_DIR}\\lib\\gnucash;${GOFFICE_DIR}\\bin;${LIBGSF_DIR}\\bin;${GNOME_DIR}\\bin;${LIBXML2_DIR}\\bin;${GUILE_DIR}\\bin;${REGEX_DIR}\\bin;${AUTOTOOLS_DIR}\\bin;${AQBANKING_PATH};%PATH%" > gnucash.bat
|
|
echo "set GUILE_WARN_DEPRECATED=no" >> gnucash.bat
|
|
echo "set GNC_MODULE_PATH=${INSTALL_DIR}\\lib\\gnucash" >> gnucash.bat
|
|
echo "set GUILE_LOAD_PATH=${INSTALL_DIR}\\share\\gnucash\\guile-modules;${INSTALL_DIR}\\share\\gnucash\\scm;%GUILE_LOAD_PATH%" >> gnucash.bat
|
|
echo "set LTDL_LIBRARY_PATH=${INSTALL_DIR}\\lib" >> gnucash.bat
|
|
echo "start gnucash-bin" >> gnucash.bat
|
|
qpopd
|
|
}
|
|
|
|
function finish() {
|
|
setup Finish...
|
|
_NEW=x
|
|
for _ENV in $ENV_VARS; do
|
|
_ADDS=`eval echo '"\$'"${_ENV}"'_ADDS"'`
|
|
if [ "$_ADDS" ]; then
|
|
if [ "$_NEW" ]; then
|
|
echo
|
|
echo "Environment variables changed, please do the following"
|
|
echo
|
|
[ -d /etc/profile.d ] || echo "mkdir -p /etc/profile.d"
|
|
_NEW=
|
|
fi
|
|
_VAL=`eval echo '"$'"${_ENV}_BASE"'"'`
|
|
if [ "$_VAL" ]; then
|
|
_CHANGE="export ${_ENV}=\"${_ADDS}"'$'"${_ENV}\""
|
|
else
|
|
_CHANGE="export ${_ENV}=\"${_ADDS}\""
|
|
fi
|
|
echo $_CHANGE
|
|
echo echo "'${_CHANGE}' >> /etc/profile.d/installer.sh"
|
|
fi
|
|
done
|
|
if test "x$cross_compile" = "xyes" ; then
|
|
echo "You might want to create a binary tarball now as follows:"
|
|
qpushd $GLOBAL_DIR
|
|
echo tar -czf $HOME/gnucash-fullbin.tar.gz --anchored \
|
|
--exclude='*.a' --exclude='*.o' --exclude='*.h' \
|
|
--exclude='*.info' --exclude='*.html' \
|
|
--exclude='*include/*' --exclude='*gtk-doc*' \
|
|
--exclude='bin*' \
|
|
--exclude='mingw32/*' --exclude='*bin/mingw32-*' \
|
|
--exclude='gnucash-trunk*' \
|
|
*
|
|
qpopd
|
|
fi
|
|
}
|
|
|
|
prepare
|
|
for step in "${steps[@]}" ; do
|
|
eval $step
|
|
done
|
|
finish
|
|
qpopd
|
|
|
|
|
|
### Local Variables: ***
|
|
### sh-basic-offset: 4 ***
|
|
### tab-width: 8 ***
|
|
### End: ***
|