#!/bin/sh

FLAVOR=$1
PACKAGE="howm"

if [ "X${FLAVOR}" = "X" ]; then
    echo Need argument to determin FLAVOR of emacs;
    exit 1
fi

if [ "X${PACKAGE}" = "X" ]; then
    echo Internal error: need package name;
    exit 1;
fi

ELDIR=${EPREFIX}/usr/share/emacs/site-lisp/${PACKAGE}
ELCDIR=${EPREFIX}/usr/share/${FLAVOR}/site-lisp/${PACKAGE}

COMPILE="-batch -q -f batch-byte-compile"

case "${FLAVOR}" in
    emacs)
	;;

    *)
	echo -n "install/${PACKAGE}: Byte-compiling for ${FLAVOR} ... "

	rm -rf ${ELCDIR}
	install -m 755 -d ${ELCDIR}
	cp ${ELDIR}/*.el ${ELCDIR}

	(
	    cd ${ELCDIR}
	    ${FLAVOR} ${COMPILE} *.el > ${ELCDIR}/CompilationLog 2>&1
	    rm *.el
	)

	gzip -9 ${ELCDIR}/CompilationLog

	echo " done."
	;;
esac

exit 0;
