diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-03 20:17:15 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-04 17:53:41 +0700 |
commit | 3c198cf9685024be53d100c66d412d09c1fed668 (patch) | |
tree | eff9560fb27c924dce209d620cd8a77fec7a4edc /libraries/vdpau-video | |
parent | 42edc4086761323f9a581e2e9b9dbbe234b96713 (diff) |
libraries/vdpau-video: Removed (obsolete, abandoned upstream, FTB).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/vdpau-video')
-rw-r--r-- | libraries/vdpau-video/README | 3 | ||||
-rw-r--r-- | libraries/vdpau-video/slack-desc | 19 | ||||
-rw-r--r-- | libraries/vdpau-video/vdpau-video.SlackBuild | 111 | ||||
-rw-r--r-- | libraries/vdpau-video/vdpau-video.info | 10 | ||||
-rw-r--r-- | libraries/vdpau-video/vdpau-video.patch | 43 |
5 files changed, 0 insertions, 186 deletions
diff --git a/libraries/vdpau-video/README b/libraries/vdpau-video/README deleted file mode 100644 index 74498426aec12..0000000000000 --- a/libraries/vdpau-video/README +++ /dev/null @@ -1,3 +0,0 @@ -vdpau-video is a VDPAU-based backend for the VA API. - -A version of the proprietary NVIDIA display driver is required. diff --git a/libraries/vdpau-video/slack-desc b/libraries/vdpau-video/slack-desc deleted file mode 100644 index fca96beee082c..0000000000000 --- a/libraries/vdpau-video/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -vdpau-video: vdpau-video (A VDPAU-based backend for VA API) -vdpau-video: -vdpau-video: vdpau-video is a VDPAU-based backend for VA API. -vdpau-video: -vdpau-video: Website: https://launchpad.net/ubuntu/+source/vdpau-video -vdpau-video: -vdpau-video: -vdpau-video: -vdpau-video: -vdpau-video: -vdpau-video: diff --git a/libraries/vdpau-video/vdpau-video.SlackBuild b/libraries/vdpau-video/vdpau-video.SlackBuild deleted file mode 100644 index a441048366626..0000000000000 --- a/libraries/vdpau-video/vdpau-video.SlackBuild +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/bash - -# Slackware build script for vdpau-video - -# Written by Christopher Reimer (reimer.christopher@freenet.de) - -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=vdpau-video -SRCNAM=vdpau-driver -VERSION=${VERSION:-0.7.4} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $SRCNAM-$VERSION -tar xvf $CWD/${PRGNAM}_${VERSION}.orig.tar.gz -cd $SRCNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -patch -p1 < $CWD/vdpau-video.patch -./autogen.sh -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --disable-static \ - --enable-glx \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/libraries/vdpau-video/vdpau-video.info b/libraries/vdpau-video/vdpau-video.info deleted file mode 100644 index 31bb86f1d965a..0000000000000 --- a/libraries/vdpau-video/vdpau-video.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="vdpau-video" -VERSION="0.7.4" -HOMEPAGE="https://launchpad.net/ubuntu/+source/vdpau-video" -DOWNLOAD="https://launchpad.net/ubuntu/+archive/primary/+files/vdpau-video_0.7.4.orig.tar.gz" -MD5SUM="789fdf1f4d3042c90e658ce08f6149f6" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="" -MAINTAINER="Christopher Reimer" -EMAIL="reimer.christopher@freenet.de" diff --git a/libraries/vdpau-video/vdpau-video.patch b/libraries/vdpau-video/vdpau-video.patch deleted file mode 100644 index d413e2395645e..0000000000000 --- a/libraries/vdpau-video/vdpau-video.patch +++ /dev/null @@ -1,43 +0,0 @@ -diff -ur a/src/vdpau_decode.c b/src/vdpau_decode.c ---- a/src/vdpau_decode.c 2012-10-05 10:02:58.000000000 -0500 -+++ b/src/vdpau_decode.c 2014-07-18 07:42:37.240166340 -0500 -@@ -1289,7 +1289,7 @@ - driver_data, - obj_context->vdp_decoder, - obj_surface->vdp_surface, -- (VdpPictureInfo)&obj_context->vdp_picture_info, -+ (VdpPictureInfo*)&obj_context->vdp_picture_info, - obj_context->vdp_bitstream_buffers_count, - obj_context->vdp_bitstream_buffers - ); - ---- a/src/utils_glx.h 2012-10-05 16:02:58.000000000 +0100 -+++ b/src/utils_glx.h 2012-10-19 08:44:12.469642440 +0100 -@@ -48,6 +48,13 @@ - typedef void (*PFNGLXRELEASETEXIMAGEEXTPROC)(Display *, GLXDrawable, int); - #endif - -+#if GL_GLEXT_VERSION >= 85 -+/* XXX: PFNGLMULTITEXCOORD2FPROC got out of the GL_VERSION_1_3_DEPRECATED -+ block and is not defined if GL_VERSION_1_3 is defined in <GL/gl.h> -+ Redefine the type here as an interim solution */ -+typedef void (*PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); -+#endif -+ - #ifndef GL_FRAMEBUFFER_BINDING - #define GL_FRAMEBUFFER_BINDING GL_FRAMEBUFFER_BINDING_EXT - #endif - ---- vdpau-driver-0.7.4/src/vdpau_dump.c.orig 2016-02-16 02:18:26.497963851 +0700 -+++ vdpau-driver-0.7.4/src/vdpau_dump.c 2016-02-16 02:18:48.286710863 +0700 -@@ -59,8 +59,8 @@ - _(VAEncSequenceParameterBufferType); - _(VAEncPictureParameterBufferType); - _(VAEncSliceParameterBufferType); -- _(VAEncH264VUIBufferType); -- _(VAEncH264SEIBufferType); -+ //_(VAEncH264VUIBufferType); -+ //_(VAEncH264SEIBufferType); - #endif - #if VA_CHECK_VERSION(0,31,1) - _(VAQMatrixBufferType); |