calcurse 2.9.2

Update calcurse to version 2.9.2.
Update to the new homepage.
Update to the new tarball location.
Remove patches merged upstream.
Remove ENV.O3 flag, which is the default now.
Remove mandir, which is fixed upstream.
Compiles and runs on Snow Leopard using XCode-4.0.2, clang, & llvm.

Closes Homebrew/homebrew#8486.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Nibbles 2bits 2011-11-06 23:43:43 -08:00 committed by Jack Nagel
parent 6cddf36886
commit cd669a01a0

View file

@ -1,50 +1,17 @@
require 'formula' require 'formula'
class Calcurse < Formula class Calcurse < Formula
url 'http://culot.org/cgi-bin/get.cgi?calcurse-2.7.tar.gz' url 'http://calcurse.org/files/calcurse-2.9.2.tar.gz'
homepage 'http://culot.org/calcurse/' homepage 'http://calcurse.org/'
md5 'eddfae36370fd89532149fe80c312e1e' md5 '5cb7d9c9edddc551fc62c9c5733591c5'
depends_on 'gettext' depends_on 'gettext'
def patches
DATA
end
def install def install
ENV.append 'CFLAGS', "-I#{include} -fnested-functions" # need this flag otherwise there is a build error.
ENV.append 'LDFLAGS', "-lintl" ENV.append 'CFLAGS', "-fnested-functions"
ENV.O3 system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make" system "make"
system "make install" system "make install"
end end
end end
__END__
diff --git a/configure b/configure
index 69d2800..175871e 100755
--- a/configure
+++ b/configure
@@ -1488,7 +1488,8 @@ else
if test -f "$ac_aux_dir/mkinstalldirs"; then
mkdir_p='$(mkinstalldirs)'
else
- mkdir_p='$(SHELL) $(install_sh) -d'
+ #mkdir_p='$(SHELL) $(install_sh) -d'
+ mkdir_p='$(install_sh) -d'
fi
fi
@@ -1706,7 +1707,8 @@ else
fi
fi
-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
+#INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
# We need awk for the "check" target. The system "awk" is bad on
# some platforms.