2b27ab6a10
xine-lib (1.2.11) 2020-12-06 * Add gopher input plugin. * Add user settings for IPv6. * Split a52 spdif output to separate decoder. * Code cleanup. * More engine optimization. * Small optimizations (opengl2, dvb subtitles, png, mpeg-ts). * Better A/V sync. * Fix a few crashes. * Fix bluray playback. * Fix VAAPI picture jitter and green flashes. * Fix Opus and EAC3 audio playback. * Fix text subtitles. * Fix mpeg-ts (hdmv mode, detection of cut TV recordings). * Fix mpeg layer 1-4 audio timing. * Fix some VDR issues. * Fix HLS VOD mode. * Many small fixes. * Build fixes. * BSD fixes. * Update german translation. * Update internal libdca to upstream 0.0.7.
25 lines
715 B
Makefile
25 lines
715 B
Makefile
# $NetBSD: Makefile,v 1.28 2020/12/18 23:33:05 nia Exp $
|
|
|
|
.include "../../multimedia/xine-lib/Makefile.common"
|
|
|
|
PKGNAME= ${XINE_PKGNAME:S/lib/alsa/}
|
|
CATEGORIES= audio
|
|
COMMENT= The ALSA output plugin for xine-lib
|
|
|
|
DEPENDS+= xine-lib>=1rc3a:../../multimedia/xine-lib
|
|
|
|
BUILD_DIRS= src/audio_out
|
|
CONFIGURE_ARGS+= --without-x --disable-xinerama
|
|
CONFIGURE_ARGS+= --disable-vcd
|
|
CONFIGURE_ARGS+= --with-alsa
|
|
|
|
INSTALLATION_DIRS= lib/xine/plugins/${XINE_MOD_DIR_VER}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/src/audio_out && \
|
|
${LIBTOOL} --mode=install ${INSTALL_DATA} \
|
|
xineplug_ao_out_alsa.la \
|
|
${DESTDIR}${PREFIX}/lib/xine/plugins/${XINE_MOD_DIR_VER}
|
|
|
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|