aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-08-29 19:03:34 -0500
committerJack Nagel2013-08-29 19:08:22 -0500
commitcb1bae9334b53ac9cc46b5ad41a084d4c6cdc2f1 (patch)
treea34652dc6128516d89a86d3a86045e89b3d598d8 /Library/Formula
parenta6da0b82e6fa72c03f6f2760444435f48392bd29 (diff)
downloadhomebrew-cb1bae9334b53ac9cc46b5ad41a084d4c6cdc2f1.tar.bz2
Add reasons for pdf2image, poppler, and xpdf conflicts
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdf2image.rb4
-rw-r--r--Library/Formula/poppler.rb4
-rw-r--r--Library/Formula/xpdf.rb4
3 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/pdf2image.rb b/Library/Formula/pdf2image.rb
index 30c826de2..d25b65870 100644
--- a/Library/Formula/pdf2image.rb
+++ b/Library/Formula/pdf2image.rb
@@ -7,8 +7,8 @@ class Pdf2image < Formula
depends_on :x11
- conflicts_with 'poppler'
- conflicts_with 'xpdf'
+ conflicts_with 'poppler', 'xpdf',
+ :because => 'pdf2image, poppler, and xpdf install conflicting executables'
def install
system "./configure", "--prefix=#{prefix}"
diff --git a/Library/Formula/poppler.rb b/Library/Formula/poppler.rb
index 2cea783de..7b41fd2be 100644
--- a/Library/Formula/poppler.rb
+++ b/Library/Formula/poppler.rb
@@ -23,8 +23,8 @@ class Poppler < Formula
depends_on 'glib' => :optional
depends_on 'cairo' if build.with? 'glib' # Needs a newer Cairo build than OS X 10.6.7 provides
- conflicts_with 'pdf2image'
- conflicts_with 'xpdf'
+ conflicts_with 'pdf2image', 'xpdf',
+ :because => 'poppler, pdf2image, and xpdf install conflicting executables'
def install
if build.with? 'qt4'
diff --git a/Library/Formula/xpdf.rb b/Library/Formula/xpdf.rb
index 4e8e775dc..7d55aff18 100644
--- a/Library/Formula/xpdf.rb
+++ b/Library/Formula/xpdf.rb
@@ -8,8 +8,8 @@ class Xpdf < Formula
depends_on 'lesstif'
depends_on :x11
- conflicts_with 'pdf2image'
- conflicts_with 'poppler'
+ conflicts_with 'pdf2image', 'poppler',
+ :because => 'xpdf, pdf2image, and poppler install conflicting executables'
# see: http://gnats.netbsd.org/45562
def patches; DATA; end