From 162e84d5d4c21bc59ee223312ed1dce354834617 Mon Sep 17 00:00:00 2001 From: nibbles 2bits Date: Fri, 2 Nov 2012 11:35:26 -0700 Subject: emboss: fix issue with X11 - Add an option to build without-x - Add a `depends_on :x11` otherwise - Add a `depends_on :libpng` that was missing. - Add a `depends_on 'gd'` that is optional. - Add a `depends_on 'libharu'` also optional for pdf output. - Add a flag to enable 64bit pointers on 32bit machines. - Add a flag to enable pthreads. It's worth noting that this will build against mysql or postgresql. It searches for `pg_config`. It's reasonable for molecular biology grinding software have some sort of DB enabled. In that case, we might want to add an `ENV :userpaths` to pick up the preferred `pg_config` or we want to add a depends_on postgresql. Thoughts? Fixes #15782 Closes #15817. Signed-off-by: Adam Vandenberg --- Library/Formula/emboss.rb | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/emboss.rb b/Library/Formula/emboss.rb index badfeebe4..e3ee18ab8 100644 --- a/Library/Formula/emboss.rb +++ b/Library/Formula/emboss.rb @@ -5,11 +5,24 @@ class Emboss < Formula url 'ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.5.7.tar.gz' sha1 '907231eafe07917ae0bf9c5da2e7cdc3e9bae03a' + option 'without-x', 'Build without X11 support' + depends_on 'pkg-config' => :build + depends_on 'libharu' => :optional + depends_on 'gd' => :optional + depends_on :libpng => :recommended + depends_on :x11 unless build.include? 'without-x' def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make install" + args = %W[ + --disable-debug + --disable-dependency-tracking + --prefix=#{prefix} + --enable-64 + --with-thread + ] + args << '--without-x' if build.include? 'without-x' + system './configure', *args + system 'make install' end end -- cgit v1.2.3