97 lines
3.5 KiB
Ruby
97 lines
3.5 KiB
Ruby
class Fontforge < Formula
|
|
homepage "https://fontforge.github.io"
|
|
url "https://github.com/fontforge/fontforge/archive/20141230.tar.gz"
|
|
sha1 "62268018d4b0080f8b976943f36ecbeed5aa6c9a"
|
|
|
|
bottle do
|
|
sha1 "96155e138d5c9f0eff459f85a8ee1198fa6ffbae" => :yosemite
|
|
sha1 "780a877b74381ee256812406c4d68f5523631ee1" => :mavericks
|
|
sha1 "84b0969c5370be9a949e2c174c9a1e8735a63797" => :mountain_lion
|
|
end
|
|
|
|
deprecated_option "with-x" => "with-x11"
|
|
deprecated_option "with-gif" => "with-giflib"
|
|
|
|
option "with-giflib", "Build with GIF support"
|
|
|
|
# Autotools are required to build from source in all releases.
|
|
# The upstream tarball is now 235MB in size and still requires us to autotool
|
|
# so seriously consider using the much smaller Github tag if we don't lose anything.
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "libtool" => :run
|
|
depends_on "gettext"
|
|
depends_on "pango"
|
|
depends_on "zeromq"
|
|
depends_on "czmq"
|
|
depends_on "fontconfig"
|
|
depends_on "cairo"
|
|
depends_on "libpng" => :recommended
|
|
depends_on "jpeg" => :recommended
|
|
depends_on "libtiff" => :recommended
|
|
depends_on "giflib" => :optional
|
|
depends_on "libspiro" => :optional
|
|
depends_on :x11 => :optional
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
|
|
fails_with :llvm do
|
|
build 2336
|
|
cause "Compiling cvexportdlg.c fails with error: initializer element is not constant"
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--disable-silent-rules
|
|
--disable-dependency-tracking
|
|
]
|
|
|
|
if build.with? "x11"
|
|
args << "--with-x"
|
|
else
|
|
args << "--without-x"
|
|
end
|
|
|
|
args << "--without-libpng" if build.without? "libpng"
|
|
args << "--without-libjpeg" if build.without? "jpeg"
|
|
args << "--without-libtiff" if build.without? "libtiff"
|
|
args << "--without-giflib" if build.without? "giflib"
|
|
args << "--without-libspiro" if build.without? "libspiro"
|
|
|
|
# Fix linker error; see: http://trac.macports.org/ticket/25012
|
|
ENV.append "LDFLAGS", "-lintl"
|
|
|
|
# And finding Homebrew's Python
|
|
ENV.append_path "PKG_CONFIG_PATH", "#{HOMEBREW_PREFIX}/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig/"
|
|
ENV.prepend "LDFLAGS", "-L#{%x(python-config --prefix).chomp}/lib"
|
|
|
|
# Reset ARCHFLAGS to match how we build
|
|
ENV["ARCHFLAGS"] = "-arch #{MacOS.preferred_arch}"
|
|
|
|
# Bootstrap in every build: https://github.com/fontforge/fontforge/issues/1806
|
|
system "./bootstrap"
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
# Link this to enable symlinking into /Applications with brew linkapps.
|
|
# The name is case-sensitive. It breaks without both F's capitalised.
|
|
# If you build with x11 now, it automatically creates an dynamic link from bin/fontforge
|
|
# to @executable_path/../Frameworks/Breakpad.framework/Versions/A/Breakpad which
|
|
# obviously doesn't exist given fontforge and FontForge.app are in different places.
|
|
# If this isn't fixed within a couple releases, consider dumping everything in libexec.
|
|
# https://github.com/fontforge/fontforge/issues/2022
|
|
if build.with? "x11"
|
|
ln_s "#{share}/fontforge/osx/FontForge.app", prefix
|
|
system "install_name_tool", "-change", "@executable_path/../Frameworks/Breakpad.framework/Versions/A/Breakpad",
|
|
"#{bin}/fontforge", "#{share}/fontforge/osx/FontForge.app/Contents/Frameworks/Breakpad.framework/Versions/A/Breakpad"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/fontforge", "-version"
|
|
end
|
|
end
|