You are not logged in.

#1 2006-09-04 15:33:45

peque
Member
From: Denmark - Møn
Registered: 2005-06-26
Posts: 441

Problem about MythTV

Well I have installed MythTV on my Arch in the sopring no troubles then - But after the great update I experience some problems about transcoding - and in the end i desidet to reinstall the machine:

Well after installing MythTV (went well) I now trying to install the plugins - but having some issues about the plugins:
Most of them are not failing but having some error during makepkg??? THe plugins are not installed:
Afterwards When I try to install the MythTVweb package I Run into THis problem:
==> Making package: mythweb 0.19.20060724-1 (Mon Sep  4 17:33:09 CEST 2006)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
==>     Using local copy of mythplugins-0.19.20060724.tar.gz
==> Validating source files with MD5sums
    mythplugins-0.19.20060724.tar.gz ... Passed
==> Extracting Sources...
==>     tar --use-compress-program=gzip -xf mythplugins-0.19.20060724.tar.gz
==> Removing existing pkg/ directory...
==> Starting build()...
mkdir: missing operand
Try `mkdir --help' for more information.
./PKGBUILD: line 19: /root/myth/mythweb/pkg/home/httpd/html/mythweb/image_cache: No such file or directory
./PKGBUILD: line 21: /root/myth/mythweb/pkg/home/httpd/html/mythweb: No such file or directory
cp: missing destination file operand after `/root/myth/mythweb/src/mythplugins/mythweb/.htaccess'
Try `cp --help' for more information.
./PKGBUILD: line 23: /root/myth/mythweb/pkg/home/httpd/html/mythweb: No such file or directory
rm: cannot remove `/root/myth/mythweb/pkg/home/httpd/html/mythweb/README': No such file or directory
rm: cannot remove `/root/myth/mythweb/pkg/home/httpd/html/mythweb/TODO': No such file or directory
chown: cannot access `/root/myth/mythweb/pkg/home/httpd/html/mythweb': No such file or directory
chmod: missing operand after `g+rw'
Try `chmod --help' for more information.
./PKGBUILD: line 27: /root/myth/mythweb/pkg/home/httpd/html/mythweb/image_cache: No such file or directory
==> ERROR: Build Failed.  Aborting...


But last time it went without any problem(But that was a different packages?
Can anybody see whats wrong - that I normally don't know that much about building the packages myself???
The PKGBUILD look like this :
$Id: PKGBUILD,v 1.2 2006/07/31 12:22:23 Cerebral Exp $
# Maintainer: Travis Willard <travisw>
# Contributor: Philipp Giebel <arch>

pkgname=mythweb
pkgver=0.19.20060724
pkgrel=1
pkgdesc="Web interface for MythTV's backend"
url="http://www.mythtv.org"
depends=('mythtv' 'apache' 'php')
groups=('mythtv-extras')
license="GPL"
install="mythweb.install"
source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz)
md5sums=('3bbc37cb261e6ad0e8baf58655cd3979')

