Add the files once gone to Attic
This commit is contained in:
parent
adb775d029
commit
81398c5495
8 changed files with 957 additions and 0 deletions
10
vlc/DESCR
Normal file
10
vlc/DESCR
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
VideoLAN is a project of French students from the Ecole Centrale Paris
|
||||||
|
and developers from all over the world. Its main goals is MPEG streaming
|
||||||
|
on a network, but it also features a standalone multimedia player. The
|
||||||
|
VideoLAN Server can stream video read from a hard disk, a DVD player,
|
||||||
|
a satellite card or an MPEG 2 compression card, and unicast or multicast
|
||||||
|
it on a network. The VideoLAN Client can read the stream from the network
|
||||||
|
and display it. It can also be used to display video read locally on
|
||||||
|
the computer : DVDs, VCDs, MPEG and DivX files and from a satellite
|
||||||
|
card. It is multi-plaform : Linux, Windows, Mac OS X, BeOS, BSD, Solaris,
|
||||||
|
QNX, iPaq... The VideoLAN Client and Server now have a full IPv6 support.
|
163
vlc/Makefile
Normal file
163
vlc/Makefile
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
# $NetBSD: Makefile,v 1.13 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
#
|
||||||
|
|
||||||
|
DISTNAME= vlc-${VLC_VERSION}
|
||||||
|
CATEGORIES= multimedia
|
||||||
|
MASTER_SITES= http://download.videolan.org/pub/videolan/vlc/${VLC_VERSION}/
|
||||||
|
EXTRACT_SUFX= .tar.bz2
|
||||||
|
|
||||||
|
VLC_VERSION= 1.1.5
|
||||||
|
|
||||||
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||||
|
HOMEPAGE= http://www.videolan.org/
|
||||||
|
COMMENT= VLC media player and streaming server
|
||||||
|
LICENSE= gnu-gpl-v2
|
||||||
|
|
||||||
|
CONFLICTS= vlc07-[0-9]* vlc08-[0-9]*
|
||||||
|
|
||||||
|
PKG_DESTDIR_SUPPORT= user-destdir
|
||||||
|
USE_LIBTOOL= yes
|
||||||
|
USE_TOOLS+= gmake perl pkg-config \
|
||||||
|
autoconf automake autoreconf
|
||||||
|
USE_PKGLOCALEDIR= yes
|
||||||
|
GNU_CONFIGURE= yes
|
||||||
|
PTHREAD_OPTS+= require
|
||||||
|
USE_LANGUAGES= c99 c++
|
||||||
|
PLIST_VARS+= x86simd altivec v4l2 vcd cdda
|
||||||
|
|
||||||
|
.include "../../mk/bsd.prefs.mk"
|
||||||
|
.include "options.mk"
|
||||||
|
|
||||||
|
.if ${OPSYS} == "NetBSD"
|
||||||
|
CONFIGURE_ARGS+= --disable-vcd
|
||||||
|
.else
|
||||||
|
PLIST.vcd= yes
|
||||||
|
# This may need a closer look.
|
||||||
|
PLIST.cdda= yes
|
||||||
|
.endif
|
||||||
|
|
||||||
|
BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.0
|
||||||
|
BUILDLINK_API_DEPENDS.vcdimager+= vcdimager>=0.7.20nb1
|
||||||
|
|
||||||
|
CONFIGURE_ARGS+= --disable-speex # needs unstable 1.1.x branch [1.2 in pkgsrc]
|
||||||
|
CONFIGURE_ARGS+= --disable-smb
|
||||||
|
|
||||||
|
CONFIGURE_ARGS+= --enable-cddax \
|
||||||
|
--enable-dvdread \
|
||||||
|
--enable-flac \
|
||||||
|
--enable-live555 \
|
||||||
|
--enable-theora \
|
||||||
|
--enable-lua=no
|
||||||
|
|
||||||
|
# Build optimalized modules
|
||||||
|
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
||||||
|
PLIST.x86simd= yes
|
||||||
|
CONFIGURE_ARGS+= --enable-mmx \
|
||||||
|
--enable-sse
|
||||||
|
.endif
|
||||||
|
.if ${MACHINE_ARCH} == "powerpc"
|
||||||
|
PLIST.altivec= yes
|
||||||
|
CONFIGURE_ARGS+= --enable-altivec
|
||||||
|
.endif
|
||||||
|
|
||||||
|
# Enable when cleanly builds
|
||||||
|
.if exists(/usr/include/linux/videodev2.h) # || exists(/usr/include/sys/videoio.h)
|
||||||
|
CONFIGURE_ARGS+= --enable-v4l2
|
||||||
|
PLIST.v4l2= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-v4l2
|
||||||
|
.endif
|
||||||
|
|
||||||
|
INSTALLATION_DIRS+= share/vlc/http/dialogs share/vlc/http/images \
|
||||||
|
share/vlc/http/js share/vlc/http/old \
|
||||||
|
share/vlc/http/old/admin share/vlc/http/old/vlm \
|
||||||
|
share/vlc/http/requests share/vlc/osdmenu/default \
|
||||||
|
share/vlc/osdmenu/default/selected \
|
||||||
|
share/vlc/osdmenu/default/selection \
|
||||||
|
share/vlc/osdmenu/default/volume \
|
||||||
|
share/vlc/osdmenu/dvd/selected \
|
||||||
|
share/vlc/osdmenu/dvd/volume \
|
||||||
|
share/vlc/osdmenu/dvd/unselect \
|
||||||
|
share/vlc/osdmenu/dvd/selection \
|
||||||
|
share/vlc/skins2 share/vlc/skins2/fonts \
|
||||||
|
${PKGMANDIR}/man1
|
||||||
|
pre-configure:
|
||||||
|
cd ${WRKSRC} && autoreconf -f
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/doc/vlc.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/doc/vlc-config.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
||||||
|
|
||||||
|
# Let's use dejavu-ttf as it has nice unicode support
|
||||||
|
#
|
||||||
|
ORIGFNT= /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf
|
||||||
|
DEFAULT_FONT?= ${PREFIX}/lib/X11/fonts/TTF/DejaVuSans.ttf
|
||||||
|
DEPENDS+= dejavu-ttf>=2.26:../../fonts/dejavu-ttf
|
||||||
|
# libX11 should be built with xcb enabled
|
||||||
|
DEPENDS+= libX11>=1.3.5:../../x11/libX11
|
||||||
|
|
||||||
|
SUBST_CLASSES+= oss
|
||||||
|
SUBST_STAGE.oss= pre-configure
|
||||||
|
SUBST_SED.oss= -e "s,/dev/dsp,${DEVOSSAUDIO},g"
|
||||||
|
SUBST_FILES.oss+= modules/access/oss.c
|
||||||
|
SUBST_FILES.oss+= modules/audio_output/oss.c
|
||||||
|
SUBST_FILES.oss+= po/*.po
|
||||||
|
SUBST_MESSAGE.oss= Fixing hardcoded audio device.
|
||||||
|
|
||||||
|
SUBST_CLASSES+= fnt
|
||||||
|
SUBST_STAGE.fnt= pre-configure
|
||||||
|
SUBST_SED.fnt= -e "s,${ORIGFNT},${DEFAULT_FONT},"
|
||||||
|
SUBST_FILES.fnt= modules/misc/freetype.c
|
||||||
|
SUBST_MESSAGE.fnt= Fixing hardcoded paths.
|
||||||
|
|
||||||
|
REPLACE_SH+= vlc-config.in.in
|
||||||
|
|
||||||
|
# VLC embeds the build environment info to help debuging.
|
||||||
|
# Change it if it's bumped after a VLC upgrade!
|
||||||
|
#
|
||||||
|
CHECK_WRKREF_SKIP= lib/libvlccore.a \
|
||||||
|
lib/libvlccore.so \
|
||||||
|
lib/libvlccore.so.4 \
|
||||||
|
lib/libvlccore.so.4.0.1
|
||||||
|
|
||||||
|
.include "../../audio/libmpcdec/buildlink3.mk"
|
||||||
|
.include "../../audio/flac/buildlink3.mk"
|
||||||
|
.include "../../audio/libmad/buildlink3.mk"
|
||||||
|
.include "../../audio/libvorbis/buildlink3.mk"
|
||||||
|
.include "../../audio/liba52/buildlink3.mk"
|
||||||
|
.include "../../audio/libcddb/buildlink3.mk"
|
||||||
|
.include "../../audio/libid3tag/buildlink3.mk"
|
||||||
|
.include "../../audio/libdca/buildlink3.mk"
|
||||||
|
.include "../../audio/taglib/buildlink3.mk"
|
||||||
|
.include "../../audio/libcddb/buildlink3.mk"
|
||||||
|
.include "../../misc/libcdio/buildlink3.mk"
|
||||||
|
|
||||||
|
.include "../../mk/jpeg.buildlink3.mk"
|
||||||
|
.include "../../net/liblive/buildlink3.mk"
|
||||||
|
.include "../../converters/fribidi/buildlink3.mk"
|
||||||
|
.include "../../devel/libebml/buildlink3.mk"
|
||||||
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
||||||
|
.include "../../devel/pcre/buildlink3.mk"
|
||||||
|
.include "../../devel/zlib/buildlink3.mk"
|
||||||
|
.include "../../textproc/libxml2/buildlink3.mk"
|
||||||
|
.include "../../security/libgcrypt/buildlink3.mk"
|
||||||
|
.include "../../security/gnutls/buildlink3.mk"
|
||||||
|
|
||||||
|
.include "../../wip/ffmpeg/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdplay/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvbpsi/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdnav/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdread/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libmatroska/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libmpeg2/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libogg/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libtheora/buildlink3.mk"
|
||||||
|
.include "../../x11/libX11/buildlink3.mk"
|
||||||
|
# needs x264_encoder_delayed_frames
|
||||||
|
BUILDLINK_API_DEPENDS.x264-devel+= x264-devel>=20100201
|
||||||
|
.include "../../wip/x264-devel/buildlink3.mk"
|
||||||
|
|
||||||
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
||||||
|
.include "../../mk/oss.buildlink3.mk"
|
||||||
|
.include "../../mk/pthread.buildlink3.mk"
|
||||||
|
.include "../../mk/bsd.pkg.mk"
|
533
vlc/PLIST
Normal file
533
vlc/PLIST
Normal file
|
@ -0,0 +1,533 @@
|
||||||
|
@comment $NetBSD: PLIST,v 1.7 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
bin/cvlc
|
||||||
|
bin/qvlc
|
||||||
|
bin/rvlc
|
||||||
|
bin/vlc
|
||||||
|
bin/vlc-wrapper
|
||||||
|
include/vlc/deprecated.h
|
||||||
|
include/vlc/libvlc.h
|
||||||
|
include/vlc/libvlc_events.h
|
||||||
|
include/vlc/libvlc_media.h
|
||||||
|
include/vlc/libvlc_media_discoverer.h
|
||||||
|
include/vlc/libvlc_media_library.h
|
||||||
|
include/vlc/libvlc_media_list.h
|
||||||
|
include/vlc/libvlc_media_list_player.h
|
||||||
|
include/vlc/libvlc_media_player.h
|
||||||
|
include/vlc/libvlc_structures.h
|
||||||
|
include/vlc/libvlc_version.h
|
||||||
|
include/vlc/libvlc_vlm.h
|
||||||
|
include/vlc/plugins/vlc_access.h
|
||||||
|
include/vlc/plugins/vlc_acl.h
|
||||||
|
include/vlc/plugins/vlc_aout.h
|
||||||
|
include/vlc/plugins/vlc_aout_mixer.h
|
||||||
|
include/vlc/plugins/vlc_arrays.h
|
||||||
|
include/vlc/plugins/vlc_art_finder.h
|
||||||
|
include/vlc/plugins/vlc_avcodec.h
|
||||||
|
include/vlc/plugins/vlc_bits.h
|
||||||
|
include/vlc/plugins/vlc_block.h
|
||||||
|
include/vlc/plugins/vlc_block_helper.h
|
||||||
|
include/vlc/plugins/vlc_charset.h
|
||||||
|
include/vlc/plugins/vlc_codec.h
|
||||||
|
include/vlc/plugins/vlc_common.h
|
||||||
|
include/vlc/plugins/vlc_config.h
|
||||||
|
include/vlc/plugins/vlc_config_cat.h
|
||||||
|
include/vlc/plugins/vlc_configuration.h
|
||||||
|
include/vlc/plugins/vlc_cpu.h
|
||||||
|
include/vlc/plugins/vlc_demux.h
|
||||||
|
include/vlc/plugins/vlc_dialog.h
|
||||||
|
include/vlc/plugins/vlc_epg.h
|
||||||
|
include/vlc/plugins/vlc_es.h
|
||||||
|
include/vlc/plugins/vlc_es_out.h
|
||||||
|
include/vlc/plugins/vlc_events.h
|
||||||
|
include/vlc/plugins/vlc_filter.h
|
||||||
|
include/vlc/plugins/vlc_fourcc.h
|
||||||
|
include/vlc/plugins/vlc_fs.h
|
||||||
|
include/vlc/plugins/vlc_gcrypt.h
|
||||||
|
include/vlc/plugins/vlc_http.h
|
||||||
|
include/vlc/plugins/vlc_httpd.h
|
||||||
|
include/vlc/plugins/vlc_image.h
|
||||||
|
include/vlc/plugins/vlc_inhibit.h
|
||||||
|
include/vlc/plugins/vlc_input.h
|
||||||
|
include/vlc/plugins/vlc_input_item.h
|
||||||
|
include/vlc/plugins/vlc_main.h
|
||||||
|
include/vlc/plugins/vlc_md5.h
|
||||||
|
include/vlc/plugins/vlc_messages.h
|
||||||
|
include/vlc/plugins/vlc_meta.h
|
||||||
|
include/vlc/plugins/vlc_modules.h
|
||||||
|
include/vlc/plugins/vlc_mouse.h
|
||||||
|
include/vlc/plugins/vlc_mtime.h
|
||||||
|
include/vlc/plugins/vlc_objects.h
|
||||||
|
include/vlc/plugins/vlc_picture.h
|
||||||
|
include/vlc/plugins/vlc_picture_fifo.h
|
||||||
|
include/vlc/plugins/vlc_picture_pool.h
|
||||||
|
include/vlc/plugins/vlc_playlist.h
|
||||||
|
include/vlc/plugins/vlc_plugin.h
|
||||||
|
include/vlc/plugins/vlc_probe.h
|
||||||
|
include/vlc/plugins/vlc_rand.h
|
||||||
|
include/vlc/plugins/vlc_services_discovery.h
|
||||||
|
include/vlc/plugins/vlc_sout.h
|
||||||
|
include/vlc/plugins/vlc_sql.h
|
||||||
|
include/vlc/plugins/vlc_stream.h
|
||||||
|
include/vlc/plugins/vlc_strings.h
|
||||||
|
include/vlc/plugins/vlc_subpicture.h
|
||||||
|
include/vlc/plugins/vlc_threads.h
|
||||||
|
include/vlc/plugins/vlc_url.h
|
||||||
|
include/vlc/plugins/vlc_variables.h
|
||||||
|
include/vlc/plugins/vlc_video_splitter.h
|
||||||
|
include/vlc/plugins/vlc_vlm.h
|
||||||
|
include/vlc/plugins/vlc_vout.h
|
||||||
|
include/vlc/plugins/vlc_vout_display.h
|
||||||
|
include/vlc/plugins/vlc_vout_opengl.h
|
||||||
|
include/vlc/plugins/vlc_vout_window.h
|
||||||
|
include/vlc/plugins/vlc_xlib.h
|
||||||
|
include/vlc/plugins/vlc_xml.h
|
||||||
|
include/vlc/vlc.h
|
||||||
|
lib/libvlc.la
|
||||||
|
lib/libvlccore.la
|
||||||
|
lib/pkgconfig/libvlc.pc
|
||||||
|
lib/pkgconfig/vlc-plugin.pc
|
||||||
|
lib/vlc/plugins/3dnow/libmemcpy3dn_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_attachment_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_avio_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_bd_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_fake_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_ftp_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_http_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_imem_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_mmap_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_mms_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_oss_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_tcp_plugin.la
|
||||||
|
lib/vlc/plugins/access/libaccess_udp_plugin.la
|
||||||
|
lib/vlc/plugins/access/libdvdnav_plugin.la
|
||||||
|
lib/vlc/plugins/access/libdvdread_plugin.la
|
||||||
|
lib/vlc/plugins/access/libfilesystem_plugin.la
|
||||||
|
lib/vlc/plugins/access/librtp_plugin.la
|
||||||
|
lib/vlc/plugins/access/libxcb_screen_plugin.la
|
||||||
|
lib/vlc/plugins/access/libzip_plugin.la
|
||||||
|
lib/vlc/plugins/access_output/libaccess_output_dummy_plugin.la
|
||||||
|
lib/vlc/plugins/access_output/libaccess_output_file_plugin.la
|
||||||
|
lib/vlc/plugins/access_output/libaccess_output_http_plugin.la
|
||||||
|
lib/vlc/plugins/access_output/libaccess_output_udp_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/liba52tofloat32_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/liba52tospdif_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libaudio_format_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libaudiobargraph_a_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libbandlimited_resampler_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libchorus_flanger_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libconverter_fixed_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libdolby_surround_decoder_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libdtstofloat32_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libdtstospdif_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libequalizer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libheadphone_channel_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libmono_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libmpgatofixed32_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libnormvol_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libparam_eq_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libscaletempo_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libsimple_channel_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libspatializer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libtrivial_channel_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_filter/libugly_resampler_plugin.la
|
||||||
|
lib/vlc/plugins/audio_mixer/libfloat32_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_mixer/libspdif_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_mixer/libtrivial_mixer_plugin.la
|
||||||
|
lib/vlc/plugins/audio_output/libaout_file_plugin.la
|
||||||
|
lib/vlc/plugins/audio_output/liboss_plugin.la
|
||||||
|
lib/vlc/plugins/audio_output/libpulse_plugin.la
|
||||||
|
lib/vlc/plugins/codec/liba52_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libadpcm_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libaes3_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libaraw_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libavcodec_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libcc_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libcdg_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libcvdsub_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libdts_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libdvbsub_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libfake_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libflac_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libinvmem_plugin.la
|
||||||
|
lib/vlc/plugins/codec/liblibmpeg2_plugin.la
|
||||||
|
lib/vlc/plugins/codec/liblpcm_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libmpeg_audio_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libpng_plugin.la
|
||||||
|
lib/vlc/plugins/codec/librawvideo_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libspudec_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libsubsdec_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libsubsusf_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libsvcdsub_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libt140_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libtelx_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libtheora_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libvorbis_plugin.la
|
||||||
|
lib/vlc/plugins/codec/libx264_plugin.la
|
||||||
|
lib/vlc/plugins/control/libgestures_plugin.la
|
||||||
|
lib/vlc/plugins/control/libglobalhotkeys_plugin.la
|
||||||
|
lib/vlc/plugins/control/libhotkeys_plugin.la
|
||||||
|
lib/vlc/plugins/control/libmotion_plugin.la
|
||||||
|
lib/vlc/plugins/control/libnetsync_plugin.la
|
||||||
|
lib/vlc/plugins/control/liboldhttp_plugin.la
|
||||||
|
lib/vlc/plugins/control/liboldrc_plugin.la
|
||||||
|
lib/vlc/plugins/control/liboldtelnet_plugin.la
|
||||||
|
lib/vlc/plugins/control/libsignals_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libaiff_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libasf_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libau_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libavformat_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libavi_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libdemux_cdg_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libdemuxdump_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libdirac_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libes_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libflacsys_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libh264_plugin.la
|
||||||
|
lib/vlc/plugins/demux/liblive555_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libmjpeg_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libmkv_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libmp4_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libmpc_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libmpgv_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libnsc_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libnsv_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libnuv_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libogg_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libplaylist_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libps_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libpva_plugin.la
|
||||||
|
lib/vlc/plugins/demux/librawaud_plugin.la
|
||||||
|
lib/vlc/plugins/demux/librawdv_plugin.la
|
||||||
|
lib/vlc/plugins/demux/librawvid_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libreal_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libsmf_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libsubtitle_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libts_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libtta_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libty_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libvc1_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libvobsub_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libvoc_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libwav_plugin.la
|
||||||
|
lib/vlc/plugins/demux/libxa_plugin.la
|
||||||
|
lib/vlc/plugins/gui/libqt4_plugin.la
|
||||||
|
lib/vlc/plugins/meta_engine/libfolder_plugin.la
|
||||||
|
lib/vlc/plugins/meta_engine/libtaglib_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libaudioscrobbler_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libdummy_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libexport_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libfreetype_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libgnutls_plugin.la
|
||||||
|
lib/vlc/plugins/misc/liblogger_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libosd_parser_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libstats_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libvod_rtsp_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libxdg_screensaver_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libxml_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libxscreensaver_plugin.la
|
||||||
|
lib/vlc/plugins/misc/libxtag_plugin.la
|
||||||
|
lib/vlc/plugins/mmx/libi420_rgb_mmx_plugin.la
|
||||||
|
lib/vlc/plugins/mmx/libi420_yuy2_mmx_plugin.la
|
||||||
|
lib/vlc/plugins/mmx/libi422_yuy2_mmx_plugin.la
|
||||||
|
lib/vlc/plugins/mmx/libmemcpymmx_plugin.la
|
||||||
|
lib/vlc/plugins/mmxext/libmemcpymmxext_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_asf_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_avi_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_dummy_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_mp4_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_mpjpeg_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_ogg_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_ps_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_ts_plugin.la
|
||||||
|
lib/vlc/plugins/mux/libmux_wav_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_copy_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_dirac_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_flac_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_h264_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_mlp_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_mpeg4audio_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_mpeg4video_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_mpegvideo_plugin.la
|
||||||
|
lib/vlc/plugins/packetizer/libpacketizer_vc1_plugin.la
|
||||||
|
lib/vlc/plugins/services_discovery/libmediadirs_plugin.la
|
||||||
|
lib/vlc/plugins/services_discovery/libpodcast_plugin.la
|
||||||
|
lib/vlc/plugins/services_discovery/libsap_plugin.la
|
||||||
|
lib/vlc/plugins/services_discovery/libxcb_apps_plugin.la
|
||||||
|
lib/vlc/plugins/sse2/libi420_rgb_sse2_plugin.la
|
||||||
|
lib/vlc/plugins/sse2/libi420_yuy2_sse2_plugin.la
|
||||||
|
lib/vlc/plugins/sse2/libi422_yuy2_sse2_plugin.la
|
||||||
|
lib/vlc/plugins/stream_filter/libdecomp_plugin.la
|
||||||
|
lib/vlc/plugins/stream_filter/libstream_filter_rar_plugin.la
|
||||||
|
lib/vlc/plugins/stream_filter/libstream_filter_record_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_autodel_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_bridge_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_description_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_display_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_dummy_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_duplicate_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_es_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_gather_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_mosaic_bridge_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_raop_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_record_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_rtp_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_smem_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_standard_plugin.la
|
||||||
|
lib/vlc/plugins/stream_out/libstream_out_transcode_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libgrey_yuv_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libi420_rgb_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libi420_yuy2_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libi422_i420_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libi422_yuy2_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libyuy2_i420_plugin.la
|
||||||
|
lib/vlc/plugins/video_chroma/libyuy2_i422_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libadjust_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libalphamask_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libaudiobargraph_v_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libball_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libblend_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libblendbench_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libbluescreen_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libcanvas_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libchain_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libclone_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libcolorthres_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libcrop_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libcroppadd_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libdeinterlace_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libdynamicoverlay_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/liberase_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libextract_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libgaussianblur_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libgradient_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libgrain_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libinvert_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/liblogo_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmagnify_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmarq_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmirror_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmosaic_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmotionblur_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libmotiondetect_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libnoise_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libosdmenu_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libpanoramix_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libpostproc_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libpsychedelic_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libpuzzle_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libremoteosd_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libripple_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/librotate_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/librss_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/librv32_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libscale_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libscene_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libsharpen_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libswscale_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libtransform_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libvideo_filter_wrapper_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libwall_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libwave_plugin.la
|
||||||
|
lib/vlc/plugins/video_filter/libyuvp_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libsnapshot_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libvmem_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libvout_wrapper_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libxcb_glx_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libxcb_window_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libxcb_x11_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libxcb_xv_plugin.la
|
||||||
|
lib/vlc/plugins/video_output/libyuv_plugin.la
|
||||||
|
lib/vlc/plugins/visualization/libvisual_plugin.la
|
||||||
|
lib/vlc/vlc-cache-gen
|
||||||
|
man/man1/vlc-config.1
|
||||||
|
man/man1/vlc-wrapper.1
|
||||||
|
man/man1/vlc.1
|
||||||
|
share/applications/vlc.desktop
|
||||||
|
share/doc/vlc/bugreport-howto.txt
|
||||||
|
share/doc/vlc/fortunes.txt
|
||||||
|
share/doc/vlc/intf-vcd.txt
|
||||||
|
share/icons/hicolor/128x128/apps/vlc-christmas.png
|
||||||
|
share/icons/hicolor/128x128/apps/vlc.png
|
||||||
|
share/icons/hicolor/16x16/apps/vlc.png
|
||||||
|
share/icons/hicolor/16x16/apps/vlc.xpm
|
||||||
|
share/icons/hicolor/256x256/apps/vlc.png
|
||||||
|
share/icons/hicolor/32x32/apps/vlc-christmas.xpm
|
||||||
|
share/icons/hicolor/32x32/apps/vlc.png
|
||||||
|
share/icons/hicolor/32x32/apps/vlc.xpm
|
||||||
|
share/icons/hicolor/48x48/apps/vlc-christmas.png
|
||||||
|
share/icons/hicolor/48x48/apps/vlc.png
|
||||||
|
share/kde4/apps/solid/actions/vlc-opencda.desktop
|
||||||
|
share/kde4/apps/solid/actions/vlc-opendvd.desktop
|
||||||
|
share/kde4/apps/solid/actions/vlc-openvcd.desktop
|
||||||
|
share/locale/af/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ar/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ast/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/be/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/bg/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/bn/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ca/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ckb/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/co/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/cs/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/da/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/de/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/el/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/en_GB/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/es/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/et/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/eu/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/fa/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/fi/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/fr/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/fur/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/gl/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/he/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/hi/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/hr/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/hu/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/hy/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/id/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/it/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ja/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ka/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/kk/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/km/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ko/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/lt/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/lv/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/mk/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ml/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/mn/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ms/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/my/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/nb/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ne/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/nl/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/nn/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/oc/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/pa/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/pl/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ps/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/pt_BR/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/pt_PT/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ro/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ru/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/si/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/sk/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/sl/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/sq/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/sr/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/sv/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/ta/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/tet/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/th/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/tl/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/tr/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/uk/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/vi/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/wa/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/zh_CN/LC_MESSAGES/vlc.mo
|
||||||
|
share/locale/zh_TW/LC_MESSAGES/vlc.mo
|
||||||
|
share/vlc/http/.hosts
|
||||||
|
share/vlc/http/dialogs/.hosts
|
||||||
|
share/vlc/http/dialogs/browse
|
||||||
|
share/vlc/http/dialogs/footer
|
||||||
|
share/vlc/http/dialogs/input
|
||||||
|
share/vlc/http/dialogs/main
|
||||||
|
share/vlc/http/dialogs/mosaic
|
||||||
|
share/vlc/http/dialogs/playlist
|
||||||
|
share/vlc/http/dialogs/sout
|
||||||
|
share/vlc/http/dialogs/vlm
|
||||||
|
share/vlc/http/favicon.ico
|
||||||
|
share/vlc/http/flash.html
|
||||||
|
share/vlc/http/iehacks.css
|
||||||
|
share/vlc/http/images/delete.png
|
||||||
|
share/vlc/http/images/delete_small.png
|
||||||
|
share/vlc/http/images/eject.png
|
||||||
|
share/vlc/http/images/empty.png
|
||||||
|
share/vlc/http/images/fullscreen.png
|
||||||
|
share/vlc/http/images/help.png
|
||||||
|
share/vlc/http/images/info.png
|
||||||
|
share/vlc/http/images/loop.png
|
||||||
|
share/vlc/http/images/minus.png
|
||||||
|
share/vlc/http/images/next.png
|
||||||
|
share/vlc/http/images/pause.png
|
||||||
|
share/vlc/http/images/play.png
|
||||||
|
share/vlc/http/images/playlist.png
|
||||||
|
share/vlc/http/images/playlist_small.png
|
||||||
|
share/vlc/http/images/plus.png
|
||||||
|
share/vlc/http/images/prev.png
|
||||||
|
share/vlc/http/images/refresh.png
|
||||||
|
share/vlc/http/images/repeat.png
|
||||||
|
share/vlc/http/images/sd.png
|
||||||
|
share/vlc/http/images/shuffle.png
|
||||||
|
share/vlc/http/images/slider_bar.png
|
||||||
|
share/vlc/http/images/slider_left.png
|
||||||
|
share/vlc/http/images/slider_point.png
|
||||||
|
share/vlc/http/images/slider_right.png
|
||||||
|
share/vlc/http/images/slow.png
|
||||||
|
share/vlc/http/images/snapshot.png
|
||||||
|
share/vlc/http/images/sort.png
|
||||||
|
share/vlc/http/images/sout.png
|
||||||
|
share/vlc/http/images/speaker.png
|
||||||
|
share/vlc/http/images/speaker_mute.png
|
||||||
|
share/vlc/http/images/stop.png
|
||||||
|
share/vlc/http/images/vlc16x16.png
|
||||||
|
share/vlc/http/images/volume_down.png
|
||||||
|
share/vlc/http/images/volume_up.png
|
||||||
|
share/vlc/http/images/white.png
|
||||||
|
share/vlc/http/images/white_cross_small.png
|
||||||
|
share/vlc/http/index.html
|
||||||
|
share/vlc/http/js/functions.js
|
||||||
|
share/vlc/http/js/mosaic.js
|
||||||
|
share/vlc/http/js/vlm.js
|
||||||
|
share/vlc/http/mosaic.html
|
||||||
|
share/vlc/http/requests/browse.xml
|
||||||
|
share/vlc/http/requests/playlist.xml
|
||||||
|
share/vlc/http/requests/readme
|
||||||
|
share/vlc/http/requests/status.xml
|
||||||
|
share/vlc/http/requests/vlm.xml
|
||||||
|
share/vlc/http/requests/vlm_cmd.xml
|
||||||
|
share/vlc/http/style.css
|
||||||
|
share/vlc/http/vlm.html
|
||||||
|
share/vlc/http/vlm_export.html
|
||||||
|
share/vlc/osdmenu/default.cfg
|
||||||
|
share/vlc/osdmenu/default/selected/bw.png
|
||||||
|
share/vlc/osdmenu/default/selected/esc.png
|
||||||
|
share/vlc/osdmenu/default/selected/fw.png
|
||||||
|
share/vlc/osdmenu/default/selected/next.png
|
||||||
|
share/vlc/osdmenu/default/selected/play_pause.png
|
||||||
|
share/vlc/osdmenu/default/selected/previous.png
|
||||||
|
share/vlc/osdmenu/default/selected/stop.png
|
||||||
|
share/vlc/osdmenu/default/selected/volume.png
|
||||||
|
share/vlc/osdmenu/default/selection/bw.png
|
||||||
|
share/vlc/osdmenu/default/selection/esc.png
|
||||||
|
share/vlc/osdmenu/default/selection/fw.png
|
||||||
|
share/vlc/osdmenu/default/selection/next.png
|
||||||
|
share/vlc/osdmenu/default/selection/play_pause.png
|
||||||
|
share/vlc/osdmenu/default/selection/previous.png
|
||||||
|
share/vlc/osdmenu/default/selection/stop.png
|
||||||
|
share/vlc/osdmenu/default/selection/volume.png
|
||||||
|
share/vlc/osdmenu/default/unselected.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_00.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_01.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_02.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_03.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_04.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_05.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_06.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_07.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_08.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_09.png
|
||||||
|
share/vlc/osdmenu/default/volume/volume_10.png
|
||||||
|
share/vlc/utils/audio-vlc-default.sh
|
||||||
|
share/vlc/utils/gnome-vlc-default.sh
|
||||||
|
share/vlc/utils/video-vlc-default.sh
|
||||||
|
share/vlc/vlc.ico
|
||||||
|
@pkgdir share/vlc/skins2/fonts
|
||||||
|
@pkgdir share/vlc/osdmenu/dvd/volume
|
||||||
|
@pkgdir share/vlc/osdmenu/dvd/unselect
|
||||||
|
@pkgdir share/vlc/osdmenu/dvd/selection
|
||||||
|
@pkgdir share/vlc/osdmenu/dvd/selected
|
||||||
|
@pkgdir share/vlc/http/old/vlm
|
||||||
|
@pkgdir share/vlc/http/old/admin
|
46
vlc/buildlink3.mk
Normal file
46
vlc/buildlink3.mk
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
# $NetBSD: buildlink3.mk,v 1.6 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
|
||||||
|
BUILDLINK_TREE+= vlc
|
||||||
|
|
||||||
|
.if !defined(VLC_BUILDLINK3_MK)
|
||||||
|
VLC_BUILDLINK3_MK:=
|
||||||
|
|
||||||
|
BUILDLINK_API_DEPENDS.vlc?= vlc>=1.0.0
|
||||||
|
BUILDLINK_ABI_DEPENDS.vlc?= vlc>=1.0.6
|
||||||
|
BUILDLINK_PKGSRCDIR.vlc?= ../../multimedia/vlc
|
||||||
|
|
||||||
|
pkgbase:= vlc
|
||||||
|
.include "../../mk/pkg-build-options.mk"
|
||||||
|
|
||||||
|
.if !empty(PKG_BUILD_OPTIONS.vlc:Mfaad)
|
||||||
|
.include "../../audio/faad2/buildlink3.mk"
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include "../../audio/flac/buildlink3.mk"
|
||||||
|
.include "../../audio/liba52/buildlink3.mk"
|
||||||
|
.include "../../audio/libcddb/buildlink3.mk"
|
||||||
|
.include "../../audio/libid3tag/buildlink3.mk"
|
||||||
|
.include "../../audio/libmad/buildlink3.mk"
|
||||||
|
.include "../../audio/libvorbis/buildlink3.mk"
|
||||||
|
.include "../../converters/fribidi/buildlink3.mk"
|
||||||
|
.include "../../devel/SDL/buildlink3.mk"
|
||||||
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
||||||
|
.include "../../devel/pcre/buildlink3.mk"
|
||||||
|
.include "../../devel/zlib/buildlink3.mk"
|
||||||
|
.include "../../graphics/SDL_image/buildlink3.mk"
|
||||||
|
.include "../../graphics/freetype2/buildlink3.mk"
|
||||||
|
.include "../../misc/libcdio/buildlink3.mk"
|
||||||
|
.include "../../wip/ffmpeg/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdplay/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvbpsi/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdnav/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libdvdread/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libmatroska/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libmpeg2/buildlink3.mk"
|
||||||
|
.include "../../multimedia/libogg/buildlink3.mk"
|
||||||
|
.include "../../textproc/libxml2/buildlink3.mk"
|
||||||
|
.include "../../x11/libXv/buildlink3.mk"
|
||||||
|
.include "../../x11/libXxf86vm/buildlink3.mk"
|
||||||
|
.endif # VLC_BUILDLINK3_MK
|
||||||
|
|
||||||
|
BUILDLINK_TREE+= -vlc
|
12
vlc/distinfo
Normal file
12
vlc/distinfo
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
$NetBSD: distinfo,v 1.8 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
|
||||||
|
SHA1 (vlc-1.1.5.tar.bz2) = 19f4b3d82afd9cfd2131447d0cc65032e7cb9e5f
|
||||||
|
RMD160 (vlc-1.1.5.tar.bz2) = b3ac38109e11e86df6049c7d7af4d484e582c586
|
||||||
|
Size (vlc-1.1.5.tar.bz2) = 24111723 bytes
|
||||||
|
SHA1 (patch-aa) = 684f7ad6a20ed6b9b8a8be2fc61836e6b471b686
|
||||||
|
SHA1 (patch-ab) = 7ed32dc2a2c092083dad3c902848ba44369eac38
|
||||||
|
SHA1 (patch-ap) = 423b571ca8a1b740812aea021e331912ba34c868
|
||||||
|
SHA1 (patch-aq) = 208b46e150540e1c2392fa110f4f317df363dfff
|
||||||
|
SHA1 (patch-ar) = 36ab587d48105a3f3afbd2c87c1043916b255ddd
|
||||||
|
SHA1 (patch-as) = b53b074b2791d7bf69d5f09c7c32d873608f3086
|
||||||
|
SHA1 (patch-configure) = 83f476cc71d795a69f787713a04471e078c0ec52
|
130
vlc/options.mk
Normal file
130
vlc/options.mk
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
# $NetBSD: options.mk,v 1.3 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
|
||||||
|
PKG_OPTIONS_VAR= PKG_OPTIONS.vlc
|
||||||
|
PKG_SUPPORTED_OPTIONS= debug faad dbus hal skins sdl pulseaudio x11 gnome
|
||||||
|
PKG_SUGGESTED_OPTIONS= x11 pulseaudio
|
||||||
|
|
||||||
|
.include "../../mk/bsd.options.mk"
|
||||||
|
|
||||||
|
PLIST_VARS+= ${PKG_SUPPORTED_OPTIONS}
|
||||||
|
|
||||||
|
## PulseAudio support
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mpulseaudio)
|
||||||
|
CONFIGURE_ARGS+= --enable-pulse
|
||||||
|
.include "../../audio/pulseaudio/buildlink3.mk"
|
||||||
|
PLIST.pulseaudio= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-pulse
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## SDL backend support
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Msdl)
|
||||||
|
.include "../../devel/SDL/buildlink3.mk"
|
||||||
|
.include "../../graphics/SDL_image/buildlink3.mk"
|
||||||
|
PLIST.sdl= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-sdl
|
||||||
|
CONFIGURE_ARGS+= --disable-sdl-image
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## gnome integration
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mgnome)
|
||||||
|
CONFIGURE_ARGS+= --enable-gnomevfs
|
||||||
|
.include "../../sysutils/gnome-vfs/buildlink3.mk"
|
||||||
|
PLIST.gnome= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-gnomevfs
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## DBUS message bus support
|
||||||
|
## also libnotify because it uses dbus
|
||||||
|
## so taking them apart would make no sense.
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mdbus)
|
||||||
|
CONFIGURE_ARGS+= --enable-dbus
|
||||||
|
.include "../../sysutils/dbus/buildlink3.mk"
|
||||||
|
CONFIGURE_ARGS+= --enable-notify
|
||||||
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
||||||
|
|
||||||
|
# telepathy needs dbus, but its also gnome-ish
|
||||||
|
.if !empty(PKG_OPTIONS:Mgnome)
|
||||||
|
.include "../../chat/libtelepathy/buildlink3.mk"
|
||||||
|
CONFIGURE_ARGS+= --enable-telepathy
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-telepathy
|
||||||
|
.endif
|
||||||
|
|
||||||
|
PLIST.dbus= yes
|
||||||
|
|
||||||
|
## HAL support (requires dbus)
|
||||||
|
.if !empty(PKG_OPTIONS:Mhal)
|
||||||
|
CONFIGURE_ARGS+= --enable-hal
|
||||||
|
.include "../../sysutils/hal/buildlink3.mk"
|
||||||
|
PLIST.hal= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-hal
|
||||||
|
.endif
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-dbus
|
||||||
|
CONFIGURE_ARGS+= --disable-hal
|
||||||
|
CONFIGURE_ARGS+= --disable-notify
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## DEBUG build or release build
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mdebug)
|
||||||
|
CONFIGURE_ARGS+= --enable-debug
|
||||||
|
CONFIGURE_ARGS+= --disable-optimizations
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --enable-release
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## SKINS frontend
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mskins)
|
||||||
|
CONFIGURE_ARGS+= --enable-skins2
|
||||||
|
PLIST.skins= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-skins2
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## X11 dependency and QT4 frontend
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mx11)
|
||||||
|
DEPENDS+= dejavu-ttf>=2.0:../../fonts/dejavu-ttf
|
||||||
|
.include "../../graphics/freetype2/buildlink3.mk"
|
||||||
|
.include "../../x11/libXv/buildlink3.mk"
|
||||||
|
.include "../../x11/libXvMC/buildlink3.mk"
|
||||||
|
.include "../../x11/libXxf86vm/buildlink3.mk"
|
||||||
|
.include "../../x11/libXdamage/buildlink3.mk"
|
||||||
|
.include "../../x11/libXinerama/buildlink3.mk"
|
||||||
|
.include "../../x11/libXpm/buildlink3.mk"
|
||||||
|
.include "../../x11/libxcb/buildlink3.mk"
|
||||||
|
.include "../../x11/xcb-util/buildlink3.mk"
|
||||||
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
||||||
|
.include "../../graphics/glu/buildlink3.mk"
|
||||||
|
.include "../../x11/qt4-libs/buildlink3.mk"
|
||||||
|
CONFIGURE_ARGS+= --enable-qt4 \
|
||||||
|
--enable-x11 \
|
||||||
|
--enable-glx \
|
||||||
|
--enable-snapshot
|
||||||
|
PLIST.x11= yes
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-x11 \
|
||||||
|
--disable-qt4 \
|
||||||
|
--disable-glx \
|
||||||
|
--disable-snapshot
|
||||||
|
.endif
|
||||||
|
|
||||||
|
## FAAD support (faad is non-redistributable)
|
||||||
|
|
||||||
|
.if !empty(PKG_OPTIONS:Mfaad)
|
||||||
|
CONFIGURE_ARGS+= --enable-faad
|
||||||
|
PLIST.faad= yes
|
||||||
|
.include "../../audio/faad2/buildlink3.mk"
|
||||||
|
.else
|
||||||
|
CONFIGURE_ARGS+= --disable-faad
|
||||||
|
.endif
|
28
vlc/patches/patch-aa
Normal file
28
vlc/patches/patch-aa
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
$NetBSD: patch-aa,v 1.6 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
|
||||||
|
--- modules/access/file.c.orig 2010-07-19 01:21:06.000000000 +0900
|
||||||
|
+++ modules/access/file.c 2011-01-04 22:05:25.000000000 +0900
|
||||||
|
@@ -52,6 +52,9 @@
|
||||||
|
#ifdef HAVE_LINUX_MAGIC_H
|
||||||
|
# include <sys/vfs.h>
|
||||||
|
# include <linux/magic.h>
|
||||||
|
+#elif defined (HAVE_FSTATVFS)
|
||||||
|
+# include <sys/statvfs.h>
|
||||||
|
+# include <sys/mount.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined( WIN32 )
|
||||||
|
@@ -90,7 +93,12 @@
|
||||||
|
#ifndef WIN32
|
||||||
|
static bool IsRemote (int fd)
|
||||||
|
{
|
||||||
|
-#if defined (HAVE_FSTATVFS) && defined (MNT_LOCAL)
|
||||||
|
+#if !defined(__linux__) && defined(HAVE_FSTATVFS) && defined (MNT_LOCAL)
|
||||||
|
+ struct statvfs s;
|
||||||
|
+ if (fstatvfs(fd, &s))
|
||||||
|
+ return false;
|
||||||
|
+ return !(s.f_flag & MNT_LOCAL);
|
||||||
|
+#elif defined (HAVE_FSTATFS)
|
||||||
|
struct statvfs stf;
|
||||||
|
|
||||||
|
if (fstatvfs (fd, &stf))
|
35
vlc/patches/patch-ab
Normal file
35
vlc/patches/patch-ab
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
$NetBSD: patch-ab,v 1.6 2011/01/09 06:47:55 makoto Exp $
|
||||||
|
|
||||||
|
--- configure.ac.orig 2010-11-12 07:49:28.000000000 +0900
|
||||||
|
+++ configure.ac 2011-01-04 22:47:39.000000000 +0900
|
||||||
|
@@ -2688,13 +2688,13 @@
|
||||||
|
AC_DEFINE(HAVE_AVCODEC_VAAPI, 1, [Define if avcodec has to be built with VAAPI support.])
|
||||||
|
echo "VAAPI acceleration activated"
|
||||||
|
],[
|
||||||
|
- AS_IF([test "${enable_libva}" == "yes"],
|
||||||
|
+ AS_IF([test "${enable_libva}" = "yes"],
|
||||||
|
[AC_MSG_ERROR([libva is present but libavcodec/vaapi.h is missing])],
|
||||||
|
[AC_MSG_WARN([libva is present but libavcodec/vaapi.h is missing ])])
|
||||||
|
])
|
||||||
|
VLC_RESTORE_FLAGS
|
||||||
|
],[
|
||||||
|
- AS_IF([test "${enable_libva}" == "yes"],
|
||||||
|
+ AS_IF([test "${enable_libva}" = "yes"],
|
||||||
|
[AC_MSG_ERROR([Could not find required libva.])],
|
||||||
|
[AC_MSG_WARN([libva not found ])])
|
||||||
|
])
|
||||||
|
@@ -2721,12 +2721,12 @@
|
||||||
|
AC_DEFINE(HAVE_AVCODEC_DXVA2, 1, [Define if avcodec has to be built with DxVA2 support.])
|
||||||
|
echo "DxVA2 acceleration activated"
|
||||||
|
],[
|
||||||
|
- AS_IF([test "${enable_dxva2}" == "yes"],
|
||||||
|
+ AS_IF([test "${enable_dxva2}" = "yes"],
|
||||||
|
[AC_MSG_ERROR([dxva2 is present but libavcodec/dxva2.h is missing])],
|
||||||
|
[AC_MSG_WARN([dxva2 is present but libavcodec/dxva2.h is missing ])])
|
||||||
|
])
|
||||||
|
],[
|
||||||
|
- AS_IF([test "${enable_dxva2}" == "yes"],
|
||||||
|
+ AS_IF([test "${enable_dxva2}" = "yes"],
|
||||||
|
[AC_MSG_ERROR([Could not find required dxva2api.h])],
|
||||||
|
[AC_MSG_WARN([dxva2api.h not found])])
|
||||||
|
])
|
Loading…
Reference in a new issue