summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Andrew Clemons2022-03-07 00:27:32 +0100
committer Willy Sudiarto Raharjo2022-03-07 02:45:31 +0100
commit869d82e9c4228e049a7f9f2c1bf4eab7f302d249 (patch)
treed5ba05357abf7514ae4346bc6942762eb8b519a3
parenta221c4b683f6098d0d80a23a0e18f5ce8b61a989 (diff)
downloadslackbuilds-869d82e9c4228e049a7f9f2c1bf4eab7f302d249.tar.gz
multimedia/plex-home-theater: Removed (ftbs, upstream dead).
Seems this has been replaced by plex-media-player, if someone wants to submit a script for that. Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--multimedia/plex-home-theater/README5
-rw-r--r--multimedia/plex-home-theater/disable_via_ace.patch15
-rw-r--r--multimedia/plex-home-theater/doinst.sh9
-rw-r--r--multimedia/plex-home-theater/fribidi.patch47
-rw-r--r--multimedia/plex-home-theater/plex-home-theater7
-rw-r--r--multimedia/plex-home-theater/plex-home-theater.SlackBuild145
-rw-r--r--multimedia/plex-home-theater/plex-home-theater.desktop9
-rw-r--r--multimedia/plex-home-theater/plex-home-theater.info10
-rw-r--r--multimedia/plex-home-theater/plex-home-theater_512x512.pngbin330319 -> 0 bytes
-rw-r--r--multimedia/plex-home-theater/slack-desc19
10 files changed, 0 insertions, 266 deletions
diff --git a/multimedia/plex-home-theater/README b/multimedia/plex-home-theater/README
deleted file mode 100644
index fe204d1ecb..0000000000
--- a/multimedia/plex-home-theater/README
+++ /dev/null
@@ -1,5 +0,0 @@
-Plex Home Theater is optimized for the big screen and supports
-a wide variety of formats with high-definition audio, native
-framerates, and more.
-
-(Some) Optional dependencies: libcec libnfs
diff --git a/multimedia/plex-home-theater/disable_via_ace.patch b/multimedia/plex-home-theater/disable_via_ace.patch
deleted file mode 100644
index 73b3eb4413..0000000000
--- a/multimedia/plex-home-theater/disable_via_ace.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- plex/Third-Party/aes/aesopt.h.org 2015-02-03 21:32:46.000000000 +0100
-+++ plex/Third-Party/aes/aesopt.h 2015-02-09 11:00:02.966550150 +0100
-@@ -163,11 +163,7 @@
-
- /* 2. Intel AES AND VIA ACE SUPPORT */
-
--#if defined( __GNUC__ ) && defined( __i386__ ) \
-- || defined(_WIN32) && defined(_M_IX86) \
-- && !(defined(_WIN64) || defined(_WIN32_WCE) || defined(_MSC_VER) && (_MSC_VER <= 800))
--# define VIA_ACE_POSSIBLE
--#endif
-+# undef VIA_ACE_POSSIBLE
-
- /* Define this option if support for the Intel AESNI is required (not
- currently available with GCC). If AESNI is known to be present, then
diff --git a/multimedia/plex-home-theater/doinst.sh b/multimedia/plex-home-theater/doinst.sh
deleted file mode 100644
index 65c7e2eeb9..0000000000
--- a/multimedia/plex-home-theater/doinst.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
-
-if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
- fi
-fi
diff --git a/multimedia/plex-home-theater/fribidi.patch b/multimedia/plex-home-theater/fribidi.patch
deleted file mode 100644
index 3b135bdfc3..0000000000
--- a/multimedia/plex-home-theater/fribidi.patch
+++ /dev/null
@@ -1,47 +0,0 @@
---- a/plex/CMakeModules/FindFriBiDi.cmake
-+++ b/plex/CMakeModules/FindFriBiDi.cmake
-@@ -10,43 +10,9 @@
- # FRIBIDI_LIBRARY, where to find the FriBiDi library.
-
- include(CheckSymbolExists)
-+include(FindPkgConfig)
-+pkg_check_modules(FRIBIDI fribidi)
-
--SET(FRIBIDI_FOUND "NO")
--
--# Set variable in temp var, otherwise FIND_PATH might fail
--# unset isn't present in the required version of cmake.
--FIND_PATH(xFRIBIDI_INCLUDE_DIR fribidi.h
-- PATHS /usr/local/include
-- /usr/include
-- PATH_SUFFIXES fribidi
-- )
--set(FRIBIDI_INCLUDE_DIR ${xFRIBIDI_INCLUDE_DIR})
--
--SET(FRIBIDI_NAMES ${FRIBIDI_NAMES} fribidi libfribidi)
--FIND_LIBRARY(FRIBIDI_LIBRARY
-- NAMES ${FRIBIDI_NAMES}
-- PATHS /usr/lib /usr/local/lib
-- )
--
--IF (FRIBIDI_LIBRARY AND FRIBIDI_INCLUDE_DIR)
-- SET(CMAKE_REQUIRED_INCLUDES ${FRIBIDI_INCLUDE_DIR})
-- SET(CMAKE_REQUIRED_LIBRARIES ${FRIBIDI_LIBRARY})
-- CHECK_SYMBOL_EXISTS(fribidi_utf8_to_unicode fribidi.h FOUND_fribidi_utf8_to_unicode)
-- CHECK_SYMBOL_EXISTS(fribidi_charset_to_unicode fribidi.h FOUND_fribidi_charset_to_unicode)
-- if(FOUND_fribidi_charset_to_unicode)
-- SET(FRIBIDI_LIBRARIES ${FRIBIDI_LIBRARY})
-- SET(FRIBIDI_FOUND "YES")
-- elseif(FOUND_fribidi_utf8_to_unicode)
-- SET(FRIBIDI_LIBRARIES ${FRIBIDI_LIBRARY})
-- SET(FRIBIDI_FOUND "YES")
-- add_definitions(-DOLD_FRIBIDI)
-- MESSAGE(STATUS "Legacy FriBiDi: ${FRIBIDI_LIBRARY}")
-- else()
-- SET(FRIBIDI_LIBRARIES "NOTFOUND")
-- SET(FRIBIDI_INCLUDE_DIR "NOTFOUND")
-- SET(FRIBIDI_FOUND "NO")
-- endif()
--ENDIF (FRIBIDI_LIBRARY AND FRIBIDI_INCLUDE_DIR)
-
- IF (FRIBIDI_FOUND)
diff --git a/multimedia/plex-home-theater/plex-home-theater b/multimedia/plex-home-theater/plex-home-theater
deleted file mode 100644
index d2ce5b48a8..0000000000
--- a/multimedia/plex-home-theater/plex-home-theater
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-# disable PulseAudio
-export AE_ENGINE=Soft
-
-export XBMC_HOME=/opt/plex-home-theater/share/XBMC
-exec /opt/plex-home-theater/bin/plexhometheater
diff --git a/multimedia/plex-home-theater/plex-home-theater.SlackBuild b/multimedia/plex-home-theater/plex-home-theater.SlackBuild
deleted file mode 100644
index 69c5312f2d..0000000000
--- a/multimedia/plex-home-theater/plex-home-theater.SlackBuild
+++ /dev/null
@@ -1,145 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for "plex-home-theater".
-
-# Copyright 2014-2015 Marcel Saegebarth <marc@mos6581.de>
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are
-# met:
-#
-# * Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "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 COPYRIGHT
-# OWNER OR CONTRIBUTORS 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=plex-home-theater
-VERSION=${VERSION:-1.4.1.469}
-REV=${REV:-47a90f01}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- 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" = "i586" ]; then
- SLKCFLAGS="-O2 -march=i586 -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 $PRGNAM-public-$VERSION-$REV
-tar xvf $CWD/$PRGNAM-public-$VERSION-$REV.tar.gz || tar xvf $CWD/v$VERSION-$REV.tar.gz
-cd $PRGNAM-public-$VERSION-$REV
-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 {} \;
-
-# remove AirTunes dependency (would require libshairport)
-sed -i 's/ ShairPort//' plex/CMakeModules/PlatformConfigLINUX.cmake
-
-# Disables AES for VIA CPU's due to segfaults. Thanks to Philip van der Hoeven.
-patch -p0 < $CWD/disable_via_ace.patch
-
-# Find fribidi-0.19.7
-# https://raw.githubusercontent.com/foux/fouxlay/master/media-tv/plex-home-theater/files/fribidi.patch
-patch -p1 < $CWD/fribidi.patch
-
-# Fix "'asm' operand has impossible constraints" build failure in embedded ffmpeg
-if [ "$ARCH" != 'x86_64' ]; then
- sed -i -e 's/get_cabac(/get_cabac_noinline(/g' lib/ffmpeg/libavcodec/cabac.c
- sed -i -e 's/get_cabac(/get_cabac_noinline(/g' lib/ffmpeg/libavcodec/h264_cabac.c
-fi
-
-mkdir build
-cd build
-
-cmake \
- -DCMAKE_C_FLAGS="$SLKCFLAGS" \
- -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \
- -DCMAKE_INSTALL_PREFIX=/opt/$PRGNAM \
- -DCMAKE_BUILD_TYPE=Release \
- -DENABLE_AUTOUPDATE='FALSE' \
- -DENABLE_DUMP_SYMBOLS='FALSE' \
- -DENABLE_PYTHON='TRUE' \
- -DUSE_INTERNAL_FFMPEG='TRUE' \
- -DCREATE_BUNDLE='FALSE' \
- ..
-
-# internal ffmpeg version doesn't build with multiple jobs
-make -j1
-make install DESTDIR=$PKG
-
-cd ..
-
-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/bin
-install -D -m 0755 $CWD/plex-home-theater $PKG/usr/bin
-
-mkdir -p $PKG/usr/share/applications
-install -D -m 0644 $CWD/$PRGNAM.desktop $PKG/usr/share/applications
-
-mkdir -p $PKG/usr/share/pixmaps
-install -D -m 0644 $CWD/${PRGNAM}_512x512.png $PKG/usr/share/pixmaps
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- CONTRIBUTORS LICENSE.GPL README README-BUILD-PLEX.md docs/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
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/multimedia/plex-home-theater/plex-home-theater.desktop b/multimedia/plex-home-theater/plex-home-theater.desktop
deleted file mode 100644
index b0f6879153..0000000000
--- a/multimedia/plex-home-theater/plex-home-theater.desktop
+++ /dev/null
@@ -1,9 +0,0 @@
-[Desktop Entry]
-Name=Plex Home Theater
-GenericName=Media Center
-Exec=plex-home-theater
-StartupNotify=true
-Terminal=false
-Type=Application
-Icon=/usr/share/pixmaps/plex-home-theater_512x512.png
-Categories=Audio;Music;Video;Player;AudioVideo;
diff --git a/multimedia/plex-home-theater/plex-home-theater.info b/multimedia/plex-home-theater/plex-home-theater.info
deleted file mode 100644
index e6240e3cc1..0000000000
--- a/multimedia/plex-home-theater/plex-home-theater.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="plex-home-theater"
-VERSION="1.4.1.469"
-HOMEPAGE="https://github.com/plexinc/plex-home-theater-public/"
-DOWNLOAD="https://github.com/plexinc/plex-home-theater-public/archive/v1.4.1.469-47a90f01.tar.gz"
-MD5SUM="8fb20dac7aefa694819f66c39aaa5814"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="yajl libmicrohttpd tinyxml avahi libmpeg2 libass rtmpdump libmodplug zulu-openjdk7"
-MAINTAINER="Marcel Saegebarth"
-EMAIL="marc@mos6581.de"
diff --git a/multimedia/plex-home-theater/plex-home-theater_512x512.png b/multimedia/plex-home-theater/plex-home-theater_512x512.png
deleted file mode 100644
index 89f68bb648..0000000000
--- a/multimedia/plex-home-theater/plex-home-theater_512x512.png
+++ /dev/null
Binary files differ
diff --git a/multimedia/plex-home-theater/slack-desc b/multimedia/plex-home-theater/slack-desc
deleted file mode 100644
index d0d0f5eb8d..0000000000
--- a/multimedia/plex-home-theater/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------------------------------------------------------|
-plex-home-theater: plex-home-theater (Media Center)
-plex-home-theater:
-plex-home-theater: Plex Home Theater is optimized for the big screen and supports
-plex-home-theater: a wide variety of formats with high-definition audio, native
-plex-home-theater: framerates, and more.
-plex-home-theater:
-plex-home-theater: Homepage: http://plex.tv/
-plex-home-theater:
-plex-home-theater:
-plex-home-theater:
-plex-home-theater: