openbsd-ports/graphics/ffmpeg/patches/patch-version_sh
jakemsr 64bd5edcd7 update to 20080118
relevent Changelog entries:

+- Monkey's Audio demuxer and decoder
+- additional SPARC (VIS) optimizations
+- AMV audio and video decoder
+- DNxHD encoder
+- H.264 PAFF decoding
+- Nellymoser ASAO decoder
+- Beam Software SIFF demuxer and decoder
+- libvorbis Vorbis decoding removed in favor of native decoder
+- IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
+- Ogg muxer
+- PC Paintbrush PCX decoder
+- Sun Rasterfile decoder
+- TechnoTrend PVA demuxer
+- Linux Media Labs MPEG-4 (LMLM4) demuxer

port changes:

disable ff_fdct_sse2 usage on i386 and libpostproc's
temporal noise reduction filter, since they both regularly
cause segfaults.

ok deanna@, brad@

tested by a few others, thanks
2008-01-26 01:56:02 +00:00

23 lines
1.0 KiB
Plaintext

$OpenBSD: patch-version_sh,v 1.3 2008/01/26 01:56:02 jakemsr Exp $
--- version.sh.orig Wed Oct 31 23:07:18 2007
+++ version.sh Sun Jan 20 01:12:29 2008
@@ -1,10 +1,15 @@
#!/bin/sh
# check for SVN revision number
-revision=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
-test $revision || revision=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
-test $revision || revision=`cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null`
+#revision=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
+#test $revision || revision=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
+#test $revision || revision=`cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null`
+#test $revision && revision=SVN-r$revision
+
+revision=`cd "$1" && grep Revision svn-info | \
+ cut -d' ' -f2 2> /dev/null`
test $revision && revision=SVN-r$revision
+test $revision || revision=UNKNOWN
# check for git short hash
if ! test $revision; then