2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 22:47:16 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gd < Formula
|
2012-06-07 01:35:12 +00:00
|
|
|
homepage 'http://bitbucket.org/pierrejoye/gd-libgd'
|
|
|
|
url 'http://www.libgd.org/releases/gd-2.0.36RC1.tar.gz'
|
|
|
|
mirror 'http://download.osgeo.org/mapserver/libgd/gd-2.0.36RC1.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '21cf2ec93fd80836fc0cb4741201f7cc5440819a'
|
2011-04-04 20:33:56 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
head 'http://bitbucket.org/pierrejoye/gd-libgd', :using => :hg
|
2009-10-10 22:47:16 +00:00
|
|
|
|
2012-09-02 07:58:21 +00:00
|
|
|
option 'without-libpng', 'Build without PNG support'
|
|
|
|
option 'without-jpeg', 'Build without JPEG support'
|
2012-10-12 06:40:14 +00:00
|
|
|
option 'with-giflib', 'Build with GIF support'
|
2012-09-02 07:58:21 +00:00
|
|
|
option 'with-freetype', 'Build with FreeType support'
|
|
|
|
|
|
|
|
depends_on :libpng unless build.include? "without-libpng"
|
|
|
|
depends_on 'jpeg' => :recommended unless build.include? "without-jpeg"
|
2012-10-12 06:40:14 +00:00
|
|
|
depends_on 'giflib' if build.include? "with-giflib"
|
2012-10-13 08:04:07 +00:00
|
|
|
depends_on :freetype if build.include? "with-freetype" or MacOS::X11.installed?
|
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
|
2012-09-02 07:58:21 +00:00
|
|
|
args = ["--prefix=#{prefix}"]
|
2012-09-27 18:24:39 +00:00
|
|
|
args << "--without-freetype" unless build.include? 'with-freetype'
|
2012-09-02 07:58:21 +00:00
|
|
|
system "./configure", *args
|
2009-10-10 22:47:16 +00:00
|
|
|
system "make install"
|
2010-09-30 19:01:01 +00:00
|
|
|
(lib+'pkgconfig/gdlib.pc').write pkg_file
|
2009-10-10 22:47:16 +00:00
|
|
|
end
|
2010-09-06 20:11:31 +00:00
|
|
|
|
2010-09-30 19:01:01 +00:00
|
|
|
def pkg_file; <<-EOF
|
|
|
|
prefix=#{prefix}
|
|
|
|
exec_prefix=${prefix}
|
|
|
|
libdir=/${exec_prefix}/lib
|
|
|
|
includedir=/${prefix}/include
|
|
|
|
bindir=/${prefix}/bin
|
|
|
|
ldflags= -L/${prefix}/lib
|
|
|
|
|
|
|
|
Name: gd
|
|
|
|
Description: A graphics library for quick creation of PNG or JPEG images
|
|
|
|
Version: 2.0.36RC1
|
|
|
|
Requires:
|
|
|
|
Libs: -L${libdir} -lgd
|
2012-10-13 08:00:55 +00:00
|
|
|
Libs.private: -ljpeg -lpng12 -lz -lm
|
2010-09-30 19:01:01 +00:00
|
|
|
Cflags: -I${includedir}
|
|
|
|
EOF
|
|
|
|
end
|
2012-09-02 07:58:21 +00:00
|
|
|
|
2013-01-07 03:22:57 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/pngtogd", \
|
|
|
|
"/System/Library/Frameworks/SecurityInterface.framework/Versions/A/Resources/Key_Large.png", \
|
|
|
|
"gd_test.gd"
|
|
|
|
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
|