class Synfig < Formula desc "Command-line renderer" homepage "http://synfig.org" url "https://downloads.sourceforge.net/project/synfig/releases/1.0.2/source/synfig-1.0.2.tar.gz" sha256 "34cdf9eac90aadea29fb2997e82da1c32713ab02940f7c8873330f894e167fb4" revision 1 head "git://synfig.git.sourceforge.net/gitroot/synfig/synfig" bottle do sha256 "6ba91fe417b5a8c1b0fd9133115052f360e5ff91a4dc8178e1d8588e2ef9f2e0" => :sierra sha256 "187fed6497185aabe9c2187ba8ce57abb12ecd458cf6101d22ca056a2086728d" => :el_capitan sha256 "92be0013a9d91514547e8b9cf79e60bd6ee5989cffdcc48c762438d6fd1fedb0" => :yosemite end depends_on "pkg-config" => :build depends_on "gettext" depends_on "etl" depends_on "libsigc++" depends_on "libxml++" depends_on "imagemagick" depends_on "libpng" depends_on "freetype" depends_on "cairo" depends_on "pango" depends_on "boost" depends_on "openexr" depends_on "mlt" depends_on "libtool" => :run needs :cxx11 # bug filed upstream as http://www.synfig.org/issues/thebuggenie/synfig/issues/904 patch do url "https://gist.githubusercontent.com/tschoonj/06d5de3cdc5d063f8612/raw/26fe46b6eedeecdc686b9fd5aac01de9f2756424/synfig.diff" sha256 "0ac5b757ba3dda6a863a79e717fc239648c490eac1e643ff275b8ac232a466a3" end def install ENV.cxx11 boost = Formula["boost"] system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-boost=#{boost.opt_prefix}" system "make", "install" end test do (testpath/"test.cpp").write <<-EOS.undent #include int main(int argc, char *argv[]) { const char *version = synfig::get_version(); return 0; } EOS ENV.libxml2 cairo = Formula["cairo"] etl = Formula["etl"] fontconfig = Formula["fontconfig"] freetype = Formula["freetype"] gettext = Formula["gettext"] glib = Formula["glib"] glibmm = Formula["glibmm"] libpng = Formula["libpng"] libsigcxx = Formula["libsigc++"] libxmlxx = Formula["libxml++"] mlt = Formula["mlt"] pango = Formula["pango"] pixman = Formula["pixman"] flags = %W[ -I#{cairo.opt_include}/cairo -I#{etl.opt_include} -I#{fontconfig.opt_include} -I#{freetype.opt_include}/freetype2 -I#{gettext.opt_include} -I#{glib.opt_include}/glib-2.0 -I#{glib.opt_lib}/glib-2.0/include -I#{glibmm.opt_include}/giomm-2.4 -I#{glibmm.opt_include}/glibmm-2.4 -I#{glibmm.opt_lib}/giomm-2.4/include -I#{glibmm.opt_lib}/glibmm-2.4/include -I#{include}/synfig-1.0 -I#{libpng.opt_include}/libpng16 -I#{libsigcxx.opt_include}/sigc++-2.0 -I#{libsigcxx.opt_lib}/sigc++-2.0/include -I#{libxmlxx.opt_include}/libxml++-2.6 -I#{libxmlxx.opt_lib}/libxml++-2.6/include -I#{mlt.opt_include} -I#{mlt.opt_include}/mlt -I#{mlt.opt_include}/mlt++ -I#{pango.opt_include}/pango-1.0 -I#{pixman.opt_include}/pixman-1 -D_REENTRANT -L#{cairo.opt_lib} -L#{gettext.opt_lib} -L#{glib.opt_lib} -L#{glibmm.opt_lib} -L#{libsigcxx.opt_lib} -L#{libxmlxx.opt_lib} -L#{lib} -L#{mlt.opt_lib} -L#{pango.opt_lib} -lcairo -lgio-2.0 -lgiomm-2.4 -lglib-2.0 -lglibmm-2.4 -lgobject-2.0 -lintl -lmlt -lmlt++ -lpango-1.0 -lpangocairo-1.0 -lpthread -lsigc-2.0 -lsynfig -lxml++-2.6 -lxml2 ] system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test", *flags system "./test" end end