diff options
Diffstat (limited to 'abs')
| -rw-r--r-- | abs/core-testing/mythinstall/PKGBUILD | 2 | ||||
| -rw-r--r-- | abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD | 21 | ||||
| -rw-r--r-- | abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh | 39 | 
3 files changed, 61 insertions, 1 deletions
| diff --git a/abs/core-testing/mythinstall/PKGBUILD b/abs/core-testing/mythinstall/PKGBUILD index f7e8e58..ee091ce 100644 --- a/abs/core-testing/mythinstall/PKGBUILD +++ b/abs/core-testing/mythinstall/PKGBUILD @@ -1,7 +1,7 @@  # Maintainer: Jams  pkgname=mythinstall  pkgver=2 -pkgrel=44 +pkgrel=45  pkgdesc="LinHES installer/systemconfig GUI."  arch=i686  depends=() diff --git a/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD b/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD new file mode 100644 index 0000000..0d5bdb6 --- /dev/null +++ b/abs/core-testing/mythtv/stable-0.23/mythsmolt/PKGBUILD @@ -0,0 +1,21 @@ +pkgname=mythsmolt +pkgver=0.23 +pkgrel=1 +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' ) + +groups=('mythtv-extras') + +build() { +   cd $startdir/src/mythsmolt +   ./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') 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 new file mode 100644 index 0000000..0b76305 --- /dev/null +++ b/abs/core-testing/mythtv/stable-0.23/mythsmolt/smolt_init_login.sh @@ -0,0 +1,39 @@ +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 + + + | 
