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-10.0 platform.
Download (HTTP): https://downloads.sourceforge.net/xine/xine-lib-1.2.10.tar.xz
Download (FTP): ftp://ftp.mirrorservice.org/sites/distfiles.gentoo.org/distfiles/xine-lib-1.2.10.tar.xz
Download MD5 sum: f4ac0fc08d74e1b8f3c389617ee9cfdc
Download size: 5.0 MB
Estimated disk space required: 102 MB (wtih API documentation)
Estimated build time: 0.6 SBU (Using parallelism=4; with API documentation)
X Window System, FFmpeg-4.3.1, and at least one of: ALSA-1.2.2, PulseAudio-13.0, or JACK
AAlib-1.4rc5, FAAD2-2_9_2, FLAC-1.3.3, gdk-pixbuf-2.40.0, GLU-9.0.1, ImageMagick-7.0.10-27, liba52-0.7.4, libdvdcss-1.4.2, libmad-0.15.1b, libmng-2.0.3, libtheora-1.1.1, libva-2.8.0 (requires GLU-9.0.1), libvdpau-1.4, libvorbis-1.3.7, libvpx-1.9.0, Mesa-20.1.5, Samba-4.12.6, SDL-1.2.15, Speex-1.2.0, Doxygen-1.8.19 (to create the API documentation), v4l-utils-1.20.0 DirectFB, libbluray, libcaca, libdca, libFAME, libmodplug, musepack, VCDImager, and WavPack,
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/xine-lib
First fix an issue introduced by GCC-10 and later:
sed -e 's/^const/extern &/' \ -i src/libreal/real_common.h
Install Xine Libraries by running the following commands:
./configure --prefix=/usr \ --disable-vcd \ --with-external-dvdnav \ --docdir=/usr/share/doc/xine-lib-1.2.10 && 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
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.10/api && install -v -m644 doc/api/* \ /usr/share/doc/xine-lib-1.2.10/api
--disable-vcd
: This switch
is required to compile Xine Lib
without VCDImager installed.
Remove this option if you have installed VCDImager.
--with-external-dvdnav
:
This switch is required, because internal libraries cannot decrypt
DVD.
--docdir=/usr/share/doc/xine-lib-1.2.10
:
This switch causes the documentation to be installed into a
versioned directory instead of the default /usr/share/doc/xine-lib
.
--disable-vaapi
: use this switch if
libva-2.8.0 is installed and GLU-9.0.1 is not, to
prevent a build failure.
Last updated on 2020-08-22 20:38:33 -0700