VLC :)
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
# Make it build with libtool 1.5
|
||||
shelltools.system("rm -rf m4/lt* m4/libtool.m4")
|
||||
|
||||
shelltools.export("AUTOPOINT", "true")
|
||||
shelltools.system("./bootstrap")
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.rawConfigure("\
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--with-default-font-family=Sans \
|
||||
--with-default-monospace-font-family=Monospace \
|
||||
--with-default-font=/usr/share/fonts/dejavu/DejaVuSans.ttf \
|
||||
--with-default-monospace-font=/usr/share/fonts/dejavu/DejaVuSansMono.ttf \
|
||||
--with-x \
|
||||
LUAC=luac \
|
||||
--disable-asdcp \
|
||||
--disable-coverage \
|
||||
--disable-cprof \
|
||||
--disable-crystalhd \
|
||||
--disable-decklink \
|
||||
--disable-gles1 \
|
||||
--disable-gles2 \
|
||||
--disable-goom \
|
||||
--disable-kai \
|
||||
--disable-kva \
|
||||
--disable-maintainer-mode \
|
||||
--disable-merge-ffmpeg \
|
||||
--disable-mfx \
|
||||
--disable-mmal-codec \
|
||||
--disable-mmal-vout \
|
||||
--disable-opensles \
|
||||
--disable-quicktime \
|
||||
--disable-rpi-omxil \
|
||||
--disable-shine \
|
||||
--disable-sndio \
|
||||
--disable-vda \
|
||||
--disable-vsxu \
|
||||
--disable-wasapi \
|
||||
--disable-altivec \
|
||||
--disable-bonjour \
|
||||
--disable-dependency-tracking \
|
||||
--disable-optimizations \
|
||||
--disable-gnomevfs \
|
||||
--disable-growl \
|
||||
--disable-jack \
|
||||
--disable-oss \
|
||||
--disable-rpath \
|
||||
--disable-static \
|
||||
--disable-update-check \
|
||||
--disable-silent-rules \
|
||||
--enable-a52 \
|
||||
--enable-aa \
|
||||
--enable-alsa \
|
||||
--enable-bluray \
|
||||
--enable-dc1394 \
|
||||
--enable-dbus \
|
||||
--enable-dca \
|
||||
--enable-dvbpsi \
|
||||
--enable-dvdnav \
|
||||
--enable-dvdread \
|
||||
--enable-faad \
|
||||
--enable-fast-install \
|
||||
--enable-flac \
|
||||
--enable-freetype \
|
||||
--enable-fribidi \
|
||||
--enable-gnutls \
|
||||
--enable-libcddb \
|
||||
--enable-libmpeg2 \
|
||||
--enable-libxml2 \
|
||||
--enable-lirc \
|
||||
--enable-libva \
|
||||
--enable-live555 \
|
||||
--enable-lua \
|
||||
--enable-mad \
|
||||
--enable-mkv \
|
||||
--enable-mod \
|
||||
--enable-mpc \
|
||||
--enable-nls \
|
||||
--enable-ncurses \
|
||||
--enable-ogg \
|
||||
--enable-opus \
|
||||
--enable-png \
|
||||
--enable-projectm \
|
||||
--enable-pulse \
|
||||
--enable-realrtsp \
|
||||
--enable-screen \
|
||||
--enable-sdl \
|
||||
--enable-sftp \
|
||||
--enable-shared \
|
||||
--enable-skins2 \
|
||||
--enable-smbclient \
|
||||
--enable-sout \
|
||||
--enable-speex \
|
||||
--enable-svg \
|
||||
--enable-skins2 \
|
||||
--enable-theora \
|
||||
--enable-twolame \
|
||||
--enable-upnp \
|
||||
--enable-upnp \
|
||||
--enable-v4l2 \
|
||||
--enable-vlc \
|
||||
--enable-vcd \
|
||||
--enable-vcdx \
|
||||
--enable-vlm \
|
||||
--enable-vorbis \
|
||||
--enable-x265 \
|
||||
--enable-xvideo \
|
||||
")
|
||||
|
||||
# for fix unused dependency
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
for icon in ("128x128", "48x48", "32x32", "16x16"):
|
||||
pisitools.insinto("/usr/share/icons/hicolor/%s/apps/" % icon, "share/icons/%s/vlc*.png" % icon)
|
||||
|
||||
pisitools.dodoc("AUTHORS", "THANKS", "NEWS", "README", "COPYING")
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import glob
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("/usr/lib/vlc/vlc-cache-gen -f /usr/lib/vlc/plugins")
|
||||
|
||||
def preRemove():
|
||||
for cache in glob.glob("/usr/lib/vlc/plugins/plugins-*-*.dat"):
|
||||
try:
|
||||
os.unlink(cache)
|
||||
except OSError:
|
||||
pass
|
||||
@@ -0,0 +1,16 @@
|
||||
https://github.com/videolan/vlc/commit/c354efa3a2843d479c8fa9e929ff1064e5526bfa
|
||||
--- modules/hw/vdpau/Makefile.am.orig 2015-04-16 22:29:26.299342749 -0700
|
||||
+++ modules/hw/vdpau/Makefile.am 2015-04-16 22:31:40.886340950 -0700
|
||||
@@ -45,6 +45,7 @@
|
||||
libvdpau_chroma_plugin_la_LIBADD = libvlc_vdpau.la
|
||||
vdpau_LTLIBRARIES += libvdpau_chroma_plugin.la
|
||||
|
||||
+if HAVE_XCB
|
||||
libvdpau_display_plugin_la_SOURCES = display.c
|
||||
libvdpau_display_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/../../video_output/xcb
|
||||
libvdpau_display_plugin_la_CFLAGS = $(AM_CFLAGS) $(XCB_CFLAGS)
|
||||
@@ -52,3 +53,4 @@
|
||||
../../video_output/libvlc_xcb_events.la \
|
||||
$(AM_LIBADD) $(X_LIBS) $(X_PRE_LIBS) -lX11 $(XCB_LIBS)
|
||||
vdpau_LTLIBRARIES += libvdpau_display_plugin.la
|
||||
+endif
|
||||
@@ -0,0 +1,51 @@
|
||||
https://gist.github.com/karolherbst/fb9e3d8f6ba05f1f5d54
|
||||
For use until upstream ever accepts this patch or fixes it themsleves
|
||||
--- configure.ac.orig 2015-03-01 02:28:48.983932684 +0100
|
||||
+++ configure.ac 2015-03-01 02:41:29.641927072 +0100
|
||||
@@ -3709,7 +3709,8 @@
|
||||
])
|
||||
])
|
||||
AS_IF([test "${enable_qt}" != "no"], [
|
||||
- PKG_CHECK_MODULES([QT], [Qt5Core >= 5.1.0 Qt5Widgets Qt5Gui], [
|
||||
+ AS_IF([test "${enable_qt}" != "4"], [
|
||||
+ PKG_CHECK_MODULES([QT], [Qt5Core >= 5.1.0 Qt5Widgets Qt5Gui], [
|
||||
PKG_CHECK_MODULES([QTX11], [Qt5X11Extras], [
|
||||
VLC_ADD_LIBS([qt4],[${QTX11_LIBS}])
|
||||
VLC_ADD_CXXFLAGS([qt4],[${QTX11_CFLAGS} -DQT5_HAS_X11])
|
||||
@@ -3721,20 +3722,23 @@
|
||||
AC_PATH_PROGS(MOC, [moc-qt5 moc], moc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
AC_PATH_PROGS(RCC, [rcc-qt5 rcc], rcc, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
AC_PATH_PROGS(UIC, [uic-qt5 uic], uic, ["${QT_HOST_PATH}" "${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
+ enable_qt="5"
|
||||
- ], [
|
||||
- PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
|
||||
- AS_IF([test -n "${enable_qt}"],[
|
||||
- AC_MSG_ERROR([${QT_PKG_ERRORS}.])
|
||||
- ],[
|
||||
- AC_MSG_WARN([${QT_PKG_ERRORS}.])
|
||||
- ])
|
||||
- enable_qt="no"
|
||||
+ ])
|
||||
+ ])
|
||||
+ AS_IF([test "${enable_qt}" != "5"], [
|
||||
+ PKG_CHECK_MODULES([QT], [QtCore QtGui >= 4.6.0],, [
|
||||
+ AS_IF([test -n "${enable_qt}"],[
|
||||
+ AC_MSG_ERROR([${QT_PKG_ERRORS}.])
|
||||
+ ],[
|
||||
+ AC_MSG_WARN([${QT_PKG_ERRORS}.])
|
||||
])
|
||||
- QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
|
||||
- AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
- AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
|
||||
- AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
+ enable_qt="no"
|
||||
])
|
||||
+ QT_PATH="$(eval $PKG_CONFIG --variable=exec_prefix QtCore)"
|
||||
+ AC_PATH_PROGS(MOC, [moc-qt4 moc], moc, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
+ AC_PATH_PROG(RCC, rcc, rcc, [${QT_PATH}/bin ${CONTRIB_DIR}/bin])
|
||||
+ AC_PATH_PROGS(UIC, [uic-qt4 uic], uic, ["${QT_PATH}/bin" "${CONTRIB_DIR}/bin"])
|
||||
+ ])
|
||||
])
|
||||
AS_IF([test "${enable_qt}" != "no"], [
|
||||
VLC_ADD_PLUGIN([qt4])
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- modules/codec/dmo/dmo.c~ 2012-09-14 00:02:04.000000000 +0800
|
||||
+++ modules/codec/dmo/dmo.c 2012-10-16 07:10:41.145463290 +0800
|
||||
@@ -546,7 +546,7 @@
|
||||
}
|
||||
|
||||
p_bih = &p_vih->bmiHeader;
|
||||
- p_bih->biCompression = i_chroma == VLC_CODEC_RGB24 ? BI_RGB : i_chroma;
|
||||
+ p_bih->biCompression = i_chroma == VLC_CODEC_RGB24 ? 0L : i_chroma;
|
||||
p_bih->biHeight *= -1;
|
||||
p_bih->biBitCount = p_dec->fmt_out.video.i_bits_per_pixel;
|
||||
p_bih->biSizeImage = p_dec->fmt_in.video.i_width *
|
||||
@@ -0,0 +1,11 @@
|
||||
diff -rupN a/modules/codec/avcodec/vaapi.c b/modules/codec/avcodec/vaapi.c
|
||||
--- a/modules/codec/avcodec/vaapi.c 2013-01-22 09:51:40.000000000 +0000
|
||||
+++ b/modules/codec/avcodec/vaapi.c 2013-07-27 17:23:37.965202118 +0000
|
||||
@@ -47,6 +47,7 @@
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <va/va_x11.h>
|
||||
+#include <va/va_compat.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
@@ -0,0 +1,23 @@
|
||||
index 2debbcd..72e7fcf 100644
|
||||
--- a/modules/audio_output/pulse.c
|
||||
+++ b/modules/audio_output/pulse.c
|
||||
@@ -472,8 +472,17 @@ static void stream_underflow_cb(pa_stream *s, void *userdata)
|
||||
{
|
||||
+ uint32_t rate = pa_stream_get_sample_spec(s)->rate;
|
||||
audio_output_t *aout = userdata;
|
||||
|
||||
- msg_Dbg(aout, "underflow");
|
||||
- (void) s;
|
||||
+ msg_Warn(aout, "underflow");
|
||||
+ stream_stop(s, aout);
|
||||
+
|
||||
+ aout_sys_t *sys = aout->sys;
|
||||
+ sys->first_pts = VLC_TS_INVALID;
|
||||
+
|
||||
+ pa_operation *op = pa_stream_update_sample_rate(s, rate, NULL, NULL);
|
||||
+ if (unlikely(op == NULL))
|
||||
+ return;
|
||||
+ pa_operation_unref(op);
|
||||
}
|
||||
|
||||
static int stream_wait(pa_stream *stream, pa_threaded_mainloop *mainloop)
|
||||
@@ -0,0 +1,10 @@
|
||||
--- share/vlc.desktop.in.OSmanOS 2013-06-24 21:00:39.000000000 +0300
|
||||
+++ share/vlc.desktop.in 2013-11-16 18:49:06.848928443 +0200
|
||||
@@ -73,6 +73,7 @@
|
||||
Name[sv]=Mediaspelaren VLC
|
||||
GenericName[sv]=Mediaspelaren
|
||||
Comment[sv]=Allmän uppspelare av film och musik
|
||||
+Comment[tr]=VLC medya oynatıcı
|
||||
Name[te]=VLC మాధ్యమ ప్రదర్శకం
|
||||
GenericName[te]=మాధ్యమ ప్రదర్శకం
|
||||
Comment[te]=మీ బహుళమాధ్యమ ప్రవాహాలను చదువు, బంధించు మరియు ప్రసారం చేయి
|
||||
@@ -0,0 +1,15 @@
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index a684338..053713a 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -2242,8 +2242,8 @@ AC_ARG_ENABLE(avcodec,
|
||||
[ --enable-avcodec libavcodec codec (default enabled)])
|
||||
AS_IF([test "${enable_avcodec}" != "no"], [
|
||||
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 53.34.0 libavutil >= 51.22.0], [
|
||||
- PKG_CHECK_EXISTS([libavcodec < 56],, [
|
||||
- AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
|
||||
+ PKG_CHECK_EXISTS([libavcodec < 57],, [
|
||||
+ AC_MSG_ERROR([libavcodec versions 57 and later are not supported yet.])
|
||||
])
|
||||
VLC_SAVE_FLAGS
|
||||
CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
|
||||
@@ -0,0 +1,23 @@
|
||||
--- a/modules/access/rdp.c 2014-11-22 01:40:52.044973648 -0800
|
||||
+++ b/modules/access/rdp.c 2014-11-22 01:36:44.291975380 -0800
|
||||
@@ -399,7 +404,9 @@
|
||||
if ( p_sys->f_fps <= 0 ) p_sys->f_fps = 1.0;
|
||||
p_sys->i_frame_interval = 1000000 / p_sys->f_fps;
|
||||
|
||||
+#if defined(FREERDP_VERSION_MAJOR) && defined(FREERDP_VERSION_MINOR) && !(FREERDP_VERSION_MAJOR > 1 || (FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR >= 2))
|
||||
freerdp_channels_global_init();
|
||||
+#endif
|
||||
|
||||
p_sys->p_instance = freerdp_new();
|
||||
if ( !p_sys->p_instance )
|
||||
@@ -475,7 +482,10 @@
|
||||
|
||||
freerdp_disconnect( p_sys->p_instance );
|
||||
freerdp_free( p_sys->p_instance );
|
||||
+
|
||||
+#if defined(FREERDP_VERSION_MAJOR) && defined(FREERDP_VERSION_MINOR) && !(FREERDP_VERSION_MAJOR > 1 || (FREERDP_VERSION_MAJOR == 1 && FREERDP_VERSION_MINOR >= 2))
|
||||
freerdp_channels_global_uninit();
|
||||
+#endif
|
||||
|
||||
if ( p_sys->p_block )
|
||||
block_Release( p_sys->p_block );
|
||||
@@ -0,0 +1,413 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vlc</Name>
|
||||
<Homepage>http://www.videolan.org/vlc</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<Icon>vlc</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>VLC media player</Summary>
|
||||
<Description>VLC is a famous video player and streamer.</Description>
|
||||
<Archive sha1sum="ee8535c5966217bc2069a74c1d4e8c32609656e9" type="tarxz">http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libcdio</Dependency>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>libgcrypt</Dependency>
|
||||
<Dependency>xcb-proto</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>zvbi-devel</Dependency>
|
||||
<Dependency>faac-devel</Dependency>
|
||||
<Dependency>flac-devel</Dependency>
|
||||
<Dependency>lirc-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>x265-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>avahi-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
<Dependency>aalib-devel</Dependency>
|
||||
<Dependency>faad2-devel</Dependency>
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>libva-devel</Dependency>
|
||||
<Dependency>libXt-devel</Dependency>
|
||||
<Dependency>libXv-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libXau-devel</Dependency>
|
||||
<Dependency>libtar-devel</Dependency>
|
||||
<Dependency>libvpx-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>libass-devel</Dependency>
|
||||
<Dependency>libXpm-devel</Dependency>
|
||||
<Dependency>gnutls-devel</Dependency>
|
||||
<Dependency>libv4l-devel</Dependency>
|
||||
<Dependency>libdca-devel</Dependency>
|
||||
<Dependency>libmtp-devel</Dependency>
|
||||
<Dependency>libmad-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>a52dec-devel</Dependency>
|
||||
<Dependency>ncurses-devel</Dependency>
|
||||
<Dependency>libebml-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libcddb-devel</Dependency>
|
||||
<Dependency>libcaca-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>librsvg-devel</Dependency>
|
||||
<Dependency>libcdio-devel</Dependency>
|
||||
<Dependency>fribidi-devel</Dependency>
|
||||
<Dependency>libupnp-devel</Dependency>
|
||||
<Dependency>libkate-devel</Dependency>
|
||||
<Dependency>freerdp-devel</Dependency>
|
||||
<Dependency>twolame-devel</Dependency>
|
||||
<Dependency>minizip-devel</Dependency>
|
||||
<Dependency>live555-devel</Dependency>
|
||||
<Dependency>libopus-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>libXdmcp-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>kernel-headers</Dependency>
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
<Dependency>libmpeg2-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>libshout-devel</Dependency>
|
||||
<Dependency>libdvbpsi-devel</Dependency>
|
||||
<Dependency>libtheora-devel</Dependency>
|
||||
<Dependency>libbluray-devel</Dependency>
|
||||
<Dependency>libgcrypt-devel</Dependency>
|
||||
<Dependency>libnotify-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libdc1394-devel</Dependency>
|
||||
<Dependency>libid3tag-devel</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>libmpcdec-devel</Dependency>
|
||||
<Dependency>libdvdcss-devel</Dependency>
|
||||
<Dependency>libdvdnav-devel</Dependency>
|
||||
<Dependency>vcdimager-devel</Dependency>
|
||||
<Dependency>libraw1394-devel</Dependency>
|
||||
<Dependency>fluidsynth-devel</Dependency>
|
||||
<Dependency>libdvdread-devel</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
<Dependency>libavc1394-devel</Dependency>
|
||||
<Dependency>libmodplug-devel</Dependency>
|
||||
<Dependency>libXxf86vm-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>libmatroska-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>schroedinger-devel</Dependency>
|
||||
<Dependency>crystalhd-firmware</Dependency>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
<Dependency>libvncserver-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>libchromaprint-devel</Dependency>
|
||||
<Dependency>gstreamer-next-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-next-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>qt4-select.patch</Patch>
|
||||
<Patch>lc-2.2.0-fix-xcb.patch</Patch>
|
||||
<Patch>vlc-2.2.0-rdp-1.2.0.patch</Patch>
|
||||
<Patch level="0">vlc-2.1.1-desktop.patch</Patch>
|
||||
<Patch level="0">vlc-2.0.4-fix-definition.patch</Patch>
|
||||
<Patch level="1">vlc-2.1.0-TomWij-bisected-PA-broken-underflow.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>vlc</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>libtar</Dependency>
|
||||
<Dependency>libXpm</Dependency>
|
||||
<Dependency>fribidi</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>minizip</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>ncurses</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency version="current">vlc-libs</Dependency>
|
||||
<Dependency>libXinerama</Dependency>
|
||||
<Dependency>dejavu-fonts</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<!-- Gui library files. -->
|
||||
<Path fileType="library">/usr/lib/vlc/plugins/gui</Path>
|
||||
|
||||
<Path fileType="data">/usr/share/vlc</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/kde4/apps/solid/actions</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-lua</Name>
|
||||
<Summary>Lua scripting for VLC</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lua</Dependency>
|
||||
<Dependency version="current">vlc-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/vlc/lua</Path>
|
||||
<Path fileType="library">/usr/lib/vlc/plugins/misc/liblua_plugin.so</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-libs</Name>
|
||||
<Summary>Codec and plugin library files for VLC</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lua</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>lirc</Dependency>
|
||||
<Dependency>flac</Dependency>
|
||||
<Dependency>zvbi</Dependency>
|
||||
<Dependency>x265</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>libva</Dependency>
|
||||
<Dependency>faad2</Dependency>
|
||||
<Dependency>samba</Dependency>
|
||||
<Dependency>speex</Dependency>
|
||||
<Dependency>aalib</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libmad</Dependency>
|
||||
<Dependency>libass</Dependency>
|
||||
<Dependency>gnutls</Dependency>
|
||||
<Dependency>libdca</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency>a52dec</Dependency>
|
||||
<Dependency>libmtp</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>libvpx</Dependency>
|
||||
<Dependency>libcddb</Dependency>
|
||||
<Dependency>freerdp</Dependency>
|
||||
<Dependency>libopus</Dependency>
|
||||
<Dependency>libcaca</Dependency>
|
||||
<Dependency>twolame</Dependency>
|
||||
<Dependency>libebml</Dependency>
|
||||
<Dependency>libcdio</Dependency>
|
||||
<Dependency>librsvg</Dependency>
|
||||
<Dependency>live555</Dependency>
|
||||
<Dependency>minizip</Dependency>
|
||||
<Dependency>fribidi</Dependency>
|
||||
<Dependency>libkate</Dependency>
|
||||
<Dependency>libupnp</Dependency>
|
||||
<Dependency>libshout</Dependency>
|
||||
<Dependency>alsa-lib</Dependency>
|
||||
<Dependency>libvdpau</Dependency>
|
||||
<Dependency>libmpeg2</Dependency>
|
||||
<Dependency>libdvbpsi</Dependency>
|
||||
<Dependency>libdc1394</Dependency>
|
||||
<Dependency>sdl-image</Dependency>
|
||||
<Dependency>vcdimager</Dependency>
|
||||
<Dependency>libbluray</Dependency>
|
||||
<Dependency>libnotify</Dependency>
|
||||
<Dependency>libdvdnav</Dependency>
|
||||
<Dependency>libmpcdec</Dependency>
|
||||
<Dependency>libtheora</Dependency>
|
||||
<Dependency>libvorbis</Dependency>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
<Dependency>libraw1394</Dependency>
|
||||
<Dependency>fluidsynth</Dependency>
|
||||
<Dependency>libmodplug</Dependency>
|
||||
<Dependency>libdvdread</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>libavc1394</Dependency>
|
||||
<Dependency>libmatroska</Dependency>
|
||||
<Dependency>schroedinger</Dependency>
|
||||
<Dependency>libvncserver</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libchromaprint</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>xcb-util-keysyms</Dependency>
|
||||
<Dependency>crystalhd-firmware</Dependency>
|
||||
<Dependency>gstreamer-next-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-next</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libvlc*</Path>
|
||||
<Path fileType="library">/usr/lib/vlc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-devel</Name>
|
||||
<Summary>Development files for vlc</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">vlc-libs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="19">
|
||||
<Date>2015-06-05</Date>
|
||||
<Version>2.2.1</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedati@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="18">
|
||||
<Date>2014-12-15</Date>
|
||||
<Version>2.1.5</Version>
|
||||
<Comment>Release Bump.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17">
|
||||
<Date>2014-08-18</Date>
|
||||
<Version>2.1.5</Version>
|
||||
<Comment>Release Bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedati@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2014-07-07</Date>
|
||||
<Version>2.1.5</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedati@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2014-06-19</Date>
|
||||
<Version>2.1.4</Version>
|
||||
<Comment>Rebuild for libtar.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2014-05-31</Date>
|
||||
<Version>2.1.4</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2014-04-07</Date>
|
||||
<Version>2.1.4</Version>
|
||||
<Comment>Rebuild for x264</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2014-02-23</Date>
|
||||
<Version>2.1.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2014-02-05</Date>
|
||||
<Version>2.1.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2013-11-26</Date>
|
||||
<Version>2.1.1</Version>
|
||||
<Comment>Rebuild for ffmpeg.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2013-11-16</Date>
|
||||
<Version>2.1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2013-11-10</Date>
|
||||
<Version>2.1.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-08-05</Date>
|
||||
<Version>2.0.8a</Version>
|
||||
<Comment>V.bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-08-01</Date>
|
||||
<Version>2.0.8</Version>
|
||||
<Comment>V.bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-07-29</Date>
|
||||
<Version>2.0.7</Version>
|
||||
<Comment>missing dep.</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-06-21</Date>
|
||||
<Version>2.0.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-06-01</Date>
|
||||
<Version>2.0.6</Version>
|
||||
<Comment>Dep Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-06-01</Date>
|
||||
<Version>2.0.6</Version>
|
||||
<Comment>Dep Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-04-11</Date>
|
||||
<Version>2.0.6</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-15</Date>
|
||||
<Version>2.0.5</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>vlc</Name>
|
||||
<Summary xml:lang="tr">VLC çoklu ortam oynatıcısı</Summary>
|
||||
<Summary xml:lang="pl">Odtwarzacz plików multimedialnych i serwer strumieni </Summary>
|
||||
<Summary xml:lang="es">VLC reproductor multimedia</Summary>
|
||||
<Description xml:lang="tr">Media oynatıcısı ve yayın dinleyici</Description>
|
||||
<Description xml:lang="pl">VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci.</Description>
|
||||
<Description xml:lang="es">VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-devel</Name>
|
||||
<Summary xml:lang="tr">vlc için geliştirme dosyaları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe vlc</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-firefox</Name>
|
||||
<Summary xml:lang="tr">Firefox için vlc eklentisi</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>vlc-libs</Name>
|
||||
<Summary xml:lang="tr">vlc için codec ve eklenti kitaplık dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user