Skip to content

Commit

Permalink
Update docs, comment mxcl/homebrew refs.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Dec 14, 2013
1 parent a5e40e3 commit 9a0119d
Show file tree
Hide file tree
Showing 62 changed files with 75 additions and 75 deletions.
2 changes: 1 addition & 1 deletion Formula/aacgain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Aacgain < Formula
# This server will autocorrect a 1.9 url back to this 1.8 tarball.
# The 1.9 version mentioned on the website is pre-release, so make
# sure 1.9 is actually out before updating.
# See: https://github.com/mxcl/homebrew/issues/16838
# See: https://github.com/Homebrew/homebrew/issues/16838
url 'http://aacgain.altosdesign.com/alvarez/aacgain-1.8.tar.bz2'
sha1 '331039c4231e4d85ae878795ce3095dd96dcbfdb'

Expand Down
2 changes: 1 addition & 1 deletion Formula/aircrack-ng.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class AircrackNg < Formula
sha1 '16eed1a8cf06eb8274ae382150b56589b23adf77'

# Remove root requirement from OUI update script. See:
# https://github.com/mxcl/homebrew/pull/12755
# https://github.com/Homebrew/homebrew/pull/12755
def patches
DATA
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/alure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Alure < Formula
def install
# fix a broken include flags line, which fixes a build error.
# Not reported upstream.
# https://github.com/mxcl/homebrew/pull/6368
# https://github.com/Homebrew/homebrew/pull/6368
inreplace 'CMakeLists.txt', '${VORBISFILE_CFLAGS}',
%x[pkg-config --cflags vorbisfile].chomp

Expand Down
2 changes: 1 addition & 1 deletion Formula/automake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def install
system "make install"

# Our aclocal must go first. See:
# https://github.com/mxcl/homebrew/issues/10618
# https://github.com/Homebrew/homebrew/issues/10618
(share/"aclocal/dirlist").write <<-EOS.undent
#{HOMEBREW_PREFIX}/share/aclocal
/usr/share/aclocal
Expand Down
2 changes: 1 addition & 1 deletion Formula/boost.rb
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def install

# The context library is implemented as x86_64 ASM, so it
# won't build on PPC or 32-bit builds
# see https://github.com/mxcl/homebrew/issues/17646
# see https://github.com/Homebrew/homebrew/issues/17646
if Hardware::CPU.ppc? || Hardware::CPU.is_32_bit? || build.universal?
without_libraries << "context"
# The coroutine library depends on the context library.
Expand Down
2 changes: 1 addition & 1 deletion Formula/cfengine.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'formula'

# https version doesn't download with system curl on Snow Leopard
# https://github.com/mxcl/homebrew/issues/20339
# https://github.com/Homebrew/homebrew/issues/20339
class Cfengine < Formula
homepage 'http://cfengine.com/'
url 'http://cfengine.com/source-code/download?file=cfengine-3.5.2.tar.gz'
Expand Down
2 changes: 1 addition & 1 deletion Formula/clucene.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def install
end

# Serialize the install step. See:
# https://github.com/mxcl/homebrew/issues/8712
# https://github.com/Homebrew/homebrew/issues/8712
ENV.j1
system "make install"
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/cmigemo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Cmigemo < Formula

depends_on 'nkf' => :build

# Patch per discussion at: https://github.com/mxcl/homebrew/pull/7005
# Patch per discussion at: https://github.com/Homebrew/homebrew/pull/7005
def patches
DATA
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/contacts.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Contacts < Formula
sha1 '79526dd96e5b5297daaae6327c79de9366f94c87'

# Yes, it requires both Xcode *and* the CLT to build on 10.8 and newer;
# see https://github.com/mxcl/homebrew/issues/21408
# see https://github.com/Homebrew/homebrew/issues/21408
depends_on :xcode
depends_on :clt if MacOS.version > :lion

Expand Down
2 changes: 1 addition & 1 deletion Formula/dc3dd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def install
--infodir=#{info}]

# Check for stpncpy is broken, and the replacement fails to compile
# on Lion and newer; see https://github.com/mxcl/homebrew/issues/21510
# on Lion and newer; see https://github.com/Homebrew/homebrew/issues/21510
args << "gl_cv_func_stpncpy=yes" if MacOS.version >= :lion
system "./configure", *args
system "make"
Expand Down
2 changes: 1 addition & 1 deletion Formula/emacs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def install
if build.include? "with-x"
# These libs are not specified in xft's .pc. See:
# https://trac.macports.org/browser/trunk/dports/editors/emacs/Portfile#L74
# https://github.com/mxcl/homebrew/issues/8156
# https://github.com/Homebrew/homebrew/issues/8156
ENV.append 'LDFLAGS', '-lfreetype -lfontconfig'
args << "--with-x"
args << "--with-gif=no" << "--with-tiff=no" << "--with-jpeg=no"
Expand Down
2 changes: 1 addition & 1 deletion Formula/fsv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Fsv < Formula
homepage 'http://fsv.sourceforge.net/'
url 'https://github.com/natritmeyer/fsv.git', :tag => 'v0.9.1'
# See https://github.com/mxcl/homebrew/pull/19161 for discussion and
# See https://github.com/Homebrew/homebrew/pull/19161 for discussion and
# reason about why we use this fork here. Eventually upstream at
# 'https://github.com/mcuelenaere/fsv.git' should add tags!
# Also note the sourceforge repo (but that seems no longer maintained.)
Expand Down
2 changes: 1 addition & 1 deletion Formula/gfortran.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def install
'--disable-nls'
]

# https://github.com/mxcl/homebrew/issues/19584#issuecomment-19661219
# https://github.com/Homebrew/homebrew/issues/19584#issuecomment-19661219
if build.include? 'enable-multilib' and MacOS.prefer_64_bit?
args << '--enable-multilib'
else
Expand Down
2 changes: 1 addition & 1 deletion Formula/ggobi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Ggobi < Formula
depends_on :x11

# Several files reference "line 0", which gcc accepts but clang doesn't
# See https://github.com/mxcl/homebrew/pull/13423
# See https://github.com/Homebrew/homebrew/pull/13423
def patches; DATA; end

def install
Expand Down
2 changes: 1 addition & 1 deletion Formula/ghc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def install

cd 'Ghcsource' do
# Fix an assertion when linking ghc with llvm-gcc
# https://github.com/mxcl/homebrew/issues/13650
# https://github.com/Homebrew/homebrew/issues/13650
ENV['LD'] = 'ld'

if Hardware.is_64_bit? and not build.build_32_bit?
Expand Down
2 changes: 1 addition & 1 deletion Formula/gmp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def install
if build.build_32_bit?
ENV.m32
ENV.append 'ABI', '32'
# https://github.com/mxcl/homebrew/issues/20693
# https://github.com/Homebrew/homebrew/issues/20693
args << "--disable-assembly"
elsif build.bottle?
args << "--disable-assembly"
Expand Down
2 changes: 1 addition & 1 deletion Formula/goffice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Goffice < Formula
depends_on :x11

# Fix for goffice trying to use a retired pcre api. Reported/source = Macports
# https://github.com/mxcl/homebrew/issues/15171
# https://github.com/Homebrew/homebrew/issues/15171
def patches
DATA
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/gst-plugins-ugly.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def install

if build.with? "opencore-amr"
# Fixes build error, missing includes.
# https://github.com/mxcl/homebrew/issues/14078
# https://github.com/Homebrew/homebrew/issues/14078
nbcflags = `pkg-config --cflags opencore-amrnb`.chomp
wbcflags = `pkg-config --cflags opencore-amrwb`.chomp
ENV['AMRNB_CFLAGS'] = nbcflags + "-I#{HOMEBREW_PREFIX}/include/opencore-amrnb"
Expand Down
2 changes: 1 addition & 1 deletion Formula/help2man.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Help2man < Formula

def install
# install is not parallel safe
# see https://github.com/mxcl/homebrew/issues/12609
# see https://github.com/Homebrew/homebrew/issues/12609
ENV.j1

system "./configure", "--prefix=#{prefix}"
Expand Down
2 changes: 1 addition & 1 deletion Formula/htmldoc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Htmldoc < Formula
sha1 '472908e0aafed1cedfbacd8ed3168734aebdec4b'

# Fixes building with libpng-1.5, from upstream svn r1668 via Fedora
# Remove at version 1.8.28. cf. https://github.com/mxcl/homebrew/issues/15915
# Remove at version 1.8.28. cf. https://github.com/Homebrew/homebrew/issues/15915
def patches
{ :p0 => 'http://pkgs.fedoraproject.org/cgit/htmldoc.git/plain/htmldoc-1.8.27-libpng15.patch?h=f18' }
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/icu4c.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Icu4c < Formula
sha1 'f09512efdb8b12edfe080492a5a1c0bafc5a2941' => :lion
end

keg_only "Conflicts; see: https://github.com/mxcl/homebrew/issues/issue/167"
keg_only "Conflicts; see: https://github.com/Homebrew/homebrew/issues/issue/167"

