Revision: 75318 http://trac.macports.org/changeset/75318 Author: ryandesign@macports.org Date: 2011-01-21 04:39:25 -0800 (Fri, 21 Jan 2011) Log Message: ----------- ffmpeg-devel: use peg revisions, not operative ones, when accessing the Subversion repository, to fix fetch failure; see #28074 Modified Paths: -------------- trunk/dports/multimedia/ffmpeg-devel/Portfile Modified: trunk/dports/multimedia/ffmpeg-devel/Portfile =================================================================== --- trunk/dports/multimedia/ffmpeg-devel/Portfile 2011-01-21 11:24:24 UTC (rev 75317) +++ trunk/dports/multimedia/ffmpeg-devel/Portfile 2011-01-21 12:39:25 UTC (rev 75318) @@ -83,8 +83,8 @@ fetch { if {![file isdirectory ${distpath}/${svn_rev}]} { file mkdir ${distpath}/${svn_rev} - system "svn co -r${svn_rev} --ignore-externals svn://svn.ffmpeg.org/ffmpeg/trunk ${distpath}/${svn_rev}/trunk" - system "svn co -r${swscale_rev} svn://svn.ffmpeg.org/mplayer/trunk/libswscale ${distpath}/${svn_rev}/trunk/libswscale" + system "svn co --ignore-externals svn://svn.ffmpeg.org/ffmpeg/trunk@${svn_rev} ${distpath}/${svn_rev}/trunk" + system "svn co svn://svn.ffmpeg.org/mplayer/trunk/libswscale@${swscale_rev} ${distpath}/${svn_rev}/trunk/libswscale" system "touch ${distpath}/${svn_rev}/trunk/.complete" } }