xine-lib-1.2.3

Introduction to Xine Libraries

The Xine Libraries package contains xine libraries. These are useful for interfacing with external plug-ins that allow the flow of information from the source to the audio and video hardware.

This package is known to build and work properly using an LFS-7.4 platform.

Package Information

Additional Downloads

Xine Libraries Dependencies

Required

X Window System, FFmpeg-1.2.2, and at least one of: ALSA-1.0.27, PulseAudio-4.0 or JACK

Optional

liba52-0.7.4, AAlib-1.4rc5, DirectFB, FAAD2-2.7, FLAC-1.3.0, gdk-pixbuf-2.28.2, ImageMagick-6.8.6-9, libbluray, libcaca, libdca, libdvdnav-4.2.0, libFAME, libmad-0.15.1b, libmng-2.0.2, libtheora-1.1.1, libva-1.2.1, libvdpau-0.7, libvorbis-1.3.3, MesaLib-9.2.0, libmodplug, musepack, Samba-4.0.9, SDL-1.2.15, Speex-1.2rc1, VCDImager, Video4Linux, WavPack, and Doxygen-1.8.5 (to create the API documentation)

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/xine-lib

Installation of Xine Libraries

Install Xine Libraries by running the following commands:

patch -Np1 -i ../xine-lib-1.2.3-missing_include-1.patch &&

./configure --prefix=/usr     \
            --disable-vcd     \
            --disable-modplug \
            --docdir=/usr/share/doc/xine-lib-1.2.3 &&
make

To create the API documentation, Doxygen must be installed and issue the following command:

doxygen doc/Doxyfile

This package does not come with a test suite.

Now, as the root user:

make install
[Note]

Note

When installing, the Makefile does some additional linking. If you do not have Xorg in /usr, the LIBRARY_PATH variable needs to be defined for the root user. If using sudo to assume root, use the -E option to pass your current environment variables for the install process.

If you built the API documentation, issue the following commands as the root user to install it:

install -v -m755 -d /usr/share/doc/xine-lib-1.2.3/api &&
install -v -m644    doc/api/* \
                    /usr/share/doc/xine-lib-1.2.3/api

Command Explanations

--disable-vcd: This option is required to compile Xine Lib without VCDImager installed. Remove this option if you have installed VCDImager.

--disable-modplug: This option is required to compile Xine Lib without libmodplug installed. Remove this option if you have installed libmodplug.

--docdir=/usr/share/xine-lib-1.2.3: This switch causes the documentation to be installed into a versioned directory instead of the default /usr/share/doc/xine-lib.

Contents

Installed Programs: xine-config and xine-list-1.2
Installed Libraries: libxine.so and numerous plugin modules and video extensions
Installed Fonts: Output display engine fonts located in /usr/share/xine-lib/fonts
Installed Directories: /usr/include/xine, /usr/lib/xine, /usr/share/xine-lib, and /usr/share/doc/xine-lib-1.2.3

Short Descriptions

xine-config

provides information to programs trying to link with the xine libraries.

xine-list-1.2

is used to get supported filetype information from xine-lib.

libxine.so

provides the API for processing audio/video files.

Last updated on 2013-09-03 12:08:19 -0700