gnu-smalltalk 3.2.4
- Upgrade to version 3.2.4 - Add a deps on automake, libtool, and xz - Add a build time dep on gawk. Fooling it with awk is lame - Change to always require libffi and libsigsegv, fixes deprecated - Leave the fails_with :llvm at build 2334 untested - Add a `--tests` option to run the testsuite (which hangs atm) - Apply the existing autoconf-2.61 patch expect when `--tests` - Recreate the existing patch to stop it from failing at Hunk 2. - Add a `--tcltk` option to build the Tk module using X11. - Add a dep on X11 only if the user options tcltk. - Add `--disable-gtk` flag to configure to be specific. - Change `autoreconf` to always run, fixes build error. Fixes Homebrew/homebrew#15438 Closes Homebrew/homebrew#15470. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
b89178f8fa
commit
9e9a26c633
1 changed files with 40 additions and 67 deletions
|
@ -1,31 +1,28 @@
|
|||
require 'formula'
|
||||
|
||||
# References:
|
||||
# * http://smalltalk.gnu.org/wiki/building-gst-guides
|
||||
#
|
||||
# Note for version 3.2.2, we build 32-bit, which means that 64-bit
|
||||
# optional dependencies will break the build. You may need
|
||||
# to "brew unlink" these before installing GNU Smalltalk and
|
||||
# "brew link" them afterwards:
|
||||
# * gdbm
|
||||
|
||||
class GnuSmalltalk < Formula
|
||||
homepage 'http://smalltalk.gnu.org/'
|
||||
url 'http://ftpmirror.gnu.org/smalltalk/smalltalk-3.2.2.tar.gz'
|
||||
mirror 'http://ftp.gnu.org/gnu/smalltalk/smalltalk-3.2.2.tar.gz'
|
||||
sha1 'a985d69e4760420614c9dfe4d3605e47c5eb8faa'
|
||||
url 'http://ftpmirror.gnu.org/smalltalk/smalltalk-3.2.4.tar.xz'
|
||||
mirror 'http://ftp.gnu.org/gnu/smalltalk/smalltalk-3.2.4.tar.xz'
|
||||
sha1 '75b7077a02abb2ec01c5975e22d6138b541db38e'
|
||||
|
||||
head 'https://github.com/bonzini/smalltalk.git'
|
||||
|
||||
if build.head?
|
||||
depends_on :automake
|
||||
depends_on :libtool
|
||||
end
|
||||
option 'tests', 'Verify the build with make check (this may hang)'
|
||||
option 'tcltk', 'Build the Tcl/Tk module that requires X11'
|
||||
|
||||
# Need newer versions on Snow Leopard
|
||||
depends_on 'automake' => :build
|
||||
depends_on 'libtool' => :build
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'readline'
|
||||
depends_on 'libffi' if build.head?
|
||||
depends_on 'libsigsegv' if build.head?
|
||||
depends_on 'xz' => :build
|
||||
depends_on 'gawk' => :build
|
||||
depends_on 'readline' => :build
|
||||
depends_on 'libffi' => :recommended
|
||||
depends_on 'libsigsegv' => :recommended
|
||||
depends_on 'glew' => :optional
|
||||
depends_on :x11 if build.include? 'tcltk'
|
||||
|
||||
fails_with :llvm do
|
||||
build 2334
|
||||
|
@ -34,62 +31,40 @@ class GnuSmalltalk < Formula
|
|||
|
||||
def patches
|
||||
# Builds GNU Smalltalk clean in 64-bit mode with SDL and Cairo support
|
||||
# by using autoconf version 2.61 and automake version 1.10.
|
||||
|
||||
# More information here:
|
||||
# by using autoconf version 2.61 and automake version 1.10. The testsuite
|
||||
# requires 2.63, however. So exclude the patch for that case. See also:
|
||||
# http://www.eighty-twenty.org/index.cgi/tech/smalltalk/building-gnu-smalltalk-20110926.html
|
||||
|
||||
DATA if build.head?
|
||||
DATA unless build.include? 'tests'
|
||||
end
|
||||
|
||||
def install
|
||||
# GNU Smalltalk thinks it needs GNU awk, but it works fine
|
||||
# with OS X awk, so let's trick configure.
|
||||
system "ln -s /usr/bin/awk #{buildpath}/gawk"
|
||||
ENV['AWK'] = "#{buildpath}/gawk"
|
||||
ENV.m32 unless MacOS.prefer_64_bit?
|
||||
|
||||
if build.head?
|
||||
ENV.m32 unless MacOS.prefer_64_bit?
|
||||
|
||||
system "autoreconf -fi"
|
||||
else
|
||||
# 64-bit version doesn't build in 3.2.2, so force 32 bits.
|
||||
ENV.m32
|
||||
|
||||
if MacOS.prefer_64_bit? and Formula.factory('gdbm').installed?
|
||||
onoe "A 64-bit gdbm will cause linker errors"
|
||||
puts <<-EOS.undent
|
||||
GNU Smalltalk doesn't compile 64-bit clean on OS X, so having a
|
||||
64-bit gdbm installed will break linking you may want to do:
|
||||
$ brew unlink gdbm
|
||||
$ brew install gnu-smalltalk
|
||||
$ brew link gdbm
|
||||
EOS
|
||||
end
|
||||
|
||||
ENV['FFI_CFLAGS'] = '-I/usr/include/ffi'
|
||||
args = %W[
|
||||
--disable-debug
|
||||
--disable-dependency-tracking
|
||||
--prefix=#{prefix}
|
||||
--disable-gtk
|
||||
--with-readline=#{Formula.factory('readline').lib}
|
||||
]
|
||||
unless build.include? 'tcltk'
|
||||
args << '--without-tcl' << '--without-tk' << '--without-x'
|
||||
end
|
||||
|
||||
args = ["--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--with-readline=#{Formula.factory("readline").lib}"]
|
||||
|
||||
# disable generational gc to build HEAD in 32-bit
|
||||
args << "--disable-generational-gc" if build.head? and not MacOS.prefer_64_bit?
|
||||
# disable generational gc in 32-bit
|
||||
args << "--disable-generational-gc" unless MacOS.prefer_64_bit?
|
||||
|
||||
system 'autoreconf', '-ivf'
|
||||
system "./configure", *args
|
||||
system "make"
|
||||
ENV.deparallelize # Parallel install doesn't work
|
||||
system 'make', '-j1', 'check' if build.include? 'tests'
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
||||
__END__
|
||||
diff --git a/Makefile.am b/Makefile.am
|
||||
index 732a72c..121e90a 100644
|
||||
--- a/Makefile.am
|
||||
+++ b/Makefile.am
|
||||
--- a/Makefile.am 2011-03-21 04:32:44.000000000 -0700
|
||||
+++ b/Makefile.am 2012-10-14 14:52:13.000000000 -0700
|
||||
@@ -16,7 +16,7 @@
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
|
@ -97,18 +72,16 @@ index 732a72c..121e90a 100644
|
|||
-AUTOMAKE_OPTIONS = gnu 1.11 dist-xz
|
||||
+AUTOMAKE_OPTIONS = gnu 1.10
|
||||
ACLOCAL_AMFLAGS = -I build-aux
|
||||
DISTCHECK_CONFIGURE_FLAGS=--without-system-libltdl --without-system-libsigsegv --without-system-libffi
|
||||
|
||||
PACKAGE=smalltalk
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e45cda3..6a66275 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -6,7 +6,7 @@ dnl with this software.
|
||||
--- a/configure.ac 2011-03-21 04:32:44.000000000 -0700
|
||||
+++ b/configure.ac 2012-10-14 14:53:34.000000000 -0700
|
||||
@@ -6,7 +6,7 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
|
||||
dnl 2.63 needed by testsuite, actually
|
||||
-AC_PREREQ(2.63)
|
||||
+AC_PREREQ(2.61)
|
||||
AC_INIT([GNU Smalltalk], 3.2.90, help-smalltalk@gnu.org, smalltalk,
|
||||
AC_INIT([GNU Smalltalk], 3.2.4, help-smalltalk@gnu.org, smalltalk,
|
||||
[http://smalltalk.gnu.org/])
|
||||
MAINTAINER="bonzini@gnu.org"
|
||||
|
|
Loading…
Reference in a new issue