build() {
   mkdir -p
$startdir/pkg/home/httpd/html/mythweb/{image_cache,php_sessions}
   cp -r $startdir/src/mythplugins/$pkgname/*
$startdir/pkg/home/httpd/html/mythweb
   cp $startdir/src/mythplugins/$pkgname/.htaccess
$startdir/pkg/home/httpd/html/mythweb
   rm $startdir/pkg/home/httpd/html/mythweb/{README,TODO}
   chown -R nobody:nobody $startdir/pkg/home/httpd/html/mythweb
   chmod g+rw
$startdir/pkg/home/httpd/html/mythweb/{image_cache,php_sessions,data}
}

Thanks guys


Just getting better .... All the time

Offline

#2 2006-09-04 17:22:58

Cerebral
Forum Fellow
From: Waterloo, ON, CA
Registered: 2005-04-08
Posts: 3,108
Website

Re: Problem about MythTV

Two things:
1) You shouldn't have to build these packages anymore - they're all in community.  Enable the [community] repo in /etc/pacman.conf and then just run pacman -S mythweb

2) Why are there so many linebreaks in your version of the PKGBUILD? That's what's screwing up your build.

$Id: PKGBUILD,v 1.2 2006/07/31 12:22:23 Cerebral Exp $
# Maintainer: Travis Willard <travisw>
# Contributor: Philipp Giebel <arch>

pkgname=mythweb
pkgver=0.19.20060724
pkgrel=1
pkgdesc="Web interface for MythTV's backend"
url="http://www.mythtv.org"
depends=('mythtv' 'apache' 'php')
groups=('mythtv-extras')
license="GPL"
install="mythweb.install"
source=(http://gerolde.archlinux.org/~paul/mythplugins-$pkgver.tar.gz)
md5sums=('3bbc37cb261e6ad0e8baf58655cd3979')

build() {
   mkdir -p #should be no newline here
$startdir/pkg/home/httpd/html/mythweb/{image_cache,php_sessions}
   cp -r $startdir/src/mythplugins/$pkgname/* #should be no newline here
$startdir/pkg/home/httpd/html/mythweb
   cp $startdir/src/mythplugins/$pkgname/.htaccess #should be no newline here
$startdir/pkg/home/httpd/html/mythweb
   rm $startdir/pkg/home/httpd/html/mythweb/{README,TODO}
   chown -R nobody:nobody $startdir/pkg/home/httpd/html/mythweb
   chmod g+rw #should be no newline here
$startdir/pkg/home/httpd/html/mythweb/{image_cache,php_sessions,data}
}

Offline

#3 2006-09-04 19:10:52

peque
Member
From: Denmark - Møn
Registered: 2005-06-26
Posts: 441

Re: Problem about MythTV

Well - Thanks dude!
Haven't seen that the packages have been moved to community! thatś make it all easiere!

Hmmm - Why isn't it possible to search the packages in community - in the search for packages


Just getting better .... All the time

Offline

#4 2006-09-04 20:05:04

Cerebral
Forum Fellow
From: Waterloo, ON, CA
Registered: 2005-04-08
Posts: 3,108
Website

Re: Problem about MythTV

the AUR package search shows which are in community and which aren't ("unsupported") - if you mean the frontpage search, I don't know why that doesn't interface with community.  I imagine that's planned down the road.

Offline

#5 2006-09-04 20:37:40

peque
Member
From: Denmark - Møn
Registered: 2005-06-26
Posts: 441

Re: Problem about MythTV

Great - Well - you can't get it all right here right now.
Thanks anyway! Normally I don't twist the things that much - when it works I do not do anything more!

But I have another problem! I have a Gigabyte motherboard nForce4SLI with a SPDIF output on - but not been able to use this as sound output. Have anybody any clue about this - I have tried all thatś written about in the wiki - but still I have to use pcm! Sad but true!
a lsmod | grep snd shows :
snd_seq_oss            31360  0
snd_seq_midi_event      6528  1 snd_seq_oss
snd_seq                50256  4 snd_seq_oss,snd_seq_midi_event
snd_seq_device          6796  2 snd_seq_oss,snd_seq
snd_pcm_oss            37664  0
snd_mixer_oss          16128  1 snd_pcm_oss
snd_intel8x0           29084  1
snd_ac97_codec         93216  1 snd_intel8x0
snd_ac97_bus            2304  1 snd_ac97_codec
snd_pcm                76292  3 snd_pcm_oss,snd_intel8x0,snd_ac97_codec
snd_timer              19972  2 snd_seq,snd_pcm
snd                    45924  11 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_ac97_codec,snd_pcm,snd_timer
soundcore               7776  1 snd
snd_page_alloc          8072  2 snd_intel8x0,snd_pcm
And in amixer the card is this:
IEC958 P

Can anybody give me a hint how to make this work - so that I'm able of using SPDIF (AC3 sound) instead of normal pcm - a bit boring to watch a good movie "only in stereo" ????

Thanks for all the help!
P.


Just getting better .... All the time

Offline

Board footer

Powered by FluxBB