I’ve installed submux-dvd and xste. xste required xforms and libmpeg3 . Note xforms is supposed to be available from Savannah, but it isn’t there now. The link I have here I found from Googling. It seems just fine.
These are all source packages, which I put in /usr/local/src. Everything compiled without a hitch except xste. It seems the make install
of libmpeg doesn’t install libmpeg3.a in /usr/local/lib and xste didn’t know where to find the xforms header files, so in xste-3.2.5/Imakefile
, I had the make the following additions:
EXTRA_LIBS = -lpthread -lfreetype -L/usr/local/src/libmpeg3-1.5.3/i686
EXTRA_INCLUDES = $(FREETYPE2INCLUDES) -I/usr/X11R6/include/X11 -I/usr/local/src
and add a softlink in /usr/local/src so that libmpeg3 points to libmpeg3-1.5.3. Make these changes before you do any compiling. If you didn’t, you’ll have to start over at the xmkmf
step. Not a big deal really.
Post a Comment
You must be logged in to post a comment.