#!/bin/sh
set -e

FLAVOR=$1
PACKAGE=gettext

ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
files="po-mode.el po-compat.el"
flags="-batch -no-site-file -l path.el -f batch-byte-compile"

if [ ${FLAVOR} != emacs ]; then
  echo install/${PACKAGE}: Byte-compiling for ${FLAVOR}

  install -m 755 -d ${ELCDIR}
  cd ${ELCDIR}
  for f in ${files}; do
    ln -sf ../../../emacs/site-lisp/${PACKAGE}/${f} .
  done
  cat << EOF > path.el
(setq load-path (cons "." load-path) byte-compile-warnings nil)
EOF
  ${FLAVOR} ${flags} ${files}
  rm -f path.el
fi
