205 lines
6.1 KiB
Ruby
205 lines
6.1 KiB
Ruby
class Synfig < Formula
|
|
desc "Command-line renderer"
|
|
homepage "https://synfig.org/"
|
|
license "GPL-3.0-or-later"
|
|
|
|
stable do
|
|
url "https://downloads.sourceforge.net/project/synfig/development/1.5.1/synfig-1.5.1.tar.gz"
|
|
mirror "https://github.com/synfig/synfig/releases/download/v1.5.1/synfig-1.5.1.tar.gz"
|
|
sha256 "aa91593c28a89f269be1be9c8bd9ecca6491f9e6af26744d1c160c6553ee2ced"
|
|
|
|
# Apply upstream commit to fix build with ffmpeg:
|
|
# https://github.com/synfig/synfig/commit/f684b24f0db31ab8ea7aadc417fc23e3084b4138
|
|
# Removew with next release.
|
|
patch :DATA
|
|
end
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(%r{url=.*?/synfig[._-]v?(\d+(?:\.\d+)+)\.t}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_ventura: "4408911daf111c2cbf2aa10f4def2688b2b780435801a518b1cd6b5e2f7f4f9e"
|
|
sha256 arm64_monterey: "d6c3ff6f8ebaf3c51541374f0b002a7aa76276f654c2a1bfbb5832d1c58b23b7"
|
|
sha256 arm64_big_sur: "129b75a9a6beea76d92b7b916f4a4353591abc1be63369e199fa80b8f626aff1"
|
|
sha256 ventura: "24be7a2a17acd81188d5920da4af74e459ed95d531434e13c30aa1e0727c6b7e"
|
|
sha256 monterey: "78df0036495eccaa6005cd853fa58ab48fd3027d866d7116295bb1b6d3be0391"
|
|
sha256 big_sur: "117c2aaefa5db9dc9f8bb68e810aed6a83e19b6671c815d81d1cb8c9283aa2e8"
|
|
sha256 catalina: "b78c0b2ff9a309a18e6220d15dc7b78642df81d1cd8f6e6a5331bee4af5448ef"
|
|
sha256 x86_64_linux: "4563e1b18b9d2487a4286cf6dd2d1c41b2d837b76a01c1be7a950a93142b6aab"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/synfig/synfig.git", branch: "master"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
depends_on "intltool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "boost"
|
|
depends_on "cairo"
|
|
depends_on "etl"
|
|
depends_on "ffmpeg"
|
|
depends_on "fftw"
|
|
depends_on "freetype"
|
|
depends_on "gettext"
|
|
depends_on "imagemagick"
|
|
depends_on "libpng"
|
|
depends_on "libsigc++@2"
|
|
depends_on "libtool"
|
|
depends_on "libxml++"
|
|
depends_on "mlt"
|
|
depends_on "openexr"
|
|
depends_on "pango"
|
|
|
|
uses_from_macos "perl" => :build
|
|
|
|
fails_with gcc: "5"
|
|
|
|
def install
|
|
ENV.prepend_path "PERL5LIB", Formula["intltool"].libexec/"lib/perl5" unless OS.mac?
|
|
ENV.cxx11
|
|
|
|
if build.head?
|
|
cd "synfig-core"
|
|
system "./bootstrap.sh"
|
|
end
|
|
system "./configure", *std_configure_args,
|
|
"--disable-silent-rules",
|
|
"--with-boost=#{Formula["boost"].opt_prefix}",
|
|
"--without-jpeg"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <stddef.h>
|
|
#include <synfig/version.h>
|
|
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@2.66"]
|
|
libpng = Formula["libpng"]
|
|
libsigcxx = Formula["libsigc++@2"]
|
|
libxmlxx = Formula["libxml++"]
|
|
mlt = Formula["mlt"]
|
|
pango = Formula["pango"]
|
|
pixman = Formula["pixman"]
|
|
flags = %W[
|
|
-I#{cairo.opt_include}/cairo
|
|
-I#{etl.opt_include}/ETL
|
|
-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}/mlt-7
|
|
-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
|
|
-lmlt-7
|
|
-lmlt++-7
|
|
-lpango-1.0
|
|
-lpangocairo-1.0
|
|
-lpthread
|
|
-lsigc-2.0
|
|
-lsynfig
|
|
-lxml++-2.6
|
|
-lxml2
|
|
]
|
|
flags << "-lintl" if OS.mac?
|
|
system ENV.cxx, "-std=c++11", "test.cpp", "-o", "test", *flags
|
|
system "./test"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/src/modules/mod_libavcodec/trgt_av.cpp b/src/modules/mod_libavcodec/trgt_av.cpp
|
|
index 6baccb4..bea55cc 100644
|
|
--- a/src/modules/mod_libavcodec/trgt_av.cpp
|
|
+++ b/src/modules/mod_libavcodec/trgt_av.cpp
|
|
@@ -38,6 +38,7 @@
|
|
extern "C"
|
|
{
|
|
#ifdef HAVE_LIBAVFORMAT_AVFORMAT_H
|
|
+# include <libavcodec/avcodec.h>
|
|
# include <libavformat/avformat.h>
|
|
#elif defined(HAVE_AVFORMAT_H)
|
|
# include <avformat.h>
|
|
@@ -232,12 +233,14 @@ public:
|
|
close();
|
|
|
|
if (!av_registered) {
|
|
+#if LIBAVCODEC_VERSION_MAJOR < 59 // FFMPEG < 5.0
|
|
av_register_all();
|
|
+#endif
|
|
av_registered = true;
|
|
}
|
|
|
|
// guess format
|
|
- AVOutputFormat *format = av_guess_format(NULL, filename.c_str(), NULL);
|
|
+ const AVOutputFormat *format = av_guess_format(NULL, filename.c_str(), NULL);
|
|
if (!format) {
|
|
synfig::warning("Target_LibAVCodec: unable to guess the output format, defaulting to MPEG");
|
|
format = av_guess_format("mpeg", NULL, NULL);
|
|
@@ -252,6 +255,7 @@ public:
|
|
context = avformat_alloc_context();
|
|
assert(context);
|
|
context->oformat = format;
|
|
+#if LIBAVCODEC_VERSION_MAJOR < 59 // FFMPEG < 5.0
|
|
if (filename.size() + 1 > sizeof(context->filename)) {
|
|
synfig::error(
|
|
"Target_LibAVCodec: filename too long, max length is %d, filename is '%s'",
|
|
@@ -261,6 +265,14 @@ public:
|
|
return false;
|
|
}
|
|
memcpy(context->filename, filename.c_str(), filename.size() + 1);
|
|
+#else
|
|
+ context->url = av_strndup(filename.c_str(), filename.size());
|
|
+ if (!context->url) {
|
|
+ synfig::error("Target_LibAVCodec: cannot allocate space for filename");
|
|
+ close();
|
|
+ return false;
|
|
+ }
|
|
+#endif
|
|
|
|
packet = av_packet_alloc();
|
|
assert(packet);
|