summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh')
-rwxr-xr-xabs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh99
1 files changed, 0 insertions, 99 deletions
diff --git a/abs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh b/abs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh
deleted file mode 100755
index ca457e3..0000000
--- a/abs/core-testing/mythtv/trunk/mythtv/compile_mythtv.sh
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/bin/bash
-# compile_mythtv.sh
-# rev 0.5 - 1Nov2008
-#
-# This script will compile and install MythTV
-#
-
-PKG_MAINTAINER=nharris@eoimaging.com
-echo PKG_MAINTAINER is set to $PKG_MAINTAINER
-
-PKG_VER=0.22-svn`date +%Y%m%d`
-echo PKG_VER is set to $PKG_VER
-
-cd src/mythtv-trunk
-
-#
-# compile mythtv
-#
-echo Compiling mythtv
-cd mythtv
-export QTDIR=/usr/share/qt
-./configure --enable-opengl-vsync --cpu=i686 --enable-vdpau --enable-opengl-vsync --enable-libfaad --prefix=/usr
-#./configure --cpu=i686 --enable-dvb --enable-xvmc --enable-opengl-vsync --enable-xvmc-pro --enable-libfaad --prefix=/usr
-qmake mythtv.pro
-make || return 1
-
-#
-# install mythtv
-#
-#echo "MythTV 0.22 SVN build" > description-pak
-#checkinstall -D --default --pkgname mythtv --pkgversion $PKG_VER --maintainer $PKG_MAINTAINER
-#mv myth*.deb ../..
-sudo make install
-cd ..
-
-#
-# compile mythplugins
-#
-echo Compiling mythplugings
-cd mythplugins
-./configure --enable-all --cpu=i686 --prefix=/usr
-qmake mythplugins.pro
-make || return 1
-
-#
-# install mythplugins
-#
-#echo "MythTV 0.22 SVN build" > description-pak
-#checkinstall -D --default --pkgname mythplugins --pkgversion $PKG_VER --maintainer $PKG_MAINTAINER
-#mv myth*.deb ../..
-sudo make install
-cd ..
-
-#
-# compile myththemes
-#
-echo Compiling myththemes
-cd myththemes
-./configure --prefix=/usr
-qmake myththemes.pro
-make || return 1
-
-#
-# install myththemes
-#
-#echo "MythTV 0.22 SVN build" > description-pak
-#checkinstall -D --default --pkgname myththemes --pkgversion $PKG_VER --maintainer $PKG_MAINTAINER
-#mv myth*.deb ../..
-sudo make install
-cd ..
-
-#
-# compile additional themes
-#
-echo Compiling additional themes
-cd themes
-./configure --prefix=/usr
-qmake themes.pro
-make || return 1
-
-#
-# install additional themes
-#
-#echo "MythTV 0.22 SVN build" > description-pak
-#checkinstall -D --default --pkgname mythtv-themes --pkgversion $PKG_VER --maintainer $PKG_MAINTAINER
-#mv myth*.deb ../..
-sudo make install
-cd ..
-
-#
-# update mythweb
-#
-cd mythplugins/mythweb
-sudo cp -R * /data/srv/httpd/htdocs/mythweb
-sudo chown -R http:users /data/srv/httpd/htdocs/mythweb
-cd ../..
-
-echo "DONE!"
-