freebsd-ports/multimedia/handbrake/files/patch-contrib-Jamfile
Beech Rintoul 5b0ea77825 - Update to 0.9.3
PR:		ports/129668
Submitted by:	Jonathan Stewart <jonathan@kc8onw.net> (maintainer)
2008-12-17 23:44:02 +00:00

34 lines
822 B
Text

--- contrib/Jamfile.orig 2008-11-28 10:27:18.908822069 -0500
+++ contrib/Jamfile 2008-11-28 10:27:21.787542159 -0500
@@ -34,9 +34,10 @@
}
actions Wget
{
- $(RM) $(<) &&
- $(WGET) $(<) `cat $(>)` &&
- ( touch $(<) || true )
+# $(RM) $(<) &&
+# $(WGET) $(<) `cat $(>)` &&
+# ( touch $(<) || true )
+ true
}
# liba52
@@ -99,6 +100,16 @@
FFMPEG_EXTRA_OPTIONS = "--disable-vis --disable-demuxer=mpc8 --disable-vhook --disable-network" ;
}
+ if $(OS) = FREEBSD
+ {
+ #
+ # Not all of ffmpeg works on FreeBSD - disable the bits that
+ # don't. When we get new versions of FFMPEG we can try enabling
+ # them again.
+ #
+ FFMPEG_EXTRA_OPTIONS = "--disable-devices" ;
+ }
+
Depends $(<) : $(>) ;
Depends lib : $(<) ;
}