summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2022-02-26 18:36:42 -0600
committer Robby Workman <rworkman@slackbuilds.org>2022-02-26 21:58:39 -0600
commit29a3e0755824dc0afcfebb9a3afadd0909618304 (patch)
tree5c251986e45fd045f0d51bb81281ab549fbbaa76 /multimedia
parent632d773c3109d23105f8d437189abd0fbe4d185f (diff)
downloadslackbuilds-29a3e0755824dc0afcfebb9a3afadd0909618304.tar.gz
slackbuilds-29a3e0755824dc0afcfebb9a3afadd0909618304.tar.xz
multimedia/mythtv: Removed (ftb + no active maintainer)
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/mythtv/README10
-rw-r--r--multimedia/mythtv/README.SLACKWARE14
-rw-r--r--multimedia/mythtv/doinst.sh32
-rw-r--r--multimedia/mythtv/files/mysql.txt39
-rw-r--r--multimedia/mythtv/files/mythfrontend.desktop8
-rw-r--r--multimedia/mythtv/files/mythfrontend.pngbin19611 -> 0 bytes
-rw-r--r--multimedia/mythtv/files/mythtv-setup.desktop8
-rw-r--r--multimedia/mythtv/files/mythtv-setup.pngbin19611 -> 0 bytes
-rw-r--r--multimedia/mythtv/files/mythtv.logrotate.d10
-rw-r--r--multimedia/mythtv/files/rc.mythbackend.new62
-rw-r--r--multimedia/mythtv/mythtv.SlackBuild172
-rw-r--r--multimedia/mythtv/mythtv.info10
-rw-r--r--multimedia/mythtv/slack-desc19
13 files changed, 0 insertions, 384 deletions
diff --git a/multimedia/mythtv/README b/multimedia/mythtv/README
deleted file mode 100644
index 4aa0f7aacf..0000000000
--- a/multimedia/mythtv/README
+++ /dev/null
@@ -1,10 +0,0 @@
-MythTV is a GPL licensed suite of programs that allow you to build the
-mythical home media convergence box on your own using Open Source software
-and operating systems. MythTV is known to work on Linux and Mac OS X
-(PowerPC and Intel).
-
-See README.SLACKWARE after installation for setup information.
-
-Optional but recommended dependencies:
-libdvdcss, libavc1394, libiec61883, jack, gsm, xmltv, mjpegtools,
-transcode, exif, and lirc.
diff --git a/multimedia/mythtv/README.SLACKWARE b/multimedia/mythtv/README.SLACKWARE
deleted file mode 100644
index cbfc880ee4..0000000000
--- a/multimedia/mythtv/README.SLACKWARE
+++ /dev/null
@@ -1,14 +0,0 @@
-README.SLACKWARE for mythtv
-
-You need to create a database before you can run mythtv:
- # mysql -u root -p < /usr/share/mythtv/database/mc.sql
-
-Then run mythtv-setup to configure mythtv
- # mythtv-setup
-
-If you get an error about timezones run
- # mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
-
-Detailed instructions for mythtv can be found here:
- http://www.mythtv.org/wiki/index.php/User_Manual:Initial_Installation
-
diff --git a/multimedia/mythtv/doinst.sh b/multimedia/mythtv/doinst.sh
deleted file mode 100644
index 664ac506bf..0000000000
--- a/multimedia/mythtv/doinst.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-preserve_perms etc/rc.d/rc.mythbackend.new
-config etc/logrotate.d/mythbackend.new
-config etc/mythtv/config.xml.new
-config etc/mythtv/mysql.txt.new
-
-if [ -x /usr/bin/update-desktop-database ]; then
- /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
-fi
diff --git a/multimedia/mythtv/files/mysql.txt b/multimedia/mythtv/files/mysql.txt
deleted file mode 100644
index 9248cd501e..0000000000
--- a/multimedia/mythtv/files/mysql.txt
+++ /dev/null
@@ -1,39 +0,0 @@
-DBHostName=localhost
-
-# By default, Myth tries to ping the DB host to see if it exists.
-# If your DB host or network doesn't accept pings, set this to no:
-#
-#DBHostPing=no
-
-DBUserName=mythtv
-DBPassword=mythtv
-DBName=mythconverg
-DBType=QMYSQL3
-
-# Set the following if you want to use something other than this
-# machine's real hostname for identifying settings in the database.
-# This is useful if your hostname changes often, as otherwise you
-# will need to reconfigure mythtv (or futz with the DB) every time.
-# TWO HOSTS MUST NOT USE THE SAME VALUE
-#
-#LocalHostName=my-unique-identifier-goes-here
-
-# If you want your frontend to be able to wake your MySQL server
-# using WakeOnLan, have a look at the following settings:
-#
-#
-# The time the frontend waits (in seconds) between reconnect tries.
-# This should be the rough time your MySQL server needs for startup
-#
-#WOLsqlReconnectWaitTime=0
-#
-#
-# This is the number of retries to wake the MySQL server
-# until the frontend gives up
-#
-#WOLsqlConnectRetry=5
-#
-#
-# This is the command executed to wake your MySQL server.
-#
-#WOLsqlCommand=echo 'WOLsqlServerCommand not set'
diff --git a/multimedia/mythtv/files/mythfrontend.desktop b/multimedia/mythtv/files/mythfrontend.desktop
deleted file mode 100644
index a94ec5b303..0000000000
--- a/multimedia/mythtv/files/mythfrontend.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=mythTV frontend
-Comment=Record, playback and watch TV.
-Icon=mythfrontend
-Exec=mythfrontend
-Terminal=false
-Type=Application
-Categories=AudioVideo;Player;
diff --git a/multimedia/mythtv/files/mythfrontend.png b/multimedia/mythtv/files/mythfrontend.png
deleted file mode 100644
index 5d456be3af..0000000000
--- a/multimedia/mythtv/files/mythfrontend.png
+++ /dev/null
Binary files differ
diff --git a/multimedia/mythtv/files/mythtv-setup.desktop b/multimedia/mythtv/files/mythtv-setup.desktop
deleted file mode 100644
index 8fa20f756c..0000000000
--- a/multimedia/mythtv/files/mythtv-setup.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=mythTV setup
-Comment=Setup for mythTV.
-Icon=mythtv-setup
-Exec=mythtv-setup
-Terminal=false
-Type=Application
-Categories=AudioVideo;Player;
diff --git a/multimedia/mythtv/files/mythtv-setup.png b/multimedia/mythtv/files/mythtv-setup.png
deleted file mode 100644
index 5d456be3af..0000000000
--- a/multimedia/mythtv/files/mythtv-setup.png
+++ /dev/null
Binary files differ
diff --git a/multimedia/mythtv/files/mythtv.logrotate.d b/multimedia/mythtv/files/mythtv.logrotate.d
deleted file mode 100644
index a3024f4208..0000000000
--- a/multimedia/mythtv/files/mythtv.logrotate.d
+++ /dev/null
@@ -1,10 +0,0 @@
-/var/log/mythbackend.log /var/log/mythfrontend.log {
-rotate 4
-weekly
-notifempty
-sharedscripts
-missingok
-postrotate
-[ -f "/var/run/mythbackend.pid" ] && /bin/kill -HUP `cat /var/run/mythbackend.pid`
-endscript
-}
diff --git a/multimedia/mythtv/files/rc.mythbackend.new b/multimedia/mythtv/files/rc.mythbackend.new
deleted file mode 100644
index 7cb2683e6c..0000000000
--- a/multimedia/mythtv/files/rc.mythbackend.new
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-# Start/stop/restart mythbackend
-#
-# Modification done by Benoit Beauchamp, based on rc.mysqld by
-#
-# Copyright 2003 Patrick J. Volkerding, Concord, CA
-# Copyright 2003 Slackware Linux, Inc., Concord, CA
-#
-# This program comes with NO WARRANTY, to the extent permitted by law.
-# You may redistribute copies of this program under the terms of the
-# GNU General Public License.
-#
-LOG=/var/log/mythbackend.log
-PID=/var/run/mythbackend.pid
-MYTHTV_HOME=/etc/mythtv
-export MYTHCONFDIR="$MYTHTV_HOME"
-export HOME="$MYTHTV_HOME"
-
-# Start mythbackend:
-myth_start() {
- if [ -x /usr/bin/mythbackend ]; then
- # If there is an old PID file (no mythbackend running), clean it up:
- if [ -r $PID ]; then
- if ! ps axc | grep mythbackend 1> /dev/null 2> /dev/null ; then
- echo "Cleaning up old $PID."
- rm -f $PID
- fi
- fi
- echo "Starting mythbackend..."
- /usr/bin/mythbackend --logpath $LOG -v general -p $PID -d
- fi
-}
-
-# Stop mythbackend:
-myth_stop() {
- # If there is no PID file, ignore this request...
- if [ -r $PID ]; then
- echo "Stopping mythbackend..."
- killall mythbackend
- rm -f $PID
- fi
-}
-
-# Restart mythbackend:
-myth_restart() {
- myth_stop
- myth_start
-}
-
-case "$1" in
-'start')
- myth_start
- ;;
-'stop')
- myth_stop
- ;;
-'restart')
- myth_restart
- ;;
-*)
- echo "usage $0 start|stop|restart"
-esac
diff --git a/multimedia/mythtv/mythtv.SlackBuild b/multimedia/mythtv/mythtv.SlackBuild
deleted file mode 100644
index 7be04060db..0000000000
--- a/multimedia/mythtv/mythtv.SlackBuild
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for mythtv
-# http://www.mythtv.org/
-
-# Written by David Somero <dsomero@hotmail.com>
-# Derived from Slackware's Slackbuilds.
-#
-# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, Minnesota, USA
-# Copyright 2010-2013 David Somero (dsomero@hotmail.com) Athens, TN, USA
-# All rights reserved.
-#
-# 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=mythtv
-VERSION=${VERSION:-29.0}
-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-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$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 {} \+
-
-cd mythtv
-# Pass libdir to zeromq.
-sed -i \
- -e"s|--without-documentation|--without-documentation --libdir=/usr/lib$LIBDIRSUFFIX|" \
- configure
-
-# 20220214 bkw: broken test in configure: it's intended to make sure
-# qt5 version >= 5.1.x, but it doesn't take into account the possibility
-# that the minor version number might have 2 digits. at this late date,
-# we'll never have a qt5 5.x where x<10...
-sed -i '/Qt version 5/s,\\.*,",' configure
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --libdir-name=lib${LIBDIRSUFFIX} \
- --mandir=/usr/man \
- --compile-type=release \
- --dvb-path=/usr/include \
- --with-bindings="perl,python,php" \
- --perl-config-opts="INSTALLDIRS=vendor" \
- --disable-ccache \
- --disable-distcc \
- --disable-hdhomerun \
- --enable-dvb \
- --enable-xrandr \
- --enable-xv \
- --enable-x11 \
- --enable-nonfree \
- --enable-opengl-video \
- --enable-libmp3lame \
- --enable-libx264 \
- --enable-libvpx \
- --enable-libxvid \
- --enable-symbol-visibility \
- --enable-pic
-
-
-
-make
-make install INSTALL_ROOT="$PKG"
-
-# Don't package empty and wrong man directories.
-rm -rf $PKG/usr/share/man
-
-mkdir -p $PKG/var/lib/mythtv
-mkdir -p $PKG/var/cache/mythtv
-mkdir -p $PKG/etc/{logrotate.d,mythtv}
-
-# Other config/init files
-install -D -m 0755 $CWD/files/rc.mythbackend.new $PKG/etc/rc.d/rc.mythbackend.new
-touch $PKG/etc/mythtv/config.xml.new
-cat $CWD/files/mysql.txt > $PKG/etc/mythtv/mysql.txt.new
-cat $CWD/files/mythtv.logrotate.d > $PKG/etc/logrotate.d/mythbackend.new
-
-# Create desktop entry for mythfrontend and myth-setup.
-mkdir -p $PKG/usr/share/{pixmaps,applications}
-for file in mythtv-setup mythfrontend; do
- cat $CWD/files/$file.png > $PKG/usr/share/pixmaps/$file.png
- cat $CWD/files/$file.desktop > $PKG/usr/share/applications/$file.desktop
-done
-
-# Copy some other needed stuff to /usr/share/mythtv
-# Nuke Windows and Mac OS X build scripts
-rm -rf contrib/Win32 contrib/OSX
-cp -a database contrib $PKG/usr/share/$PRGNAM
-
-find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f
-
-find $PKG | xargs 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 FAQ keys.txt README UPGRADING docs/* \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-cat $CWD/README.SLACKWARE > $PKG/usr/doc/$PRGNAM-$VERSION/README.SLACKWARE
-( cd $PKG/usr/doc ; ln -s $PRGNAM-$VERSION $PRGNAM )
-
-mkdir -p $PKG/install
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-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/multimedia/mythtv/mythtv.info b/multimedia/mythtv/mythtv.info
deleted file mode 100644
index dcdd4dd2a7..0000000000
--- a/multimedia/mythtv/mythtv.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="mythtv"
-VERSION="29.0"
-HOMEPAGE="https://www.mythtv.org/"
-DOWNLOAD="https://github.com/MythTV/mythtv/archive/v29.0/mythtv-29.0.tar.gz"
-MD5SUM="b76210627050e1adaabf8d7180f3402b"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="libass faac MySQL-python lxml urlgrabber perl-http-message libwww-perl perl-Net-UPnP perl-IO-Socket-INET6 x264 xvidcore"
-MAINTAINER="David Somero"
-EMAIL="dsomero@hotmail.com"
diff --git a/multimedia/mythtv/slack-desc b/multimedia/mythtv/slack-desc
deleted file mode 100644
index f997e53b91..0000000000
--- a/multimedia/mythtv/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------------------------------------------------------|
-mythtv: mythtv (mythical home media convergence PVR/DVR)
-mythtv:
-mythtv: MythTV is a GPL licensed suite of programs that allow you
-mythtv: to build the mythical home media convergence (PVR / DVR)
-mythtv: box on your own using Open Source software and operating
-mythtv: systems.
-mythtv:
-mythtv: Homepage: https://www.mythtv.org/
-mythtv:
-mythtv:
-mythtv: