homebrew-core/Formula/fontforge.rb
Larry Gilbert 01d56fc9e3 fontforge: add --skip-git to bootstrap options
Otherwise, the bootstrap script will still try to fetch the master
branch for gnulib.

Closes Homebrew/homebrew#41802.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-07-16 20:34:51 -07:00

108 lines
3.8 KiB
Ruby

class Fontforge < Formula
desc "Outline and bitmap font editor/converter for many formats"
homepage "https://fontforge.github.io"
url "https://github.com/fontforge/fontforge/archive/20150612.tar.gz"
sha256 "af4997a07c96f7057f08cb5c7d71b19a0e8ac6336e0c48476471b471c0574247"
head "https://github.com/fontforge/fontforge.git"
bottle do
sha256 "318c0e6febcb410194f4bf43ebcbb798a7c4a9508e8b579448fd4629aa2dd8da" => :yosemite
sha256 "82fb0329ee807dd6adaa258999c5036c480d80a8e5c1c9337eef53d8f75fb5f1" => :mavericks
sha256 "4407ede75e6523f2f21be86af9837aead911ed5010ae59498ade768b5118d5c1" => :mountain_lion
end
option "with-giflib", "Build with GIF support"
option "with-extra-tools", "Build with additional font tools"
deprecated_option "with-gif" => "with-giflib"
# Autotools are required to build from source in all releases.
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 "cairo"
depends_on "libpng" => :recommended
depends_on "jpeg" => :recommended
depends_on "libtiff" => :recommended
depends_on "giflib" => :optional
depends_on "libspiro" => :optional
depends_on :python if MacOS.version <= :snow_leopard
# This may be causing font-display glitches and needs further isolation & fixing.
# https://github.com/fontforge/fontforge/issues/2083
# https://github.com/Homebrew/homebrew/issues/37803
depends_on "fontconfig"
resource "gnulib" do
url "git://git.savannah.gnu.org/gnulib.git",
:revision => "9a417cf7d48fa231c937c53626da6c45d09e6b3e"
end
fails_with :llvm do
build 2336
cause "Compiling cvexportdlg.c fails with error: initializer element is not constant"
end
def install
# Don't link libraries to libpython, but do link binaries that expect
# to embed a python interpreter
# https://github.com/fontforge/fontforge/issues/2353#issuecomment-121009759
ENV["PYTHON_CFLAGS"] = `python-config --cflags`.chomp
ENV["PYTHON_LIBS"] = "-undefined dynamic_lookup"
python_libs = `python2.7-config --ldflags`.chomp
inreplace "fontforgeexe/Makefile.am" do |s|
oldflags = s.get_make_var "libfontforgeexe_la_LDFLAGS"
s.change_make_var! "libfontforgeexe_la_LDFLAGS", "#{python_libs} #{oldflags}"
end
# Disable Homebrew detection
# https://github.com/fontforge/fontforge/issues/2425
inreplace "configure.ac", 'test "y$HOMEBREW_BREW_FILE" != "y"', "false"
args = %W[
--prefix=#{prefix}
--disable-silent-rules
--disable-dependency-tracking
--with-pythonbinary=#{which "python2.7"}
--without-x
]
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: https://trac.macports.org/ticket/25012
ENV.append "LDFLAGS", "-lintl"
# Reset ARCHFLAGS to match how we build
ENV["ARCHFLAGS"] = "-arch #{MacOS.preferred_arch}"
# Bootstrap in every build: https://github.com/fontforge/fontforge/issues/1806
resource("gnulib").fetch
system "./bootstrap",
"--gnulib-srcdir=#{resource("gnulib").cached_download}",
"--skip-git"
system "./configure", *args
system "make"
system "make", "install"
if build.with? "extra-tools"
cd "contrib/fonttools" do
system "make"
bin.install Dir["*"].select { |f| File.executable? f }
end
end
end
test do
system bin/"fontforge", "-version"
system "python", "-c", "import fontforge"
end
end