On Thu, Oct 04, 2007 at 08:11:18AM +0200, Antoine Jacoutot wrote: > On Wed, 3 Oct 2007, Jacob Meuser wrote: > >this lets ports that use xine-lib for audio output use artsd. > > > >this would let xine, kaffeine and amarok (and possible others?) > >use artsd. > > I'm in favor of this, but shouldn't esound support be enabled too then? > Also, it that's too much dependency, maybe we could consider making arts > and esound FLAVORS. > Just some thoughs...
here is a patch to add artsd and esound support as subpackages. I don't think it's too much of a build dependency, since besides xine-ui, the other xine-lib frontends are KDE based: faffeine, amarok, and kdemultimedia3. -- [EMAIL PROTECTED] SDF Public Access UNIX System - http://sdf.lonestar.org Index: Makefile =================================================================== RCS file: /cvs/ports/multimedia/xine-lib/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- Makefile 31 Oct 2007 10:55:37 -0000 1.20 +++ Makefile 1 Nov 2007 01:47:50 -0000 @@ -1,9 +1,14 @@ # $OpenBSD: Makefile,v 1.20 2007/10/31 10:55:37 jakemsr Exp $ -COMMENT= multimedia decoding library +COMMENT-main= multimedia decoding library +COMMENT-esd= esound audio output module for xine-lib +COMMENT-arts= artsd audio output muodule for xine-lib V= 1.1.8 DISTNAME= xine-lib-${V} +PKGNAME-main= xine-lib-${V}p0 +PKGNAME-esd= xine-lib-esd-${V} +PKGNAME-arts= xine-lib-arts-${V} CATEGORIES= multimedia SHARED_LIBS= xine 19.0 @@ -17,9 +22,13 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=xine/} -WANTLIB= X11 Xau Xdmcp Xext Xinerama Xrandr Xrender \ - Xv expat faac freetype fontconfig jpeg lcms m \ - mp3lame usbhid x264 z +MULTI_PACKAGES= -main -esd -arts + +WANTLIB= expat fontconfig freetype m z +WANTLIB-main= ${WANTLIB} X11 Xau Xdmcp Xext Xinerama Xrandr \ + Xrender Xv faac jpeg lcms mp3lame usbhid x264 +WANTLIB-esd= ${WANTLIB} +WANTLIB-arts= ${WANTLIB} stdc++ glib-2.0 gmodule-2.0 gthread-2.0 .if ${MACHINE_ARCH} == "i386" PKG_ARGS+= -Di386=1 @@ -28,7 +37,8 @@ .endif MODULES= devel/gettext -LIB_DEPENDS= FLAC.>=5::audio/flac \ +LIB_DEPENDS-main= ${LIB_DEPENDS} \ + FLAC.>=5::audio/flac \ SDL.>=3::devel/sdl \ a52::audio/liba52 \ avcodec.>=7,avutil.>=2,postproc.>=7::graphics/ffmpeg \ @@ -41,6 +51,16 @@ speex.>=3::audio/speex \ theora.>=1::multimedia/libtheora +LIB_DEPENDS-esd= ${LIB_DEPENDS} \ + esd.>=2::audio/esound \ + audiofile.>=0::devel/libaudiofile \ + ::${BUILD_PKGPATH} +RUN_DEPENDS-esd= ${RUN_DEPENDS} +LIB_DEPENDS-arts= ${LIB_DEPENDS} \ + artsc.>=1::x11/kde/arts3 \ + ::${BUILD_PKGPATH} +RUN_DEPENDS-arts= ${RUN_DEPENDS} + SHARED_ONLY= Yes USE_X11= Yes USE_LIBTOOL= Yes @@ -66,8 +86,8 @@ --without-pulseaudio \ --disable-oss \ --without-alsa \ - --without-arts \ - --without-esound \ + --with-esound \ + --with-arts \ --without-jack \ --without-imagemagick \ --disable-samba \ Index: patches/patch-src_audio_out_Makefile_in =================================================================== RCS file: patches/patch-src_audio_out_Makefile_in diff -N patches/patch-src_audio_out_Makefile_in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-src_audio_out_Makefile_in 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1,12 @@ +$OpenBSD$ +--- src/audio_out/Makefile.in.orig Wed Jun 6 06:40:33 2007 ++++ src/audio_out/Makefile.in Wed Oct 3 14:27:00 2007 +@@ -716,7 +716,7 @@ xineplug_ao_out_sun_la_LDFLAGS = -avoid-version -modul + #xineplug_ao_out_irixal_la_CFLAGS = $(VISIBILITY_FLAG) $(IRIXAL_CFLAGS) + #xineplug_ao_out_irixal_la_LDFLAGS = -avoid-version -module + xineplug_ao_out_arts_la_SOURCES = audio_arts_out.c +-xineplug_ao_out_arts_la_LIBADD = $(ARTS_LIBS) $(XINE_LIB) ++xineplug_ao_out_arts_la_LIBADD = $(ARTS_LIBS) $(XINE_LIB) -lstdc++ + xineplug_ao_out_arts_la_CFLAGS = $(VISIBILITY_FLAG) $(ARTS_CFLAGS) + xineplug_ao_out_arts_la_LDFLAGS = -avoid-version -module + xineplug_ao_out_directx_la_SOURCES = audio_directx_out.c Index: pkg/DESCR =================================================================== RCS file: pkg/DESCR diff -N pkg/DESCR --- pkg/DESCR 24 Mar 2006 22:43:41 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,5 +0,0 @@ -xine is a free multimedia player. It plays back CDs, DVDs, and VCDs. It -also decodes multimedia files like AVI, MOV, WMV, and MP3 from local -disk drives, and displays multimedia streamed over the Internet. It -interprets many of the most common multimedia formats available - and -some of the most uncommon formats, too. Index: pkg/DESCR-arts =================================================================== RCS file: pkg/DESCR-arts diff -N pkg/DESCR-arts --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/DESCR-arts 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1 @@ +artsd audio output plugin for xine-lib. Index: pkg/DESCR-esd =================================================================== RCS file: pkg/DESCR-esd diff -N pkg/DESCR-esd --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/DESCR-esd 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1 @@ +esound audio output plugin for xine-lib. Index: pkg/DESCR-main =================================================================== RCS file: pkg/DESCR-main diff -N pkg/DESCR-main --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/DESCR-main 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1,5 @@ +xine is a free multimedia player. It plays back CDs, DVDs, and VCDs. It +also decodes multimedia files like AVI, MOV, WMV, and MP3 from local +disk drives, and displays multimedia streamed over the Internet. It +interprets many of the most common multimedia formats available - and +some of the most uncommon formats, too. Index: pkg/PLIST =================================================================== RCS file: pkg/PLIST diff -N pkg/PLIST --- pkg/PLIST 13 Jun 2007 10:58:29 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,196 +0,0 @@ [EMAIL PROTECTED] $OpenBSD: PLIST,v 1.3 2007/06/13 10:58:29 jakemsr Exp $ -%%i386%% -bin/xine-config -include/xine/ -include/xine.h -include/xine/alphablend.h -include/xine/array.h -include/xine/attributes.h -include/xine/audio_decoder.h -include/xine/audio_out.h -include/xine/broadcaster.h -include/xine/buffer.h -include/xine/compat.h -include/xine/configfile.h -include/xine/demux.h -include/xine/info_helper.h -include/xine/input_plugin.h -include/xine/io_helper.h -include/xine/list.h -include/xine/metronom.h -include/xine/os_types.h -include/xine/osd.h -include/xine/plugin_catalog.h -include/xine/pool.h -include/xine/post.h -include/xine/refcounter.h -include/xine/resample.h -include/xine/ring_buffer.h -include/xine/scratch.h -include/xine/sorted_array.h -include/xine/spu_decoder.h -include/xine/video_decoder.h -include/xine/video_out.h -include/xine/video_overlay.h -include/xine/vo_scale.h -include/xine/xine_buffer.h -include/xine/xine_internal.h -include/xine/xine_plugin.h -include/xine/xineintl.h -include/xine/xineutils.h -include/xine/xmllexer.h -include/xine/xmlparser.h -lib/libxine.la [EMAIL PROTECTED] lib/libxine.so.${LIBxine_VERSION} -lib/pkgconfig/libxine.pc -lib/xine/ -lib/xine/plugins/ -lib/xine/plugins/${V}/ -lib/xine/plugins/${V}/mime.types -lib/xine/plugins/${V}/post/ -lib/xine/plugins/${V}/post/xineplug_post_audio_filters.so -lib/xine/plugins/${V}/post/xineplug_post_goom.so -lib/xine/plugins/${V}/post/xineplug_post_mosaico.so -lib/xine/plugins/${V}/post/xineplug_post_planar.so -lib/xine/plugins/${V}/post/xineplug_post_switch.so -lib/xine/plugins/${V}/post/xineplug_post_tvtime.so -lib/xine/plugins/${V}/post/xineplug_post_visualizations.so [EMAIL PROTECTED] lib/xine/plugins/${V}/vidix/ -lib/xine/plugins/${V}/xineplug_ao_out_file.so -lib/xine/plugins/${V}/xineplug_ao_out_none.so -lib/xine/plugins/${V}/xineplug_ao_out_sun.so -lib/xine/plugins/${V}/xineplug_decode_a52.so -lib/xine/plugins/${V}/xineplug_decode_bitplane.so -lib/xine/plugins/${V}/xineplug_decode_dts.so -lib/xine/plugins/${V}/xineplug_decode_dvaudio.so -lib/xine/plugins/${V}/xineplug_decode_faad.so -lib/xine/plugins/${V}/xineplug_decode_ff.so -lib/xine/plugins/${V}/xineplug_decode_gsm610.so -lib/xine/plugins/${V}/xineplug_decode_lpcm.so -lib/xine/plugins/${V}/xineplug_decode_mad.so -lib/xine/plugins/${V}/xineplug_decode_mpc.so -lib/xine/plugins/${V}/xineplug_decode_mpeg2.so -lib/xine/plugins/${V}/xineplug_decode_nsf.so -lib/xine/plugins/${V}/xineplug_decode_real.so -lib/xine/plugins/${V}/xineplug_decode_rgb.so -lib/xine/plugins/${V}/xineplug_decode_speex.so -lib/xine/plugins/${V}/xineplug_decode_spu.so -lib/xine/plugins/${V}/xineplug_decode_spucc.so -lib/xine/plugins/${V}/xineplug_decode_spucmml.so -lib/xine/plugins/${V}/xineplug_decode_spudvb.so -lib/xine/plugins/${V}/xineplug_decode_sputext.so -lib/xine/plugins/${V}/xineplug_decode_theora.so -lib/xine/plugins/${V}/xineplug_decode_vorbis.so -lib/xine/plugins/${V}/xineplug_decode_yuv.so -lib/xine/plugins/${V}/xineplug_dmx_asf.so -lib/xine/plugins/${V}/xineplug_dmx_audio.so -lib/xine/plugins/${V}/xineplug_dmx_avi.so -lib/xine/plugins/${V}/xineplug_dmx_fli.so -lib/xine/plugins/${V}/xineplug_dmx_flv.so -lib/xine/plugins/${V}/xineplug_dmx_games.so -lib/xine/plugins/${V}/xineplug_dmx_iff.so -lib/xine/plugins/${V}/xineplug_dmx_matroska.so -lib/xine/plugins/${V}/xineplug_dmx_mng.so -lib/xine/plugins/${V}/xineplug_dmx_mpeg.so -lib/xine/plugins/${V}/xineplug_dmx_mpeg_block.so -lib/xine/plugins/${V}/xineplug_dmx_mpeg_elem.so -lib/xine/plugins/${V}/xineplug_dmx_mpeg_pes.so -lib/xine/plugins/${V}/xineplug_dmx_mpeg_ts.so -lib/xine/plugins/${V}/xineplug_dmx_nsv.so -lib/xine/plugins/${V}/xineplug_dmx_ogg.so -lib/xine/plugins/${V}/xineplug_dmx_pva.so -lib/xine/plugins/${V}/xineplug_dmx_qt.so -lib/xine/plugins/${V}/xineplug_dmx_rawdv.so -lib/xine/plugins/${V}/xineplug_dmx_real.so -lib/xine/plugins/${V}/xineplug_dmx_slave.so -lib/xine/plugins/${V}/xineplug_dmx_sputext.so -lib/xine/plugins/${V}/xineplug_dmx_yuv4mpeg2.so -lib/xine/plugins/${V}/xineplug_dmx_yuv_frames.so -lib/xine/plugins/${V}/xineplug_flac.so -lib/xine/plugins/${V}/xineplug_inp_cdda.so -lib/xine/plugins/${V}/xineplug_inp_dvb.so -lib/xine/plugins/${V}/xineplug_inp_dvd.so -lib/xine/plugins/${V}/xineplug_inp_file.so -lib/xine/plugins/${V}/xineplug_inp_http.so -lib/xine/plugins/${V}/xineplug_inp_mms.so -lib/xine/plugins/${V}/xineplug_inp_net.so -lib/xine/plugins/${V}/xineplug_inp_pnm.so -lib/xine/plugins/${V}/xineplug_inp_rtp.so -lib/xine/plugins/${V}/xineplug_inp_rtsp.so -lib/xine/plugins/${V}/xineplug_inp_stdin_fifo.so -lib/xine/plugins/${V}/xineplug_vo_out_none.so -lib/xine/plugins/${V}/xineplug_vo_out_sdl.so -lib/xine/plugins/${V}/xineplug_vo_out_xshm.so -lib/xine/plugins/${V}/xineplug_vo_out_xv.so [EMAIL PROTECTED] man/man1/xine-config.1 [EMAIL PROTECTED] man/man5/xine.5 -share/aclocal/xine.m4 -share/doc/xine-lib/ -share/doc/xine-lib/README -share/doc/xine-lib/README.MINGWCROSS -share/doc/xine-lib/README.WIN32 -share/doc/xine-lib/README.dvb -share/doc/xine-lib/README.dxr3 -share/doc/xine-lib/README.freebsd -share/doc/xine-lib/README.irix -share/doc/xine-lib/README.network_dvd -share/doc/xine-lib/README.opengl -share/doc/xine-lib/README.solaris -share/doc/xine-lib/README.syncfb -share/doc/xine-lib/README_xxmc.html -share/doc/xine-lib/faq.html -share/doc/xine-lib/faq.txt -share/doc/xine-lib/hackersguide/ -share/doc/xine-lib/hackersguide/architecture.png -share/doc/xine-lib/hackersguide/hackersguide.html -share/doc/xine-lib/hackersguide/library.png -share/doc/xine-lib/hackersguide/overlays.png -share/doc/xine-lib/hackersguide/post_frame.png -share/locale/cs/LC_MESSAGES/libxine1.mo -share/locale/de/LC_MESSAGES/libxine1.mo -share/locale/es/LC_MESSAGES/libxine1.mo -share/locale/eu/LC_MESSAGES/libxine1.mo -share/locale/fr/LC_MESSAGES/libxine1.mo -share/locale/it/LC_MESSAGES/libxine1.mo -share/locale/pl/LC_MESSAGES/libxine1.mo -share/locale/pt_BR/LC_MESSAGES/libxine1.mo -share/locale/sk/LC_MESSAGES/libxine1.mo -share/xine/ -share/xine/libxine1/ -share/xine/libxine1/fonts/ -share/xine/libxine1/fonts/cc-16.xinefont.gz -share/xine/libxine1/fonts/cc-20.xinefont.gz -share/xine/libxine1/fonts/cc-24.xinefont.gz -share/xine/libxine1/fonts/cc-32.xinefont.gz -share/xine/libxine1/fonts/cc-48.xinefont.gz -share/xine/libxine1/fonts/cc-64.xinefont.gz -share/xine/libxine1/fonts/cci-16.xinefont.gz -share/xine/libxine1/fonts/cci-20.xinefont.gz -share/xine/libxine1/fonts/cci-24.xinefont.gz -share/xine/libxine1/fonts/cci-32.xinefont.gz -share/xine/libxine1/fonts/cci-48.xinefont.gz -share/xine/libxine1/fonts/cci-64.xinefont.gz -share/xine/libxine1/fonts/cetus-16.xinefont.gz -share/xine/libxine1/fonts/cetus-20.xinefont.gz -share/xine/libxine1/fonts/cetus-24.xinefont.gz -share/xine/libxine1/fonts/cetus-32.xinefont.gz -share/xine/libxine1/fonts/cetus-48.xinefont.gz -share/xine/libxine1/fonts/cetus-64.xinefont.gz -share/xine/libxine1/fonts/mono-16.xinefont.gz -share/xine/libxine1/fonts/mono-20.xinefont.gz -share/xine/libxine1/fonts/mono-24.xinefont.gz -share/xine/libxine1/fonts/mono-32.xinefont.gz -share/xine/libxine1/fonts/mono-48.xinefont.gz -share/xine/libxine1/fonts/mono-64.xinefont.gz -share/xine/libxine1/fonts/sans-16.xinefont.gz -share/xine/libxine1/fonts/sans-20.xinefont.gz -share/xine/libxine1/fonts/sans-24.xinefont.gz -share/xine/libxine1/fonts/sans-32.xinefont.gz -share/xine/libxine1/fonts/sans-48.xinefont.gz -share/xine/libxine1/fonts/sans-64.xinefont.gz -share/xine/libxine1/fonts/serif-16.xinefont.gz -share/xine/libxine1/fonts/serif-20.xinefont.gz -share/xine/libxine1/fonts/serif-24.xinefont.gz -share/xine/libxine1/fonts/serif-32.xinefont.gz -share/xine/libxine1/fonts/serif-48.xinefont.gz -share/xine/libxine1/fonts/serif-64.xinefont.gz Index: pkg/PLIST-arts =================================================================== RCS file: pkg/PLIST-arts diff -N pkg/PLIST-arts --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/PLIST-arts 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1,2 @@ [EMAIL PROTECTED] $OpenBSD$ +lib/xine/plugins/${V}/xineplug_ao_out_arts.so Index: pkg/PLIST-esd =================================================================== RCS file: pkg/PLIST-esd diff -N pkg/PLIST-esd --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/PLIST-esd 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1,2 @@ [EMAIL PROTECTED] $OpenBSD: PLIST,v 1.3 2007/06/13 10:58:29 jakemsr Exp $ +lib/xine/plugins/${V}/xineplug_ao_out_esd.so Index: pkg/PLIST-main =================================================================== RCS file: pkg/PLIST-main diff -N pkg/PLIST-main --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg/PLIST-main 1 Nov 2007 01:47:50 -0000 @@ -0,0 +1,196 @@ [EMAIL PROTECTED] $OpenBSD: PLIST,v 1.3 2007/06/13 10:58:29 jakemsr Exp $ +%%i386%% +bin/xine-config +include/xine/ +include/xine.h +include/xine/alphablend.h +include/xine/array.h +include/xine/attributes.h +include/xine/audio_decoder.h +include/xine/audio_out.h +include/xine/broadcaster.h +include/xine/buffer.h +include/xine/compat.h +include/xine/configfile.h +include/xine/demux.h +include/xine/info_helper.h +include/xine/input_plugin.h +include/xine/io_helper.h +include/xine/list.h +include/xine/metronom.h +include/xine/os_types.h +include/xine/osd.h +include/xine/plugin_catalog.h +include/xine/pool.h +include/xine/post.h +include/xine/refcounter.h +include/xine/resample.h +include/xine/ring_buffer.h +include/xine/scratch.h +include/xine/sorted_array.h +include/xine/spu_decoder.h +include/xine/video_decoder.h +include/xine/video_out.h +include/xine/video_overlay.h +include/xine/vo_scale.h +include/xine/xine_buffer.h +include/xine/xine_internal.h +include/xine/xine_plugin.h +include/xine/xineintl.h +include/xine/xineutils.h +include/xine/xmllexer.h +include/xine/xmlparser.h +lib/libxine.la [EMAIL PROTECTED] lib/libxine.so.${LIBxine_VERSION} +lib/pkgconfig/libxine.pc +lib/xine/ +lib/xine/plugins/ +lib/xine/plugins/${V}/ +lib/xine/plugins/${V}/mime.types +lib/xine/plugins/${V}/post/ +lib/xine/plugins/${V}/post/xineplug_post_audio_filters.so +lib/xine/plugins/${V}/post/xineplug_post_goom.so +lib/xine/plugins/${V}/post/xineplug_post_mosaico.so +lib/xine/plugins/${V}/post/xineplug_post_planar.so +lib/xine/plugins/${V}/post/xineplug_post_switch.so +lib/xine/plugins/${V}/post/xineplug_post_tvtime.so +lib/xine/plugins/${V}/post/xineplug_post_visualizations.so [EMAIL PROTECTED] lib/xine/plugins/${V}/vidix/ +lib/xine/plugins/${V}/xineplug_ao_out_file.so +lib/xine/plugins/${V}/xineplug_ao_out_none.so +lib/xine/plugins/${V}/xineplug_ao_out_sun.so +lib/xine/plugins/${V}/xineplug_decode_a52.so +lib/xine/plugins/${V}/xineplug_decode_bitplane.so +lib/xine/plugins/${V}/xineplug_decode_dts.so +lib/xine/plugins/${V}/xineplug_decode_dvaudio.so +lib/xine/plugins/${V}/xineplug_decode_faad.so +lib/xine/plugins/${V}/xineplug_decode_ff.so +lib/xine/plugins/${V}/xineplug_decode_gsm610.so +lib/xine/plugins/${V}/xineplug_decode_lpcm.so +lib/xine/plugins/${V}/xineplug_decode_mad.so +lib/xine/plugins/${V}/xineplug_decode_mpc.so +lib/xine/plugins/${V}/xineplug_decode_mpeg2.so +lib/xine/plugins/${V}/xineplug_decode_nsf.so +lib/xine/plugins/${V}/xineplug_decode_real.so +lib/xine/plugins/${V}/xineplug_decode_rgb.so +lib/xine/plugins/${V}/xineplug_decode_speex.so +lib/xine/plugins/${V}/xineplug_decode_spu.so +lib/xine/plugins/${V}/xineplug_decode_spucc.so +lib/xine/plugins/${V}/xineplug_decode_spucmml.so +lib/xine/plugins/${V}/xineplug_decode_spudvb.so +lib/xine/plugins/${V}/xineplug_decode_sputext.so +lib/xine/plugins/${V}/xineplug_decode_theora.so +lib/xine/plugins/${V}/xineplug_decode_vorbis.so +lib/xine/plugins/${V}/xineplug_decode_yuv.so +lib/xine/plugins/${V}/xineplug_dmx_asf.so +lib/xine/plugins/${V}/xineplug_dmx_audio.so +lib/xine/plugins/${V}/xineplug_dmx_avi.so +lib/xine/plugins/${V}/xineplug_dmx_fli.so +lib/xine/plugins/${V}/xineplug_dmx_flv.so +lib/xine/plugins/${V}/xineplug_dmx_games.so +lib/xine/plugins/${V}/xineplug_dmx_iff.so +lib/xine/plugins/${V}/xineplug_dmx_matroska.so +lib/xine/plugins/${V}/xineplug_dmx_mng.so +lib/xine/plugins/${V}/xineplug_dmx_mpeg.so +lib/xine/plugins/${V}/xineplug_dmx_mpeg_block.so +lib/xine/plugins/${V}/xineplug_dmx_mpeg_elem.so +lib/xine/plugins/${V}/xineplug_dmx_mpeg_pes.so +lib/xine/plugins/${V}/xineplug_dmx_mpeg_ts.so +lib/xine/plugins/${V}/xineplug_dmx_nsv.so +lib/xine/plugins/${V}/xineplug_dmx_ogg.so +lib/xine/plugins/${V}/xineplug_dmx_pva.so +lib/xine/plugins/${V}/xineplug_dmx_qt.so +lib/xine/plugins/${V}/xineplug_dmx_rawdv.so +lib/xine/plugins/${V}/xineplug_dmx_real.so +lib/xine/plugins/${V}/xineplug_dmx_slave.so +lib/xine/plugins/${V}/xineplug_dmx_sputext.so +lib/xine/plugins/${V}/xineplug_dmx_yuv4mpeg2.so +lib/xine/plugins/${V}/xineplug_dmx_yuv_frames.so +lib/xine/plugins/${V}/xineplug_flac.so +lib/xine/plugins/${V}/xineplug_inp_cdda.so +lib/xine/plugins/${V}/xineplug_inp_dvb.so +lib/xine/plugins/${V}/xineplug_inp_dvd.so +lib/xine/plugins/${V}/xineplug_inp_file.so +lib/xine/plugins/${V}/xineplug_inp_http.so +lib/xine/plugins/${V}/xineplug_inp_mms.so +lib/xine/plugins/${V}/xineplug_inp_net.so +lib/xine/plugins/${V}/xineplug_inp_pnm.so +lib/xine/plugins/${V}/xineplug_inp_rtp.so +lib/xine/plugins/${V}/xineplug_inp_rtsp.so +lib/xine/plugins/${V}/xineplug_inp_stdin_fifo.so +lib/xine/plugins/${V}/xineplug_vo_out_none.so +lib/xine/plugins/${V}/xineplug_vo_out_sdl.so +lib/xine/plugins/${V}/xineplug_vo_out_xshm.so +lib/xine/plugins/${V}/xineplug_vo_out_xv.so [EMAIL PROTECTED] man/man1/xine-config.1 [EMAIL PROTECTED] man/man5/xine.5 +share/aclocal/xine.m4 +share/doc/xine-lib/ +share/doc/xine-lib/README +share/doc/xine-lib/README.MINGWCROSS +share/doc/xine-lib/README.WIN32 +share/doc/xine-lib/README.dvb +share/doc/xine-lib/README.dxr3 +share/doc/xine-lib/README.freebsd +share/doc/xine-lib/README.irix +share/doc/xine-lib/README.network_dvd +share/doc/xine-lib/README.opengl +share/doc/xine-lib/README.solaris +share/doc/xine-lib/README.syncfb +share/doc/xine-lib/README_xxmc.html +share/doc/xine-lib/faq.html +share/doc/xine-lib/faq.txt +share/doc/xine-lib/hackersguide/ +share/doc/xine-lib/hackersguide/architecture.png +share/doc/xine-lib/hackersguide/hackersguide.html +share/doc/xine-lib/hackersguide/library.png +share/doc/xine-lib/hackersguide/overlays.png +share/doc/xine-lib/hackersguide/post_frame.png +share/locale/cs/LC_MESSAGES/libxine1.mo +share/locale/de/LC_MESSAGES/libxine1.mo +share/locale/es/LC_MESSAGES/libxine1.mo +share/locale/eu/LC_MESSAGES/libxine1.mo +share/locale/fr/LC_MESSAGES/libxine1.mo +share/locale/it/LC_MESSAGES/libxine1.mo +share/locale/pl/LC_MESSAGES/libxine1.mo +share/locale/pt_BR/LC_MESSAGES/libxine1.mo +share/locale/sk/LC_MESSAGES/libxine1.mo +share/xine/ +share/xine/libxine1/ +share/xine/libxine1/fonts/ +share/xine/libxine1/fonts/cc-16.xinefont.gz +share/xine/libxine1/fonts/cc-20.xinefont.gz +share/xine/libxine1/fonts/cc-24.xinefont.gz +share/xine/libxine1/fonts/cc-32.xinefont.gz +share/xine/libxine1/fonts/cc-48.xinefont.gz +share/xine/libxine1/fonts/cc-64.xinefont.gz +share/xine/libxine1/fonts/cci-16.xinefont.gz +share/xine/libxine1/fonts/cci-20.xinefont.gz +share/xine/libxine1/fonts/cci-24.xinefont.gz +share/xine/libxine1/fonts/cci-32.xinefont.gz +share/xine/libxine1/fonts/cci-48.xinefont.gz +share/xine/libxine1/fonts/cci-64.xinefont.gz +share/xine/libxine1/fonts/cetus-16.xinefont.gz +share/xine/libxine1/fonts/cetus-20.xinefont.gz +share/xine/libxine1/fonts/cetus-24.xinefont.gz +share/xine/libxine1/fonts/cetus-32.xinefont.gz +share/xine/libxine1/fonts/cetus-48.xinefont.gz +share/xine/libxine1/fonts/cetus-64.xinefont.gz +share/xine/libxine1/fonts/mono-16.xinefont.gz +share/xine/libxine1/fonts/mono-20.xinefont.gz +share/xine/libxine1/fonts/mono-24.xinefont.gz +share/xine/libxine1/fonts/mono-32.xinefont.gz +share/xine/libxine1/fonts/mono-48.xinefont.gz +share/xine/libxine1/fonts/mono-64.xinefont.gz +share/xine/libxine1/fonts/sans-16.xinefont.gz +share/xine/libxine1/fonts/sans-20.xinefont.gz +share/xine/libxine1/fonts/sans-24.xinefont.gz +share/xine/libxine1/fonts/sans-32.xinefont.gz +share/xine/libxine1/fonts/sans-48.xinefont.gz +share/xine/libxine1/fonts/sans-64.xinefont.gz +share/xine/libxine1/fonts/serif-16.xinefont.gz +share/xine/libxine1/fonts/serif-20.xinefont.gz +share/xine/libxine1/fonts/serif-24.xinefont.gz +share/xine/libxine1/fonts/serif-32.xinefont.gz +share/xine/libxine1/fonts/serif-48.xinefont.gz +share/xine/libxine1/fonts/serif-64.xinefont.gz
