aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-08-17 20:38:04 -0700
committerAdam Vandenberg2011-08-22 21:03:48 -0700
commitb2ce6bd9b09d8919fd6f4174482c083161071950 (patch)
tree47f07650a9ce2cbcbac8cd31a036293b06f60825
parent79da48297326542b13115ed8e5ae4adcf748e83f (diff)
downloadhomebrew-b2ce6bd9b09d8919fd6f4174482c083161071950.tar.bz2
GRASS: Remove FFmpeg for now
GRASS 6.4.1 is currently not compatible with FFmpeg 0.8. Removing the dependency until GRASS is updated. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/grass.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/Library/Formula/grass.rb b/Library/Formula/grass.rb
index 89da36e57..82f0cc213 100644
--- a/Library/Formula/grass.rb
+++ b/Library/Formula/grass.rb
@@ -21,7 +21,6 @@ class Grass < Formula
depends_on "libtiff"
depends_on "unixodbc"
depends_on "fftw"
- depends_on "ffmpeg"
depends_on "cairo" if MacOS.leopard?
@@ -39,10 +38,6 @@ class Grass < Formula
def install
readline = Formula.factory('readline')
gettext = Formula.factory('gettext')
- ffmpeg = Formula.factory('ffmpeg')
- ffmpeg_includes = ffmpeg.include.subdirs.map do |dir|
- dir.to_s.gsub(ffmpeg.prefix, HOMEBREW_PREFIX) + " "
- end
args = [
"--disable-debug", "--disable-dependency-tracking",
@@ -71,8 +66,6 @@ class Grass < Formula
"--with-nls",
"--with-freetype-includes=/usr/X11/include /usr/X11/include/freetype2",
"--with-freetype",
- "--with-ffmpeg-includes=#{ffmpeg_includes}",
- "--with-ffmpeg",
"--without-tcltk" # Disabled due to compatibility issues with OS X Tcl/Tk
]