option :universal
option :cxx11
Expand Down
2 changes: 1 addition & 1 deletion Formula/iozone.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Iozone < Formula
sha1 '397c2aae67f74dc9d189912b2e72ca594b790101'

# Patch by @nijotz, adds O_DIRECT support when using -I flag.
# See: https://github.com/mxcl/homebrew/pull/10585
# See: https://github.com/Homebrew/homebrew/pull/10585
def patches
DATA
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/irssi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Irssi < Formula

option "without-perl", "Build without perl support."

depends_on :clt # See https://github.com/mxcl/homebrew/issues/20952
depends_on :clt # See https://github.com/Homebrew/homebrew/issues/20952
depends_on 'pkg-config' => :build
depends_on 'glib'

Expand Down
2 changes: 1 addition & 1 deletion Formula/jack.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# JACKOSX, a pre-built binary form for which the source is not available.
# If you require JACKv2, you should use that. Otherwise, this formula should
# operate fine.
# Please see https://github.com/mxcl/homebrew/pull/22043 for more info
# Please see https://github.com/Homebrew/homebrew/pull/22043 for more info
class Jack < Formula
homepage 'http://jackaudio.org'
url 'http://jackaudio.org/downloads/jack-audio-connection-kit-0.121.3.tar.gz'
Expand Down
2 changes: 1 addition & 1 deletion Formula/libcaca.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def patches; DATA; end

def install
# Some people can't compile when Java is enabled. See:
# https://github.com/mxcl/homebrew/issues/issue/2049
# https://github.com/Homebrew/homebrew/issues/issue/2049

# Don't build csharp bindings
# Don't build ruby bindings; fails for adamv w/ Homebrew Ruby 1.9.2
Expand Down
2 changes: 1 addition & 1 deletion Formula/libffi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Libffi < Formula
keg_only :provided_by_osx, "Some formulae require a newer version of libffi."

def install
ENV.deparallelize # https://github.com/mxcl/homebrew/pull/19267
ENV.deparallelize # https://github.com/Homebrew/homebrew/pull/19267
ENV.universal_binary
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
Expand Down
2 changes: 1 addition & 1 deletion Formula/libsamplerate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Libsamplerate < Formula

# configure adds `/Developer/Headers/FlatCarbon` to the include, but this is
# very deprecated. Correct the use of Carbon.h to the non-flat location.
# See: https://github.com/mxcl/homebrew/pull/10875
# See: https://github.com/Homebrew/homebrew/pull/10875
def patches; DATA; end

def install
Expand Down
2 changes: 1 addition & 1 deletion Formula/libxml2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Libxml2 < Formula
mirror 'http://xmlsoft.org/sources/libxml2-2.9.1.tar.gz'
sha256 'fd3c64cb66f2c4ea27e934d275904d92cec494a8e8405613780cbc8a71680fdb'

# 2.9.1 cannot build with Python 2.6: https://github.com/mxcl/homebrew/issues/20249
# 2.9.1 cannot build with Python 2.6: https://github.com/Homebrew/homebrew/issues/20249
if MacOS.version <= :snow_leopard
depends_on :python => ["2.7", :optional]
else
Expand Down
2 changes: 1 addition & 1 deletion Formula/lua.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Lua < Formula
option 'without-sigaction', 'Revert to ANSI signal instead of improved POSIX sigaction'

# Be sure to build a dylib, or else runtime modules will pull in another static copy of liblua = crashy
# See: https://github.com/mxcl/homebrew/pull/5043
# See: https://github.com/Homebrew/homebrew/pull/5043
def patches
p = [DATA]
# sigaction provided by posix signalling power patch from
Expand Down
2 changes: 1 addition & 1 deletion Formula/macvim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def install
# to wait until MacVim is really able to link against different Python's
# on the Mac. Note configure detects brewed python correctly, but that
# is ignored.
# See https://github.com/mxcl/homebrew/issues/17908
# See https://github.com/Homebrew/homebrew/issues/17908
if python2 and python2.framework? and not build.with? "python3"
ENV.prepend 'LDFLAGS', "-L#{python2.libdir} -F#{python2.framework}"
end
Expand Down
4 changes: 2 additions & 2 deletions Formula/mariadb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def patches

def install
# Don't hard-code the libtool path. See:
# https://github.com/mxcl/homebrew/issues/20185
# https://github.com/Homebrew/homebrew/issues/20185
inreplace "cmake/libutils.cmake",
"COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",
"COMMAND libtool -static -o ${TARGET_LOCATION}"
Expand Down Expand Up @@ -109,7 +109,7 @@ def install

unless build.include? 'client-only'
# Don't create databases inside of the prefix!
# See: https://github.com/mxcl/homebrew/issues/4975
# See: https://github.com/Homebrew/homebrew/issues/4975
rm_rf prefix+'data'

(prefix+'mysql-test').rmtree unless build.with? 'tests' # save 121MB!
Expand Down
2 changes: 1 addition & 1 deletion Formula/mongrel2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def patches

def install
# Build in serial. See:
# https://github.com/mxcl/homebrew/issues/8719
# https://github.com/Homebrew/homebrew/issues/8719
ENV.j1

# Mongrel2 pulls from these ENV vars instead
Expand Down
2 changes: 1 addition & 1 deletion Formula/mpfr.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Mpfr < Formula
build 421
cause <<-EOS.undent
clang build 421 segfaults while building in superenv;
see https://github.com/mxcl/homebrew/issues/15061
see https://github.com/Homebrew/homebrew/issues/15061
EOS
end

Expand Down
2 changes: 1 addition & 1 deletion Formula/msdl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Msdl < Formula
sha1 'd30a637fc8be4ea80ddd373e428542bef15297fb'

# Fixes linker error under clang; apparently reported upstream:
# https://github.com/mxcl/homebrew/pull/13907
# https://github.com/Homebrew/homebrew/pull/13907
def patches
DATA
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/mysql-cluster.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def install
plist_path('mysqld').chmod 0644

# Don't create databases inside of the prefix!
# See: https://github.com/mxcl/homebrew/issues/4975
# See: https://github.com/Homebrew/homebrew/issues/4975
rm_rf prefix+'data'

# Link the setup script into bin
Expand Down
6 changes: 3 additions & 3 deletions Formula/mysql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ class Mysql < Formula

fails_with :llvm do
build 2326
cause "https://github.com/mxcl/homebrew/issues/issue/144"
cause "https://github.com/Homebrew/homebrew/issues/issue/144"
end

def install
# Don't hard-code the libtool path. See:
# https://github.com/mxcl/homebrew/issues/20185
# https://github.com/Homebrew/homebrew/issues/20185
inreplace "cmake/libutils.cmake",
"COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",
"COMMAND libtool -static -o ${TARGET_LOCATION}"
Expand Down Expand Up @@ -102,7 +102,7 @@ def install
system "make install"

# Don't create databases inside of the prefix!
# See: https://github.com/mxcl/homebrew/issues/4975
# See: https://github.com/Homebrew/homebrew/issues/4975
rm_rf prefix+'data'

# Link the setup script into bin
Expand Down
2 changes: 1 addition & 1 deletion Formula/ossp-uuid.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class OsspUuid < Formula
option :universal
option "32-bit"

# see https://github.com/mxcl/homebrew/issues/16077
# see https://github.com/Homebrew/homebrew/issues/16077
keg_only "OS X provides a uuid.h which conflicts with ossp-uuid's header."

def install
Expand Down
8 changes: 4 additions & 4 deletions Formula/percona-server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class PerconaServer < Formula

fails_with :llvm do
build 2334
cause "https://github.com/mxcl/homebrew/issues/issue/144"
cause "https://github.com/Homebrew/homebrew/issues/issue/144"
end

# Where the database files should be located. Existing installs have them
Expand All @@ -39,14 +39,14 @@ def datadir

def patches
# Fixes percona server 5.6 compilation on OS X 10.9, based on
# https://github.com/mxcl/homebrew/commit/aad5d93f4fabbf69766deb83780d3a6eeab7061a
# https://github.com/Homebrew/homebrew/commit/aad5d93f4fabbf69766deb83780d3a6eeab7061a
# for mysql 5.6
"https://gist.github.com/israelshirk/7cc640498cf264ebfce3/raw/846839c84647c4190ad683e4cbf0fabcd8931f97/gistfile1.txt"
end

def install
# Don't hard-code the libtool path. See:
# https://github.com/mxcl/homebrew/issues/20185
# https://github.com/Homebrew/homebrew/issues/20185
inreplace "cmake/libutils.cmake",
"COMMAND /usr/bin/libtool -static -o ${TARGET_LOCATION}",
"COMMAND libtool -static -o ${TARGET_LOCATION}"
Expand Down Expand Up @@ -108,7 +108,7 @@ def install
system "make install"

# Don't create databases inside of the prefix!
# See: https://github.com/mxcl/homebrew/issues/4975
# See: https://github.com/Homebrew/homebrew/issues/4975
rm_rf prefix+'data'

# Link the setup script into bin
Expand Down
Loading

0 comments on commit 9a0119d

Please sign in to comment.