Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Fix spelling mistakes
Browse files Browse the repository at this point in the history
Closes #9449.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
  • Loading branch information
brettkoonce authored and jacknagel committed Jan 6, 2012
1 parent 9a96d36 commit 6e2d550
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Library/Formula/gdal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def get_configure_args
"--with-curl=/usr/bin/curl-config",

# GRASS backend explicitly disabled. Creates a chicken-and-egg problem.
# Should be installed seperately after GRASS installation using the
# Should be installed separately after GRASS installation using the
# official GDAL GRASS plugin.
"--without-grass",
"--without-libgrass",
Expand Down Expand Up @@ -172,7 +172,7 @@ def get_configure_args
args << "--with-pg=#{HOMEBREW_PREFIX}/bin/pg_config" if postgres?
args << "--with-mysql=#{HOMEBREW_PREFIX}/bin/mysql_config" if mysql?

args << "--without-python" # Installed using a seperate set of
args << "--without-python" # Installed using a separate set of
# steps so that everything winds up
# in the prefix.

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

system "./configure", "--prefix=#{prefix}", *args
system "make" # make and make install must be seperate steps.
system "make" # make and make install must be separate steps.
system "make install"
end

Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/libdv.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Libdv < Formula
def install
# This fixes an undefined symbol error on compile.
# See the port file for libdv. http://libdv.darwinports.com/
# This flag is the prefered method over what macports uses.
# This flag is the preferred method over what macports uses.
# See the apple docs: http://cl.ly/2HeF bottom of the "Finding Imported Symbols" section
ENV.append "LDFLAGS", "-undefined dynamic_lookup"

Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/mupdf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Mupdf < Formula
depends_on 'jbig2dec'

def patches
# Fix up the Makefile so it doesnt mess with our CFLAGS.
# Fix up the Makefile so it doesn't mess with our CFLAGS.
DATA
end

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

system "./configure", *args
system "make" # seperate steps required otherwise the build fails
system "make" # separate steps required otherwise the build fails
system "make install"
end
end
2 changes: 1 addition & 1 deletion Library/Formula/pdflib-lite.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PdflibLite < Formula
md5 '34a1cc89e2cfdc1e43ba57019e442a90'

def install
# Without the following substituion, pdflib-lite runs into weird
# Without the following substitution, pdflib-lite runs into weird
# build errors due to bad interactions with the TIFF headers.
# This workaround comes from the MacPorts.org portfile for pdflib.
ENV['CPPFLAGS'] = "-isystem#{prefix}"
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/portmidi.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def caveats

def install
# PATCH for Snow Leopard, see https://github.com/halfbyte/portmidi
# hopefully not needed anymymore in the next version of portmidi
# hopefully not needed anymore in the next version of portmidi
architectures = archs_for_command('/bin/sh').join(' ')
inreplace 'CMakeLists.txt',
'CMAKE_OSX_ARCHITECTURES i386 ppc CACHE STRING "do not build for 64-bit"',
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/postgresql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def check_python_arch
shown above, or move it out of the way before brewing PostgreSQL.
Note that a framework Python in /Library/Frameworks/Python.framework is
the "MacPython" verison, and not the system-provided version which is in:
the "MacPython" version, and not the system-provided version which is in:
/System/Library/Frameworks/Python.framework
EOS
end
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/subversion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def install
arches = "-arch x86_64"
end

# Use verison-appropriate system Perl
# Use version-appropriate system Perl
if MacOS.leopard?
perl_version = "5.8.8"
else
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/suite-sparse.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def install

# So, SuiteSparse was written by a scientific researcher. This
# tends to result in makefile-based build systems that are completely
# ignorant of the existance of things such as CPPFLAGS and LDFLAGS.
# ignorant of the existence of things such as CPPFLAGS and LDFLAGS.
# SuiteSparse Does The Right Thing™ when homebrew is in /usr/local
# but if it is not, we have to piggyback some stuff in on CFLAGS.
unless HOMEBREW_PREFIX.to_s == '/usr/local'
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/wkhtmltopdf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def install
s.gsub! 'include($$join(TEMP, "/"))', ''
end

# Always creates a uselles .app doh,
# Always creates a useless .app doh,
# AFAIK this is fixed in 0.10.0beta
wkhtml_bin = 'wkhtmltopdf.app/Contents/MacOS/wkhtmltopdf'
wkhtml_man = "#{name}.1"
Expand Down
2 changes: 1 addition & 1 deletion Library/Formula/zookeeper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def install
libexec.install Dir['*.jar']
end

# Create neccessary directories
# Create necessary directories
bin.mkpath
(etc+'zookeeper').mkpath
(var+'log/zookeeper').mkpath
Expand Down

0 comments on commit 6e2d550

Please sign in to comment.