Angstrom BB distro build problem fs_cvs.bb recipe

This may not be the ideal place to post but:

I am trying to build xawtv using angstrom but one of the dependant recipes is failing:

ERROR: Build of /home/matt/beagle/OE/openembedded/recipes/fs/fs_cvs.bb do_compile failed

It looks like something isn’t linking to the xtrans package properly, from the log file:

In file included from FSlibos.h:269,
from FSlibint.h:76,
from FSConnServ.c:56:
fs_trans.h:27:20: error: Xtrans.h: No such file or directory

I can post the file over but then I just get a whole suite of other similar errors relating to
xtrans.

Is anyone familiar with this error or build system? How can I fix the recipe so that fs finds xtrans and builds?

The recipe is fairly minimal at the moment:

PV = "0.0+cvs${SRCDATE}"
LICENSE = "BSD-X"
SECTION = "libs"
PRIORITY = "optional"
DEPENDS = "libxfont xtrans"

SRC_URI = "${FREEDESKTOP_CVS}/xlibs;module=FS"
S = "${WORKDIR}/FS"

inherit autotools pkgconfig

do_stage() {
autotools_stage_all
}

Cheers,

SA