summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/mythtv/stable-0.23/mythsmolt
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/mythtv/stable-0.23/mythsmolt')
-rw-r--r--abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD23
-rw-r--r--abs/core-testing/mythtv/stable-0.23/mythsmolt/mythsmolt.patch8
-rw-r--r--abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh39
3 files changed, 0 insertions, 70 deletions
diff --git a/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD b/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD
deleted file mode 100644
index 9041251..0000000
--- a/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-pkgname=mythsmolt
-pkgver=0.23
-pkgrel=4
-pkgdesc="mythsmolt, a hardware profileing tool"
-arch=('i686' 'x86_64')
-url="http://www.mythvantage.com"
-license=('GPL')
-depends=("mythtv>=${pkgver}" urlgrabber python-simplejson)
-source=("http://www.mythvantage.com/request.php?4" 'smolt_init_login.sh' 'mythsmolt.patch')
-
-groups=('mythtv-extras')
-
-build() {
- cd $startdir/src/mythsmolt
- patch -p1 < ../mythsmolt.patch || return 1
- ./configure.sh
- make || return 1
- make INSTALL_ROOT=$startdir/pkg install
- install -D -m 755 $srcdir/smolt_init_login.sh $pkgdir/etc/profile.d/smolt_init_login.sh
-}
-md5sums=('4641b425d1aa910d82972ebb3a8d4998'
- '57a3416d90e59abbd5062436583c17e1'
- '461350b3a7b9d7433cc11e2786e27005')
diff --git a/abs/core-testing/mythtv/stable-0.23/mythsmolt/mythsmolt.patch b/abs/core-testing/mythtv/stable-0.23/mythsmolt/mythsmolt.patch
deleted file mode 100644
index 9866587..0000000
--- a/abs/core-testing/mythtv/stable-0.23/mythsmolt/mythsmolt.patch
+++ /dev/null
@@ -1,8 +0,0 @@
-diff -ruaN mythsmolt.orig/settings.pro mythsmolt/settings.pro
---- mythsmolt.orig/settings.pro 2010-01-06 15:49:59.000000000 +0000
-+++ mythsmolt/settings.pro 2010-05-28 03:30:59.000000000 +0000
-@@ -1,3 +1,3 @@
-
--LIBVERSION = 0.22
-+LIBVERSION = 0.23
-
diff --git a/abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh b/abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh
deleted file mode 100644
index 0b76305..0000000
--- a/abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-if [ $UID = 0 -o $UID = 1000 ]
-then
- INIT=`ps -p 1 -o comm=`
- if [ x$INIT = xrunit ]
- then
- if [[ -f /home/mythtv/.configure && $- = *i* ]]
- then
- if [ ! -z "$PS1" ]
- then
- if [ $0 = "-bash" ]
- then
- if [ ! -e /home/mythtv/.mythtv/MythSmolt/hw-uuid ]
- then
- echo ""
- echo "####################################################"
- echo "It appears you have not yet run smolt"
- echo "Please take the time to submit your hardware profile"
- echo ""
- echo "press any key to continue:"
- echo "####################################################"
- read a
- mkdir -p /home/mythtv/.mythtv/MythSmolt
- chown -R mythtv:users /home/mythtv/.mythtv/MythSmolt
-
- if [ $UID = 0 ]
- then
- su mythtv -c "/usr/share/mythtv/mythsmolt/scripts/sendProfile.py" && su mythtv -c "touch /home/mythtv/.mythtv/MythSmolt/hw-uuid"
- else
- /usr/share/mythtv/mythsmolt/scripts/sendProfile.py && touch /home/mythtv/.mythtv/MythSmolt/hw-uuid
- fi
- fi
- fi
- fi
- fi
- fi
-fi
-
-
-