#!/bin/sh MAKE=make UIM_REPOSITORY="http://anonsvn.freedesktop.org/svn/uim" SSCM_REPOSITORY="${UIM_REPOSITORY}/sigscheme-trunk" LIBGCROOTS_REPOSITORY="${UIM_REPOSITORY}/libgcroots-trunk" TAGS_REPOSITORY="${UIM_REPOSITORY}/tags" #SSCM_URL="${SSCM_REPOSITORY}" SSCM_URL="${TAGS_REPOSITORY}/sigscheme-0.7.3" #LIBGCROOTS_URL="${LIBGCROOTS_REPOSITORY}" LIBGCROOTS_URL="${TAGS_REPOSITORY}/libgcroots-0.1.4" RELEASE_SUFFIX="-beta" CONF_COMMON="--enable-maintainer-mode --disable-warnings-into-error" CONF_NONE="$CONF_COMMON --disable-debug --disable-fep --disable-emacs --disable-gnome-applet --disable-kde-applet --disable-pref --disable-dict --without-anthy --without-canna --without-mana --without-prime --without-m17nlib --without-scim --without-gtk2 --without-gnome2 --without-qt --without-qt-immodule --disable-compat-scm --without-eb --without-libedit" CONF_DEFAULT="$CONF_COMMON" # --without-scim since it is broken CONF_FULL="$CONF_COMMON --enable-debug --enable-fep --enable-emacs --enable-scim --enable-gnome-applet --enable-kde-applet --enable-pref --enable-dict --with-anthy --with-canna --with-mana --with-prime --with-m17nlib --without-scim --with-gtk2 --with-gnome2 --with-qt --with-qt-immodule --enable-compat-scm --with-eb --with-libedit" svn export $SSCM_URL sigscheme svn export $LIBGCROOTS_URL sigscheme/libgcroots (cd sigscheme/libgcroots && ./autogen.sh) \ && (cd sigscheme && ./autogen.sh) \ && ./autogen.sh \ || { echo 'autogen failed.' && exit 1; } if test -n "$RELEASE_SUFFIX"; then ed Makefile.in <