--- Makefile (revision 462469) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xine -PORTVERSION= 1.2.6 -PORTREVISION= 16 +PORTVERSION= 1.2.9 CATEGORIES= multimedia ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-lib/${PORTVERSION} PKGNAMEPREFIX= lib @@ -15,6 +14,8 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_aarch64= Fails to configure: error: no acceptable as found in $PATH + BUILD_DEPENDS= v4l_compat>=1.0.20100321:multimedia/v4l_compat LIB_DEPENDS= libFLAC.so:audio/flac \ liba52.so:audio/liba52 \ @@ -33,19 +34,24 @@ libdca.so:multimedia/libdca \ libavcodec.so:multimedia/ffmpeg \ libfaad.so:audio/faad \ - libvdpau.so:multimedia/libvdpau + libvdpau.so:multimedia/libvdpau \ + libcdio.so:sysutils/libcdio \ + libdvdnav.so:multimedia/libdvdnav \ + libvpx.so:multimedia/libvpx \ + libogg.so:audio/libogg + .if !defined(PACKAGE_BUILDING) # DVDCSS version hardcoded in src/input/input_dvd.c misc/cdda_server.c # and src/input/libdvdnav/dvd_input.c (dlopen'ed) -LIB_DEPENDS+= libdvdcss.so.2:multimedia/libdvdcss +LIB_DEPENDS+= libdvdcss.so:multimedia/libdvdcss .endif -USES= compiler cpe gmake iconv libtool:keepla \ +USES= compiler cpe gmake iconv jpeg libtool:keepla \ localbase pathfix perl5 pkgconfig tar:xz CPE_PRODUCT= xine-lib CPE_VENDOR= xine GNU_CONFIGURE= yes -USE_XORG= x11 xv xinerama xext sm ice +USE_XORG= x11 xcb xv xinerama xext sm ice USE_GL= gl glu USE_PERL5= build USE_SDL= sdl @@ -68,14 +74,12 @@ DOCSDIR= ${PREFIX}/share/doc/xine-lib # Please sync with XINE_PLUGINSDIR in multimedia/xine # and multimedia/vdr-plugin-xineliboutput -PLUGINSDIR= lib/xine/plugins/2.5 +PLUGINSDIR= lib/xine/plugins/2.7 PLIST_SUB= PLUGINSDIR="${PLUGINSDIR}" -BROKEN_aarch64= Fails to configure: error: no acceptable as found in $PATH - OPTIONS_DEFINE= NLS CACA ESOUND JACK GNOMEVFS2 PULSEAUDIO XVMC SMB AALIB \ IMAGEMAGICK PIXBUF WAVPACK VAAPI LIBBLURAY -OPTIONS_DEFAULT=VAAPI +OPTIONS_DEFAULT=IMAGEMAGICK PIXBUF VAAPI # IMAGEMAGICK and PIXBUF cause of gxine OPTIONS_SUB= yes NLS_USES= gettext --- distinfo (revision 462469) +++ distinfo (working copy) @@ -1,2 +1,3 @@ -SHA256 (xine-lib-1.2.6.tar.xz) = bd041d738817c7c0c6392a3c0e5bda5a664a47e035135b5a449364f8c9b6a005 -SIZE (xine-lib-1.2.6.tar.xz) = 5020964 +TIMESTAMP = 1519153744 +SHA256 (xine-lib-1.2.9.tar.xz) = 32b34e8049feb762d75a551d5d2cdb56c396fdd83e35b9b7de5fd08e498e948d +SIZE (xine-lib-1.2.9.tar.xz) = 5180452 --- files/patch-configure (revision 462469) +++ files/patch-configure (working copy) @@ -1,14 +1,5 @@ --- configure.orig +++ configure -@@ -20349,7 +20349,7 @@ $as_echo "#define ARCH_SPARC /**/" >>con - - ;; - -- x86_64-*) -+ x86_64-*|amd64-*) - arch_x86=64 - - $as_echo "#define ARCH_X86_64 /**/" >>confdefs.h @@ -20685,7 +20685,7 @@ fi if test "$sarchopt" != "no"; then --- files/patch-ffmpeg3 (revision 462469) +++ files/patch-ffmpeg3 (nonexistent) @@ -1,57 +0,0 @@ -Index: src/combined/ffmpeg/ff_audio_decoder.c -=================================================================== ---- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_audio_decoder.c -+++ src/combined/ffmpeg/ff_audio_decoder.c -@@ -590,7 +590,7 @@ static int ff_audio_decode (ff_audio_dec - int got_frame; - float gain = this->class->gain; - if (!this->av_frame) -- this->av_frame = avcodec_alloc_frame (); -+ this->av_frame = av_frame_alloc (); - - consumed = avcodec_decode_audio4 (this->context, this->av_frame, &got_frame, &avpkt); - if ((consumed >= 0) && got_frame) { -@@ -1071,7 +1071,7 @@ static void ff_audio_reset (audio_decode - /* try to reset the wma decoder */ - if( this->decoder_ok ) { - #if AVAUDIO > 3 -- avcodec_free_frame (&this->av_frame); -+ av_frame_free (&this->av_frame); - #endif - pthread_mutex_lock (&ffmpeg_lock); - avcodec_close (this->context); -@@ -1105,7 +1105,7 @@ static void ff_audio_dispose (audio_deco - - if( this->context && this->decoder_ok ) { - #if AVAUDIO > 3 -- avcodec_free_frame (&this->av_frame); -+ av_frame_free (&this->av_frame); - #endif - pthread_mutex_lock (&ffmpeg_lock); - avcodec_close (this->context); -Index: src/combined/ffmpeg/ff_video_decoder.c -=================================================================== ---- xine-lib-1.2.6.orig/src/combined/ffmpeg/ff_video_decoder.c -+++ src/combined/ffmpeg/ff_video_decoder.c -@@ -2523,7 +2523,7 @@ static video_decoder_t *ff_video_open_pl - this->stream = stream; - this->class = (ff_video_class_t *) class_gen; - -- this->av_frame = avcodec_alloc_frame(); -+ this->av_frame = av_frame_alloc(); - this->context = avcodec_alloc_context(); - this->context->opaque = this; - #if AVPALETTE == 1 -Index: src/dxr3/ffmpeg_encoder.c -=================================================================== ---- src/dxr3/ffmpeg_encoder.c.orig 2016-02-17 07:54:31.950881580 +0000 -+++ src/dxr3/ffmpeg_encoder.c 2016-02-17 07:55:42.897237494 +0000 -@@ -161,7 +161,7 @@ - "dxr3_mpeg_encoder: Couldn't start the ffmpeg library\n"); - return 0; - } -- this->picture = avcodec_alloc_frame(); -+ this->picture = av_frame_alloc(); - if (!this->picture) { - xprintf(drv->class->xine, XINE_VERBOSITY_LOG, - "dxr3_mpeg_encoder: Couldn't allocate ffmpeg frame\n"); --- files/patch-src-audio_dec-xine_lpcm_decoder.c (revision 462469) +++ files/patch-src-audio_dec-xine_lpcm_decoder.c (working copy) @@ -1,12 +1,13 @@ ---- src/audio_dec/xine_lpcm_decoder.c.orig +--- src/audio_dec/ine_lpcm_decoder.c.orig 2018-02-21 00:55:48 UTC +++ src/audio_dec/xine_lpcm_decoder.c -@@ -30,6 +30,9 @@ - #endif +@@ -31,6 +31,10 @@ /* avoid compiler warnings */ #define _BSD_SOURCE 1 + +#ifdef __FreeBSD__ +#define __BSD_VISIBLE 1 +#endif - ++ #ifdef HAVE_CONFIG_H #include "config.h" + #endif --- files/patch-src-combined-ffmpeg-Makefile.in.diff (revision 462469) +++ files/patch-src-combined-ffmpeg-Makefile.in.diff (nonexistent) @@ -1,13 +0,0 @@ ---- src/combined/ffmpeg/Makefile.in.orig 2013-09-23 15:58:14.000000000 -0500 -+++ src/combined/ffmpeg/Makefile.in 2013-09-25 03:25:33.000000000 -0500 -@@ -1037,9 +1037,7 @@ avcodec_audio.list: AV_CODECS:=/CODEC_ID - avcodec_video.list: AV_CODECS:=/CODEC_ID_MPEG1VIDEO/,/CODEC_ID_PCM_S16LE/ - - # that weird shell call just yields full path of the avcodec.h file --avcodec_audio.list avcodec_video.list: $(shell \ -- echo '#include "$(srcdir)/ffmpeg_decoder.h"' | $(AV_CPP) -M - |\ -- sed -e '/avcodec\.h/! d; s%^.* \([^ ]*/avcodec\.h\) .*%\1%') -+avcodec_audio.list avcodec_video.list: - $(AM_V_GEN)echo '#include "$(srcdir)/ffmpeg_decoder.h"' | $(AV_CPP) - |\ - sed -e $(AV_CODECS)'! d; s/^[ \t]*//; s/[=,].*//; /^$$/ d' >$@ - --- files/patch-src-post-deinterlace-plugins-greedy2frame_template_sse2.c (revision 462469) +++ files/patch-src-post-deinterlace-plugins-greedy2frame_template_sse2.c (nonexistent) @@ -1,28 +0,0 @@ ---- src/post/deinterlace/plugins/greedy2frame_template_sse2.c.orig -+++ src/post/deinterlace/plugins/greedy2frame_template_sse2.c -@@ -174,8 +174,8 @@ static void DeinterlaceGreedy2Frame_SSE2 - */ - "movdqa (%2), %%xmm1 \n\t" /* xmm1 = T1 */ - "movdqa (%3), %%xmm0 \n\t" /* xmm0 = T0 */ -- "movdqa (%q4,%2), %%xmm3 \n\t" /* xmm3 = B1 */ -- "movdqa (%q4,%3), %%xmm2 \n\t" /* xmm2 = B0 */ -+ "movdqa (%2,%4), %%xmm3 \n\t" /* xmm3 = B1 */ -+ "movdqa (%3,%4), %%xmm2 \n\t" /* xmm2 = B0 */ - - /* calculate |T1-T0| keep T1 put result in xmm5 */ - "movdqa %%xmm1, %%xmm5 \n\t" -@@ -192,11 +192,11 @@ static void DeinterlaceGreedy2Frame_SSE2 - "pcmpgtb %0, %%xmm5 \n\t" - "pcmpeqd %%xmm7, %%xmm5 \n\t" - -- "prefetcht0 64(%q4,%2) \n\t" -- "prefetcht0 64(%q4,%3) \n\t" -+ "prefetcht0 64(%2,%4) \n\t" -+ "prefetcht0 64(%3,%4) \n\t" - : - : "m" (GreedyTwoFrameThreshold128), -- "m" (*Destc), "r" (T1), "r" (T0), "r" (Pitch) ); -+ "m" (*Destc), "r" (T1), "r" (T0), "r" ((register_t)Pitch) ); - - asm volatile ( - /* calculate |B1-B0| keep B1 put result in xmm4 */ --- files/patch-src-post-planar-eq2.c (revision 462469) +++ files/patch-src-post-planar-eq2.c (nonexistent) @@ -1,11 +0,0 @@ ---- src/post/planar/eq2.c.orig -+++ src/post/planar/eq2.c -@@ -129,7 +129,7 @@ void affine_1d_MMX (eq2_param_t *par, un - "movq (%1), %%mm4 \n\t" - "pxor %%mm0, %%mm0 \n\t" - : -- : "g" (brvec), "g" (contvec) -+ : "r" (brvec), "r" (contvec) - ); - - while (h-- > 0) { --- files/patch-src-vdr-input_vdr.c (revision 462469) +++ files/patch-src-vdr-input_vdr.c (working copy) @@ -1,12 +1,13 @@ ---- src/vdr/input_vdr.c.orig +--- src/vdr/input_vdr.c.orig 2018-02-21 01:00:13 UTC +++ src/vdr/input_vdr.c -@@ -32,6 +32,9 @@ +@@ -32,6 +32,10 @@ #include #include +#ifdef __FreeBSD__ -+#include ++#define __BSD_VISIBLE 1 +#endif ++ + #ifdef HAVE_SYS_SOCKET_H #include - #include - #include + #endif --- pkg-plist (revision 462469) +++ pkg-plist (working copy) @@ -2,8 +2,8 @@ bin/xine-list-1.2 include/xine.h include/xine/alphablend.h +include/xine/array.h include/xine/attributes.h -include/xine/array.h include/xine/audio_decoder.h include/xine/audio_out.h include/xine/broadcaster.h @@ -28,8 +28,8 @@ include/xine/sorted_array.h include/xine/spu.h include/xine/spu_decoder.h +include/xine/vdr.h include/xine/version.h -include/xine/vdr.h include/xine/video_decoder.h include/xine/video_out.h include/xine/video_overlay.h @@ -41,47 +41,11 @@ include/xine/xineutils.h include/xine/xmllexer.h include/xine/xmlparser.h +lib/libxine-interface.la lib/libxine.la lib/libxine.so lib/libxine.so.2 -lib/libxine.so.2.5.0 -lib/libxine-interface.la -share/xine-lib/fonts/cetus-16.xinefont.gz -share/xine-lib/fonts/cetus-20.xinefont.gz -share/xine-lib/fonts/cetus-24.xinefont.gz -share/xine-lib/fonts/cetus-32.xinefont.gz -share/xine-lib/fonts/cetus-48.xinefont.gz -share/xine-lib/fonts/cetus-64.xinefont.gz -share/xine-lib/fonts/cc-16.xinefont.gz -share/xine-lib/fonts/cc-20.xinefont.gz -share/xine-lib/fonts/cc-24.xinefont.gz -share/xine-lib/fonts/cc-32.xinefont.gz -share/xine-lib/fonts/cc-48.xinefont.gz -share/xine-lib/fonts/cc-64.xinefont.gz -share/xine-lib/fonts/cci-16.xinefont.gz -share/xine-lib/fonts/cci-20.xinefont.gz -share/xine-lib/fonts/cci-24.xinefont.gz -share/xine-lib/fonts/cci-32.xinefont.gz -share/xine-lib/fonts/cci-48.xinefont.gz -share/xine-lib/fonts/cci-64.xinefont.gz -share/xine-lib/fonts/mono-16.xinefont.gz -share/xine-lib/fonts/mono-20.xinefont.gz -share/xine-lib/fonts/mono-24.xinefont.gz -share/xine-lib/fonts/mono-32.xinefont.gz -share/xine-lib/fonts/mono-48.xinefont.gz -share/xine-lib/fonts/mono-64.xinefont.gz -share/xine-lib/fonts/sans-16.xinefont.gz -share/xine-lib/fonts/sans-20.xinefont.gz -share/xine-lib/fonts/sans-24.xinefont.gz -share/xine-lib/fonts/sans-32.xinefont.gz -share/xine-lib/fonts/sans-48.xinefont.gz -share/xine-lib/fonts/sans-64.xinefont.gz -share/xine-lib/fonts/serif-16.xinefont.gz -share/xine-lib/fonts/serif-20.xinefont.gz -share/xine-lib/fonts/serif-24.xinefont.gz -share/xine-lib/fonts/serif-32.xinefont.gz -share/xine-lib/fonts/serif-48.xinefont.gz -share/xine-lib/fonts/serif-64.xinefont.gz +lib/libxine.so.2.7.0 %%PLUGINSDIR%%/mime.types %%PLUGINSDIR%%/post/xineplug_post_audio_filters.so %%PLUGINSDIR%%/post/xineplug_post_goom.so @@ -90,103 +54,61 @@ %%PLUGINSDIR%%/post/xineplug_post_switch.so %%PLUGINSDIR%%/post/xineplug_post_tvtime.so %%PLUGINSDIR%%/post/xineplug_post_visualizations.so -%%ESOUND%%%%PLUGINSDIR%%/xineplug_ao_out_esd.so -%%JACK%%%%PLUGINSDIR%%/xineplug_ao_out_jack.so -%%PLUGINSDIR%%/xineplug_ao_out_file.so -%%PLUGINSDIR%%/xineplug_ao_out_none.so %%PLUGINSDIR%%/xineplug_ao_out_oss.so -%%PULSEAUDIO%%%%PLUGINSDIR%%/xineplug_ao_out_pulseaudio.so %%PLUGINSDIR%%/xineplug_decode_a52.so -%%PLUGINSDIR%%/xineplug_decode_bitplane.so %%PLUGINSDIR%%/xineplug_decode_dts.so %%PLUGINSDIR%%/xineplug_decode_dvaudio.so %%PLUGINSDIR%%/xineplug_decode_faad.so %%PLUGINSDIR%%/xineplug_decode_ff.so -%%PIXBUF%%%%PLUGINSDIR%%/xineplug_decode_gdk_pixbuf.so %%PLUGINSDIR%%/xineplug_decode_gsm610.so -%%IMAGEMAGICK%%%%PLUGINSDIR%%/xineplug_decode_image.so %%PLUGINSDIR%%/xineplug_decode_libjpeg.so %%PLUGINSDIR%%/xineplug_decode_libvpx.so %%PLUGINSDIR%%/xineplug_decode_lpcm.so %%PLUGINSDIR%%/xineplug_decode_mad.so %%PLUGINSDIR%%/xineplug_decode_mpeg2.so -%%WITH_VIDIX%%%%PLUGINSDIR%%/xineplug_decode_qt.so -%%PLUGINSDIR%%/xineplug_decode_rgb.so +%%PLUGINSDIR%%/xineplug_decode_rawvideo.so %%PLUGINSDIR%%/xineplug_decode_spu.so %%PLUGINSDIR%%/xineplug_decode_spucc.so %%PLUGINSDIR%%/xineplug_decode_spucmml.so %%PLUGINSDIR%%/xineplug_decode_spudvb.so %%PLUGINSDIR%%/xineplug_decode_spuhdmv.so -%%PLUGINSDIR%%/xineplug_decode_vdpau_h264_alter.so -%%PLUGINSDIR%%/xineplug_decode_vdpau_h264.so -%%PLUGINSDIR%%/xineplug_decode_vdpau_mpeg12.so -%%PLUGINSDIR%%/xineplug_decode_vdpau_mpeg4.so -%%PLUGINSDIR%%/xineplug_decode_vdpau_vc1.so -%%WITH_VIDIX%%%%PLUGINSDIR%%/xineplug_decode_w32dll.so -%%PLUGINSDIR%%/xineplug_decode_yuv.so +%%PLUGINSDIR%%/xineplug_decode_vdpau.so %%PLUGINSDIR%%/xineplug_dmx_asf.so %%PLUGINSDIR%%/xineplug_dmx_audio.so -%%PLUGINSDIR%%/xineplug_dmx_avi.so %%PLUGINSDIR%%/xineplug_dmx_fli.so -%%PLUGINSDIR%%/xineplug_dmx_flv.so %%PLUGINSDIR%%/xineplug_dmx_games.so -%%PLUGINSDIR%%/xineplug_dmx_iff.so %%WITH_DMX_IMAGE%%%%PLUGINSDIR%%/xineplug_dmx_image.so -%%PLUGINSDIR%%/xineplug_dmx_matroska.so +%%PLUGINSDIR%%/xineplug_decode_gdk_pixbuf.so +%%PLUGINSDIR%%/xineplug_decode_image.so %%PLUGINSDIR%%/xineplug_dmx_mng.so %%PLUGINSDIR%%/xineplug_dmx_modplug.so -%%PLUGINSDIR%%/xineplug_dmx_mpeg.so -%%PLUGINSDIR%%/xineplug_dmx_mpeg_block.so -%%PLUGINSDIR%%/xineplug_dmx_mpeg_elem.so -%%PLUGINSDIR%%/xineplug_dmx_mpeg_pes.so -%%PLUGINSDIR%%/xineplug_dmx_mpeg_ts.so %%PLUGINSDIR%%/xineplug_dmx_nsv.so %%PLUGINSDIR%%/xineplug_dmx_playlist.so %%PLUGINSDIR%%/xineplug_dmx_pva.so -%%PLUGINSDIR%%/xineplug_dmx_qt.so -%%PLUGINSDIR%%/xineplug_dmx_rawdv.so -%%PLUGINSDIR%%/xineplug_dmx_real.so %%PLUGINSDIR%%/xineplug_dmx_slave.so -%%PLUGINSDIR%%/xineplug_dmx_vc1_es.so -%%PLUGINSDIR%%/xineplug_dmx_yuv4mpeg2.so -%%PLUGINSDIR%%/xineplug_dmx_yuv_frames.so +%%PLUGINSDIR%%/xineplug_dmx_video.so %%PLUGINSDIR%%/xineplug_flac.so %%PLUGINSDIR%%/xineplug_inp_cdda.so -%%LIBBLURAY%%%%PLUGINSDIR%%/xineplug_inp_bluray.so %%PLUGINSDIR%%/xineplug_inp_dvb.so %%PLUGINSDIR%%/xineplug_inp_dvd.so -%%PLUGINSDIR%%/xineplug_inp_file.so -%%GNOMEVFS2%%%%PLUGINSDIR%%/xineplug_inp_gnome_vfs.so -%%PLUGINSDIR%%/xineplug_inp_http.so %%PLUGINSDIR%%/xineplug_inp_mms.so -%%PLUGINSDIR%%/xineplug_inp_net.so -%%PLUGINSDIR%%/xineplug_inp_pnm.so +%%PLUGINSDIR%%/xineplug_inp_network.so %%PLUGINSDIR%%/xineplug_inp_rtp.so -%%PLUGINSDIR%%/xineplug_inp_rtsp.so -%%SMB%%%%PLUGINSDIR%%/xineplug_inp_smb.so -%%PLUGINSDIR%%/xineplug_inp_stdin_fifo.so -%%PLUGINSDIR%%/xineplug_inp_test.so %%PLUGINSDIR%%/xineplug_inp_vcd.so %%PLUGINSDIR%%/xineplug_inp_vcdo.so %%PLUGINSDIR%%/xineplug_nsf.so %%PLUGINSDIR%%/xineplug_sputext.so %%PLUGINSDIR%%/xineplug_vdr.so -%%AALIB%%%%PLUGINSDIR%%/xineplug_vo_out_aa.so -%%CACA%%%%PLUGINSDIR%%/xineplug_vo_out_caca.so -%%PLUGINSDIR%%/xineplug_vo_out_none.so %%PLUGINSDIR%%/xineplug_vo_out_opengl.so %%PLUGINSDIR%%/xineplug_vo_out_opengl2.so %%PLUGINSDIR%%/xineplug_vo_out_raw.so %%PLUGINSDIR%%/xineplug_vo_out_sdl.so +%%PLUGINSDIR%%/xineplug_vo_out_vaapi.so %%PLUGINSDIR%%/xineplug_vo_out_vdpau.so %%PLUGINSDIR%%/xineplug_vo_out_xcbshm.so %%PLUGINSDIR%%/xineplug_vo_out_xcbxv.so %%PLUGINSDIR%%/xineplug_vo_out_xshm.so %%PLUGINSDIR%%/xineplug_vo_out_xv.so -%%VAAPI%%%%PLUGINSDIR%%/xineplug_vo_out_vaapi.so -%%XVMC%%%%PLUGINSDIR%%/xineplug_vo_out_xvmc.so -%%XVMC%%%%PLUGINSDIR%%/xineplug_vo_out_xxmc.so -%%WAVPACK%%%%PLUGINSDIR%%/xineplug_wavpack.so %%PLUGINSDIR%%/xineplug_xiph.so libdata/pkgconfig/libxine.pc man/man1/xine-config.1.gz @@ -218,16 +140,52 @@ %%DOCSDIR%%/hackersguide/library.png %%DOCSDIR%%/hackersguide/overlays.png %%DOCSDIR%%/hackersguide/post_frame.png -%%NLS%%share/locale/cs/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/de/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/en_US/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/eo/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/es/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/eu/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/fr/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/it/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/ja/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/pl/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/sk/LC_MESSAGES/libxine2.mo -%%NLS%%share/locale/tr/LC_MESSAGES/libxine2.mo +share/locale/cs/LC_MESSAGES/libxine2.mo +share/locale/de/LC_MESSAGES/libxine2.mo +share/locale/en_US/LC_MESSAGES/libxine2.mo +share/locale/eo/LC_MESSAGES/libxine2.mo +share/locale/es/LC_MESSAGES/libxine2.mo +share/locale/eu/LC_MESSAGES/libxine2.mo +share/locale/fr/LC_MESSAGES/libxine2.mo +share/locale/it/LC_MESSAGES/libxine2.mo +share/locale/ja/LC_MESSAGES/libxine2.mo +share/locale/pl/LC_MESSAGES/libxine2.mo +share/locale/pt_BR/LC_MESSAGES/libxine2.mo +share/locale/sk/LC_MESSAGES/libxine2.mo +share/locale/tr/LC_MESSAGES/libxine2.mo +%%DATADIR%%-lib/fonts/cc-16.xinefont.gz +%%DATADIR%%-lib/fonts/cc-20.xinefont.gz +%%DATADIR%%-lib/fonts/cc-24.xinefont.gz +%%DATADIR%%-lib/fonts/cc-32.xinefont.gz +%%DATADIR%%-lib/fonts/cc-48.xinefont.gz +%%DATADIR%%-lib/fonts/cc-64.xinefont.gz +%%DATADIR%%-lib/fonts/cci-16.xinefont.gz +%%DATADIR%%-lib/fonts/cci-20.xinefont.gz +%%DATADIR%%-lib/fonts/cci-24.xinefont.gz +%%DATADIR%%-lib/fonts/cci-32.xinefont.gz +%%DATADIR%%-lib/fonts/cci-48.xinefont.gz +%%DATADIR%%-lib/fonts/cci-64.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-16.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-20.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-24.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-32.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-48.xinefont.gz +%%DATADIR%%-lib/fonts/cetus-64.xinefont.gz +%%DATADIR%%-lib/fonts/mono-16.xinefont.gz +%%DATADIR%%-lib/fonts/mono-20.xinefont.gz +%%DATADIR%%-lib/fonts/mono-24.xinefont.gz +%%DATADIR%%-lib/fonts/mono-32.xinefont.gz +%%DATADIR%%-lib/fonts/mono-48.xinefont.gz +%%DATADIR%%-lib/fonts/mono-64.xinefont.gz +%%DATADIR%%-lib/fonts/sans-16.xinefont.gz +%%DATADIR%%-lib/fonts/sans-20.xinefont.gz +%%DATADIR%%-lib/fonts/sans-24.xinefont.gz +%%DATADIR%%-lib/fonts/sans-32.xinefont.gz +%%DATADIR%%-lib/fonts/sans-48.xinefont.gz +%%DATADIR%%-lib/fonts/sans-64.xinefont.gz +%%DATADIR%%-lib/fonts/serif-16.xinefont.gz +%%DATADIR%%-lib/fonts/serif-20.xinefont.gz +%%DATADIR%%-lib/fonts/serif-24.xinefont.gz +%%DATADIR%%-lib/fonts/serif-32.xinefont.gz +%%DATADIR%%-lib/fonts/serif-48.xinefont.gz +%%DATADIR%%-lib/fonts/serif-64.xinefont.gz