homebrew-core/Formula/gnu-chess.rb
Jack Nagel fa3d89a7c0 Use automatic mirror selection for GNU downloads
It seems that the main GNU download site has issues in some places
outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick
a nearby mirror.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12 15:08:20 -05:00

59 lines
1.9 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

require 'formula'
class GnuChess < Formula
url 'http://ftpmirror.gnu.org/chess/gnuchess-5.07.tar.gz'
homepage 'http://www.gnu.org/software/chess/'
md5 '259da00aa559e5624c65279484fccaf7'
def patches
# v4 of the gcc compiler uncovered an error in the code that should be corrected in
# the 5.08 version of gnuchess.
#
# The error:
# input.c:95: error: static declaration of input_thread follows non-static declaration
#
# The patch removes 'static' from the declaration in input.c. See msg at
# http://www.mail-archive.com/bug-gnu-chess@gnu.org/msg00218.html
DATA
end
def install
# Opening book for gnuchess. This can be put in the doc directory and the
# user can optionally add the opening book. The README has details on
# adding the opening book.
book_url = "http://ftpmirror.gnu.org/chess/book_1.01.pgn.gz"
ohai "Downloading #{book_url}"
curl book_url, "-O"
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
ENV.j1 # Prevents a "file already exists" warning
system "make install"
doc.install Dir['doc/*']
doc.install ['TODO', 'book_1.01.pgn.gz', 'book']
end
def caveats; <<-EOS.undent
The README file contains a manual for use:
#{doc}/README
This formula also downloads the additional opening book. The opening
book is a gzipped PGN file that can be added using gnuchess commands.
The book_*.pgn.gz file is located in the same directory as the README.
See the README for using the `book add' command.
EOS
end
end
__END__
diff --git a/src/input.c b/src/input.c
index 1fb9be3..5f0ff79 100644
--- a/src/input.c
+++ b/src/input.c
@@ -92,7 +92,7 @@ void getline_standard(char *p)
fgets(inputstr, MAXSTR, stdin);
}
-static pthread_t input_thread;
+pthread_t input_thread;
/* Mutex and condition variable for thread communication */