View Single Post
Old 30th December 2005, 22:31   #915  |  Link
bob0r
Pain and suffering
 
bob0r's Avatar
 
Join Date: Jul 2002
Posts: 1,337
Wow nice, CVS :)

And yes, SF always has weird errors.

I myself have to retry like 10x also before it works:
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/megui co -P MeGUI-src.CVS

@Sharktooth, yeah LOL, when i update ffdshow i need to wait for the damn files to update also :)

Browsing http://cvs.sourceforge.net/viewcvs.p...MeGUI-src.CVS/ until a new version number is visible is the best solution!

@All:

Here a simple script to get megui source and compile it with .net 1.1, example from my system:
Code:
#!/bin/sh

## Change paths
megui_dir=/home/user/MeGUI-src.CVS/
net_dir=C:\\/WINDOWS\\/Microsoft.NET\\/Framework\\/v1.1.4322\\/

if [ ! -d "$megui_dir" ]; then
 while true; do
 cd; cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/megui co -P MeGUI-src.CVS;
  if [ -d "$megui_dir" ]; then
  break
  fi
 sleep 10
 done
fi

cd $megui_dir;

sed -e 's/csc \/res/'$net_dir'csc \/res/' compile.bat > compile_m.bat;
start //low //b //w compile_m x264-svn;

## Manually enter: exit
## Blame csc.exe, not me :)
bob0r is offline   Reply With Quote