aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-05-08 11:23:46 -0700
committerJack Nagel2012-05-08 22:14:39 -0500
commitb19bf8fe3109fd3e7c3060684f623db7a8ad9bef (patch)
tree89729570a204a063adfaf1b533875ceb2d4d1355 /Library/Formula
parent47c6f9b77f9c07f531bf2e5fd7d605205e3f05f6 (diff)
downloadhomebrew-b19bf8fe3109fd3e7c3060684f623db7a8ad9bef.tar.bz2
movgrab 1.1.10
Upgrade movgrab to version 1.1.10. Adjust the patch line number which was off by a bit. Adjust the comments and commands to fall within the 80 character margins. Add info about the upstream bug report status. Closes #12152. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/movgrab.rb29
1 files changed, 16 insertions, 13 deletions
diff --git a/Library/Formula/movgrab.rb b/Library/Formula/movgrab.rb
index 401f4ab95..c9f0e0855 100644
--- a/Library/Formula/movgrab.rb
+++ b/Library/Formula/movgrab.rb
@@ -1,35 +1,38 @@
require 'formula'
class Movgrab < Formula
- url 'http://sites.google.com/site/columscode/files/movgrab-1.1.9.tgz'
homepage 'http://sites.google.com/site/columscode'
- sha1 'd1439dea2a2ae2c0ef14322bac3693c57275570e'
+ url 'http://sites.google.com/site/columscode/files/movgrab-1.1.10.tgz'
+ sha1 '2a87105501a3397d513c495d9d1f982ef2e09195'
def patches
- # diffs 1-3 fix compile errors with Clang, non-void functions should return a value
- # diff 4 fixes compile error with Clang, c99 "inline" function -> unresolved symbols.
- # All patches including the --no-recusion hack have been emailed upstream.
+ # 1-3 fix Clang compile errors: non-void functions should return a value
+ # 4 fixes Clang compile error: c99 "inline" function -> unresolved symbols.
+ # All patches including the --no-recusion hack have been emailed upstream at
+ # version 1.1.9. As of 1.1.10, no reply from the developer.
DATA
end
def install
- # If we let configure recurse into libUseful-2.0, it propogates CC and CFLAGS into
- # the second configure command line, which configure can't parse, causing an error.
- # The workaround is to manually configure libUseful-2.0 without the env vars.
+ # When configure recurses into libUseful-2.0, it puts CC and CFLAGS into
+ # the second configure command line causing an error, invalid host type.
+ # The workaround is to manually configure libUseful-2.0 without those.
# The cache-file and srcdir arguments parse ok. So those were left in.
- system "./configure", "--prefix=#{prefix}", "--no-recursion"
+ system './configure', "--prefix=#{prefix}", '--no-recursion'
cd 'libUseful-2.0' do
- system "./configure", "--prefix=#{prefix}", '--cache-file=/dev/null', '--srcdir=.'
+ system './configure', "--prefix=#{prefix}",
+ '--cache-file=/dev/null',
+ '--srcdir=.'
end
- system "make"
- system "make install"
+ system 'make'
+ system 'make install'
end
end
__END__
--- a/main.c 2012-02-10 07:34:13.000000000 -0800
+++ b/main.c 2012-02-12 10:22:28.000000000 -0800
-@@ -78,7 +78,7 @@
+@@ -76,7 +76,7 @@
int Port;
int RetVal=FALSE;