aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-02-15 14:51:38 -0800
committerAdam Vandenberg2010-02-15 14:51:38 -0800
commit180c52db79d2339dedaf68f66ec87b003c9e1cb1 (patch)
tree75089c77c6175917c1f3a434627228961ec67109 /Library
parentfc261f427b1f097eac9cf70be9d590b183de6217 (diff)
downloadhomebrew-180c52db79d2339dedaf68f66ec87b003c9e1cb1.tar.bz2
Use shorter reference to man in several formulae.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/berkeley-db.rb2
-rw-r--r--Library/Formula/binutils.rb2
-rw-r--r--Library/Formula/bmon.rb2
-rw-r--r--Library/Formula/cdargs.rb2
-rwxr-xr-xLibrary/Formula/cuetools.rb2
-rw-r--r--Library/Formula/ettercap-ng.rb2
-rw-r--r--Library/Formula/flac.rb2
-rw-r--r--Library/Formula/libtiff.rb2
-rw-r--r--Library/Formula/minicom.rb2
-rw-r--r--Library/Formula/tex-live.rb2
10 files changed, 10 insertions, 10 deletions
diff --git a/Library/Formula/berkeley-db.rb b/Library/Formula/berkeley-db.rb
index 73f09429c..4cd7884fa 100644
--- a/Library/Formula/berkeley-db.rb
+++ b/Library/Formula/berkeley-db.rb
@@ -16,7 +16,7 @@ class BerkeleyDb <Formula
Dir.chdir 'build_unix' do
system "../dist/configure", "--disable-debug",
"--prefix=#{prefix}",
- "--mandir=#{prefix}/share/man",
+ "--mandir=#{man}",
"--enable-cxx",
"--enable-java"
diff --git a/Library/Formula/binutils.rb b/Library/Formula/binutils.rb
index b37d58464..d68158f69 100644
--- a/Library/Formula/binutils.rb
+++ b/Library/Formula/binutils.rb
@@ -11,7 +11,7 @@ class Binutils <Formula
"--disable-debug",
"--disable-dependency-tracking",
"--infodir=#{prefix}/share/info",
- "--mandir=#{prefix}/share/man",
+ "--mandir=#{man}",
"--disable-werror",
"--program-prefix=g"
system "make"
diff --git a/Library/Formula/bmon.rb b/Library/Formula/bmon.rb
index e9551f3a2..fe86729f8 100644
--- a/Library/Formula/bmon.rb
+++ b/Library/Formula/bmon.rb
@@ -9,7 +9,7 @@ class Bmon <Formula
depends_on 'ncursesw'
def install
- system "./configure", "--prefix=#{prefix}", "--mandir=#{prefix}/share/man", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--disable-debug", "--disable-dependency-tracking"
system "make" # two steps to prevent blowing up
system "make install"
end
diff --git a/Library/Formula/cdargs.rb b/Library/Formula/cdargs.rb
index 4eb6ed263..feb5fe6df 100644
--- a/Library/Formula/cdargs.rb
+++ b/Library/Formula/cdargs.rb
@@ -6,7 +6,7 @@ class Cdargs <Formula
md5 '50be618d67f0b9f2439526193c69c567'
def install
- system "./configure", "--prefix=#{prefix}", "--mandir=#{prefix}/share/man"
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make"
system "make install-strip"
diff --git a/Library/Formula/cuetools.rb b/Library/Formula/cuetools.rb
index 600e8f46d..aa9f6456b 100755
--- a/Library/Formula/cuetools.rb
+++ b/Library/Formula/cuetools.rb
@@ -6,7 +6,7 @@ class Cuetools <Formula
md5 '45575f7a1bdc6615599fa6cb49845cca'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{prefix}/share/man"
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
system "make install"
end
end
diff --git a/Library/Formula/ettercap-ng.rb b/Library/Formula/ettercap-ng.rb
index 6ec9dc976..914761f05 100644
--- a/Library/Formula/ettercap-ng.rb
+++ b/Library/Formula/ettercap-ng.rb
@@ -32,7 +32,7 @@ class EttercapNg < Formula
def install
configure_args = [
"--prefix=#{prefix}",
- "--mandir=#{prefix}/share/man",
+ "--mandir=#{man}",
"--infodir=#{prefix}/share/info",
'--disable-dependency-tracking',
"--disable-gtk",
diff --git a/Library/Formula/flac.rb b/Library/Formula/flac.rb
index 04f3be618..a17418364 100644
--- a/Library/Formula/flac.rb
+++ b/Library/Formula/flac.rb
@@ -17,7 +17,7 @@ class Flac <Formula
system "./configure", "--disable-debug",
"--disable-asm-optimizations",
"--prefix=#{prefix}",
- "--mandir=#{prefix}/share/man"
+ "--mandir=#{man}"
ENV['OBJ_FORMAT']='macho'
system "make install"
diff --git a/Library/Formula/libtiff.rb b/Library/Formula/libtiff.rb
index c81bb6f97..4d1dd6704 100644
--- a/Library/Formula/libtiff.rb
+++ b/Library/Formula/libtiff.rb
@@ -6,7 +6,7 @@ class Libtiff <Formula
@md5='93e56e421679c591de7552db13384cb8'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--mandir=#{prefix}/share/man"
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--mandir=#{man}"
system "make install"
end
end
diff --git a/Library/Formula/minicom.rb b/Library/Formula/minicom.rb
index b94027a1c..b1f4dc861 100644
--- a/Library/Formula/minicom.rb
+++ b/Library/Formula/minicom.rb
@@ -11,7 +11,7 @@ class Minicom <Formula
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
- "--mandir=#{prefix}/share/man"
+ "--mandir=#{man}"
system "make install"
(prefix + 'etc').mkdir
diff --git a/Library/Formula/tex-live.rb b/Library/Formula/tex-live.rb
index f258c7646..1e168dcb2 100644
--- a/Library/Formula/tex-live.rb
+++ b/Library/Formula/tex-live.rb
@@ -119,7 +119,7 @@ class TexLive <Formula
# The build scripts don't create this directory for no apparent reason...
# It's easier to just do it here than it is to patch the Makefiles
# Actually, if compilation fails brew thinks that we succeeded because this directory exists. Maybe we should patch the makefiles...
- FileUtils.mkdir_p "#{prefix}/share/man/man5"
+ FileUtils.mkdir_p "#{man}/man5"
# Replaces the texk_kpathsea_texmf_cnf OpenBSD patch with our own version
inreplace "texk/kpathsea/texmf.cnf", "$SELFAUTOPARENT/", "#{prefix}/share/"