The error during emerge is: ...... LD console/fbtv console/fs.o(.text+0x587): In function `fs_connect': : undefined reference to `FSOpenServer' etc ...... I found the solution: in file xawtv-3.86/console/Subdir.mk line 77 regarding linking fbtv: present form of this line is: $(FS_LIBS) -ljpeg -lm but it should be: $(FS_LIBS) -ljpeg -lm -lFS the error was because of lacking -lFS option which tells to link against libFS library. After adding -lFS xawtv compiles OK. (yes, i know, the proper form is to put -lFS in FS_LIBS variable, and it is there, but magically ;-) it disappears in place where fbtv is linking)
Is this the same problem as in Bug 81564 ?
Yes, this is the same problem as described in bug http://bugs.gentoo.org/show_bug.cgi?id=81564
OK, marking as duplicate. *** This bug has been marked as a duplicate of 81564 ***