#!/bin/sh

FLAVOR=$1
PACKAGE="highline"

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}

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

	gzip -9 ${ELCDIR}/CompilationLog
   
	echo " done."
	;;
esac

exit 0;
