You are not logged in.

#1 2009-04-19 02:05:01

banshee28
Member
Registered: 2008-10-18
Posts: 336

[Solved] Cant install mplayer-svn

Maybe I am missing something, but I am trying to install the svn for mplayer and getting this error asking me which file to patch.

Any suggestions:

100%[=====================================>] 222,567     86.6K/s   in 2.5s    

2009-04-18 20:52:37 (86.6 KB/s) - `Blue-1.7.tar.bz2.part' saved [222567/222567]

  -> Found no_segfault_configure.patch in build dir
==> Validating source files with md5sums...
    Blue-1.7.tar.bz2 ... Passed
    no_segfault_configure.patch ... Passed
==> Extracting Sources...
  -> bsdtar -x -f Blue-1.7.tar.bz2
==> Entering fakeroot environment...
==> Determining latest svn revision...
svn: Can't connect to host 'svn.mplayerhq.hu': Connection refused
==> Starting build()...
svn: Can't connect to host 'svn.mplayerhq.hu': Connection refused
==> SVN checkout done or server timeout
==> Starting make...
cp: cannot stat `mplayer': No such file or directory
./PKGBUILD: line 38: cd: mplayer-build: No such file or directory
can't find file to patch at input line 3
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|--- a/configure.old     2008-11-15 23:27:59.000000000 +0100
|+++ b/configure 2008-11-15 23:28:26.000000000 +0100
--------------------------
File to patch:

Last edited by banshee28 (2009-04-19 17:59:08)


Arch64, AMD64, LXDE

Offline

#2 2009-04-19 02:32:15

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Solved] Cant install mplayer-svn

svn: Can't connect to host 'svn.mplayerhq.hu': Connection refused

It looks to me like mplayer's subversion tree is down.

--EDIT--

I just built mplayer from subversion. If the connection was down before, try it again.

Offline

#3 2009-04-19 02:50:18

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

Does this happen frequently?
Will try again.

Last edited by banshee28 (2009-04-19 02:50:45)


Arch64, AMD64, LXDE

Offline

#4 2009-04-19 02:52:09

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Solved] Cant install mplayer-svn

banshee28 wrote:

Does this happen frequently?
Will try again.

It's pretty rare.

Offline

#5 2009-04-19 02:56:19

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

I am getting the same error. It could be my firewall. Although I am not sure why this would be different than other pkg's that have never had a firewall issue?
I am using yaourt -Sy mplayer-svn to get the pkg.


Arch64, AMD64, LXDE

Offline

#6 2009-04-19 03:05:03

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Solved] Cant install mplayer-svn

I'm not sure about the firewall. I did compare my PKGBUILD with the one in AUR (mplayer-svn) and they are slightly different in the svn pull down lines. I don't know if it matters though. The significant part is in the else block:

  if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
  else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
  fi

Offline

#7 2009-04-19 03:24:08

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

Well, it seems like the firewall was the culprit this time! For some reason this pkg uses port 3690 which was being blocked. Once I opened up that port, it went right through. Not sure why this was diff than others?

I do have 2 more questions:

1) Is it normal for some of these AUR packages to take 2-5 mins to install? They go through thousands of lines and many pages of commands which seems like quite a long time to install a rather small media player?

2) Whats the best way to maintain this and keep it up-to-date? Will it update with -Syu or do I need to install it again? Not sure about the svn setup?

Thanks

EDIT: This also fixed my cairo-doc install problem. Sweeet  big_smile

Last edited by banshee28 (2009-04-19 03:33:55)


Arch64, AMD64, LXDE

Offline

#8 2009-04-19 03:33:21

SamC
Member
From: Calgary
Registered: 2008-05-13
Posts: 611
Website

Re: [Solved] Cant install mplayer-svn

Have you not heard of the concept of "compiling"? 2-5 minutes is quite short, try compiling something like firefox or webkit, those take a while.

Offline

#9 2009-04-19 03:34:52

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

SamC wrote:

Have you not heard of the concept of "compiling"? 2-5 minutes is quite short, try compiling something like firefox or webkit, those take a while.

Yea that pidgin-light took a while. Just wanted to make sure that was normal. Now I can see it is.


Arch64, AMD64, LXDE

Offline

#10 2009-04-19 04:15:20

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Solved] Cant install mplayer-svn

banshee28 wrote:

1) Is it normal for some of these AUR packages to take 2-5 mins to install? They go through thousands of lines and many pages of commands which seems like quite a long time to install a rather small media player?

The mplayer subversion tree as of right now has 2752 files, so the initial download will take a little while. It tries to optimize the code based on your current processor and it does a bit of linking. It does take a while to compile.

banshee28 wrote:

2) Whats the best way to maintain this and keep it up-to-date? Will it update with -Syu or do I need to install it again? Not sure about the svn setup?

Assuming that you didn't delete the build folder, the package will only pull down new files in the build tree, so it won't take as long to download next time. Although, it's pulling in FFmpeg which changes very quickly. The compile times will probably stay roughly the same.

Offline

#11 2009-04-19 09:58:37

Nepherte
Member
From: Singapore
Registered: 2008-09-09
Posts: 427

Re: [Solved] Cant install mplayer-svn

You could start disabling features you don't need. That will save you some compilation time. But as said before, 2 to 5 minutes isn't much.

Offline

#12 2009-04-19 12:21:46

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

Thanks everyone. One more question.

Can I install smplayer so I can have that gui replace mplayers, and still maintain the latest svn of mplayer? Smplayer will not overwrite the mplayer files right?


Arch64, AMD64, LXDE

Offline

#13 2009-04-19 12:23:07

kensai
Member
From: Puerto Rico
Registered: 2005-06-03
Posts: 2,484
Website

Re: [Solved] Cant install mplayer-svn

Nope, totally safe to install smplayer.


Follow me in: Identi.ca, Twitter, Google+

Offline

#14 2009-04-19 17:58:39

banshee28
Member
Registered: 2008-10-18
Posts: 336

Re: [Solved] Cant install mplayer-svn

kensai wrote:

Nope, totally safe to install smplayer.

Thanks big_smile


Arch64, AMD64, LXDE

Offline

#15 2009-04-19 18:02:02

skottish
Forum Fellow
From: Here
Registered: 2006-06-16
Posts: 7,942

Re: [Solved] Cant install mplayer-svn

banshee28 wrote:

Thanks everyone. One more question.

Can I install smplayer so I can have that gui replace mplayers, and still maintain the latest svn of mplayer? Smplayer will not overwrite the mplayer files right?

The front-ends for mplayer have nothing to do with mplayer itself. So, you can go a step further in not compiling gmplayer at all. This will save a wee bit of space and not pollute any menus that you may have:

1) add --disable-gui to the configure line

2) remove "http://www.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2" from the source array and the associated md5sum line.

3) remove "mv ${srcdir}/Blue ${pkgdir}/usr/share/mplayer/skins/default"

4) I don't have the configure patch in my build and it works fine. I know others have had some problems though.

Offline

Board footer

Powered by FluxBB