2011-03-10 05:11:03 +00:00
|
|
|
class Gd < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Graphics library to dynamically manipulate images"
|
2015-04-05 06:31:23 +00:00
|
|
|
homepage "https://libgd.bitbucket.org/"
|
|
|
|
url "https://bitbucket.org/libgd/gd-libgd/downloads/libgd-2.1.1.tar.xz"
|
|
|
|
sha256 "9ada1ed45594abc998ebc942cef12b032fbad672e73efc22bc9ff54f5df2b285"
|
|
|
|
|
|
|
|
head do
|
|
|
|
url "https://bitbucket.org/libgd/gd-libgd.git"
|
|
|
|
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
2011-04-04 20:33:56 +00:00
|
|
|
|
2014-02-22 19:15:44 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-09-13 10:03:54 +00:00
|
|
|
sha256 "f6552db857ec0214c18a072b7269b57dae232c2c71b2577c426f45967f5e5986" => :el_capitan
|
2015-04-05 19:27:28 +00:00
|
|
|
sha256 "e6e53b5dd2ca074873a026facb27c7f9a32d47f4a6b2e713ab06361396b55aa1" => :yosemite
|
|
|
|
sha256 "be7bfc63bb53cc7a23c898dd0f11f721566f139ef21eedffa29e488d5a34c697" => :mavericks
|
|
|
|
sha256 "c37e8f0cbf6bbbcdc715b4f11a846f42a502d3bd92b395dfae396c483c6032bd" => :mountain_lion
|
2014-02-22 19:15:44 +00:00
|
|
|
end
|
|
|
|
|
2013-06-22 12:32:45 +00:00
|
|
|
option :universal
|
|
|
|
|
2015-04-05 06:31:23 +00:00
|
|
|
depends_on "fontconfig" => :recommended
|
|
|
|
depends_on "freetype" => :recommended
|
|
|
|
depends_on "jpeg" => :recommended
|
|
|
|
depends_on "libpng" => :recommended
|
|
|
|
depends_on "libtiff" => :recommended
|
|
|
|
depends_on "libvpx" => :optional
|
2010-03-04 09:40:42 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
cause "Undefined symbols when linking"
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2009-10-10 22:47:16 +00:00
|
|
|
def install
|
2013-06-22 12:32:45 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2015-04-05 06:31:23 +00:00
|
|
|
|
|
|
|
args = %W[--disable-dependency-tracking --prefix=#{prefix}]
|
2013-08-05 16:34:17 +00:00
|
|
|
|
|
|
|
if build.with? "libpng"
|
2014-03-06 02:12:51 +00:00
|
|
|
args << "--with-png=#{Formula["libpng"].opt_prefix}"
|
2013-08-05 16:34:17 +00:00
|
|
|
else
|
|
|
|
args << "--without-png"
|
|
|
|
end
|
|
|
|
|
2014-02-19 23:12:09 +00:00
|
|
|
if build.with? "fontconfig"
|
2014-03-06 02:12:51 +00:00
|
|
|
args << "--with-fontconfig=#{Formula["fontconfig"].opt_prefix}"
|
2014-02-19 23:12:09 +00:00
|
|
|
else
|
|
|
|
args << "--without-fontconfig"
|
|
|
|
end
|
|
|
|
|
2013-08-05 16:34:17 +00:00
|
|
|
if build.with? "freetype"
|
2014-03-06 02:12:51 +00:00
|
|
|
args << "--with-freetype=#{Formula["freetype"].opt_prefix}"
|
2013-08-05 16:34:17 +00:00
|
|
|
else
|
|
|
|
args << "--without-freetype"
|
|
|
|
end
|
|
|
|
|
|
|
|
if build.with? "jpeg"
|
2014-02-25 05:51:06 +00:00
|
|
|
args << "--with-jpeg=#{Formula["jpeg"].opt_prefix}"
|
2013-08-05 16:34:17 +00:00
|
|
|
else
|
|
|
|
args << "--without-jpeg"
|
|
|
|
end
|
|
|
|
|
2013-10-20 14:58:53 +00:00
|
|
|
if build.with? "libtiff"
|
2014-02-25 05:51:06 +00:00
|
|
|
args << "--with-tiff=#{Formula["libtiff"].opt_prefix}"
|
2013-10-20 14:58:53 +00:00
|
|
|
else
|
|
|
|
args << "--without-tiff"
|
|
|
|
end
|
|
|
|
|
|
|
|
if build.with? "libvpx"
|
2014-02-25 05:51:06 +00:00
|
|
|
args << "--with-vpx=#{Formula["libvpx"].opt_prefix}"
|
2013-10-20 14:58:53 +00:00
|
|
|
else
|
|
|
|
args << "--without-vpx"
|
|
|
|
end
|
|
|
|
|
2015-04-05 06:31:23 +00:00
|
|
|
system "./bootstrap.sh" if build.head?
|
2012-09-02 07:58:21 +00:00
|
|
|
system "./configure", *args
|
2015-04-05 06:31:23 +00:00
|
|
|
system "make", "install"
|
2010-09-30 19:01:01 +00:00
|
|
|
end
|
2012-09-02 07:58:21 +00:00
|
|
|
|
2013-01-07 03:22:57 +00:00
|
|
|
test do
|
2014-10-19 06:14:32 +00:00
|
|
|
system "#{bin}/pngtogd", test_fixtures("test.png"), "gd_test.gd"
|
2013-01-07 03:22:57 +00:00
|
|
|
system "#{bin}/gdtopng", "gd_test.gd", "gd_test.png"
|
2012-09-02 07:58:21 +00:00
|
|
|
end
|
2010-09-30 19:01:01 +00:00
|
|
|
end
|