Add reasons for pdf2image, poppler, and xpdf conflicts

master
Jack Nagel 2013-08-29 19:03:34 -05:00
parent 97f2445032
commit cfe51bab1d
3 changed files with 6 additions and 6 deletions

View File

@ -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}"

View File

@ -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'

View File

@ -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