From 81a43f20e8f2dc0aca9e226c85b16931ba6f444c Mon Sep 17 00:00:00 2001
From: Markus Prinz <markus.prinz@nuclearsquid.com>
Date: Mon, 26 Oct 2009 23:13:36 +0100
Subject: [PATCH] Fortune Formula
Adds the fortune program along with cookie files.
Signed-off-by: Max Howell <max@methylblue.com>
I replaced the sed usage with our safer inreplace function.
---
Library/Formula/fortune.rb | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
create mode 100644 Library/Formula/fortune.rb
diff --git a/Library/Formula/fortune.rb b/Library/Formula/fortune.rb
new file mode 100644
index 0000000..bb714e1
--- /dev/null
+++ b/Library/Formula/fortune.rb
@@ -0,0 +1,28 @@
+require 'formula'
+
+class Fortune <Formula
+ url 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/fortune-mod-9708.tar.gz'
+ homepage 'http://ftp.ibiblio.org/pub/linux/games/amusements/fortune/!INDEX.html'
+ md5 '81a87a44f9d94b0809dfc2b7b140a379'
+
+ def options
+ [
+ ['--no-offensive', "Don't install potentially offenive fortune files"]
+ ]
+ end
+
+ def install
+ ENV.deparallelize
+
+ inreplace 'Makefile', 'FORTDIR=/usr/local/games', "FORTDIR=/usr/local/bin"
+ inreplace 'Makefile', '/usr/local', prefix
+ inreplace 'Makefile', 'CC=gcc', "CC=#{ENV.cc}"
+ # OS X only supports POSIX regexes
+ inreplace 'Makefile', 'REGEXDEFS=-DHAVE_REGEX_H -DBSD_REGEX', 'REGEXDEFS=-DHAVE_REGEX_H -DPOSIX_REGEX'
+
+ # Don't install offensive fortunes
+ inreplace 'Makefile', 'OFFENSIVE=1', 'OFFENSIVE=0' if ARGV.include? '--no-offensive'
+
+ system "make install"
+ end
+end
--
1.6.5+GitX