#!/bin/sh
PATH=/usr/local/bin:$PATH
echo "--- checking out FreeM source code"
cvs -d:pserver:anonymous@cvs.coherent-logic.com:/home/cvsroot co freem
echo "--- running autoreconf --install"
cd freem
autoreconf --install
if [ $? -ne 0 ]
then
echo "autoreconf failed."
exit 1
fi
echo "--- running configure"
./configure
if [ $? -ne 0 ]
then
echo "configure failed."
exit 1
fi
echo "--- running make"
make
if [ $? -ne 0 ]
then
echo "build failed."
exit 1
fi
exit 0
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>