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
|
2011-10-17 19:58:00 +00:00
|
|
|
url "http://www.libgd.org/releases/gd-2.0.36RC1.tar.gz"
|
2011-04-04 20:33:56 +00:00
|
|
|
homepage "http://bitbucket.org/pierrejoye/gd-libgd"
|
2011-10-17 19:58:00 +00:00
|
|
|
mirror "http://download.osgeo.org/mapserver/libgd/gd-2.0.36RC1.tar.gz"
|
2011-04-10 00:27:28 +00:00
|
|
|
md5 "39ac48e6d5e0012a3bd2248a0102f209"
|
2011-04-04 20:33:56 +00:00
|
|
|
|
2010-10-04 00:42:33 +00:00
|
|
|
head "http://bitbucket.org/pierrejoye/gd-libgd", :using => :hg
|
2009-10-10 22:47:16 +00:00
|
|
|
|
2010-03-04 09:40:42 +00:00
|
|
|
depends_on 'jpeg' => :recommended
|
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
fails_with_llvm "Undefined symbols when linking", :build => "2326"
|
|
|
|
|
2009-10-10 22:47:16 +00:00
|
|
|
def install
|
2011-03-21 21:24:22 +00:00
|
|
|
ENV.x11
|
2010-02-25 05:46:38 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--with-freetype=/usr/X11"
|
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
|
|
|
|
Libs.private: -lXpm -lX11 -ljpeg -lfontconfig -lfreetype -lpng12 -lz -lm
|
|
|
|
Cflags: -I${includedir}
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
end
|