# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 # $Id$ PortSystem 1.0 # https://bugzilla.gnome.org/show_bug.cgi?id=636134 PortGroup muniversal 1.0 name gstreamer1-gst-plugins-bad set my_name gst-plugins-bad version 1.2.1 description A set of plug-ins for GStreamer that need more quality. long_description GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared \ to the rest. They might be close to being good quality, but they're missing \ something - be it a good code review, some documentation, a set of tests, a \ real live maintainer, or some actual wide use. license GPL LGPL maintainers rmstonecipher openmaintainer categories gnome platforms darwin homepage http://gstreamer.freedesktop.org/modules/${my_name}.html master_sites http://gstreamer.freedesktop.org/src/${my_name}/ distname ${my_name}-${version} use_xz yes checksums rmd160 9cb631ab12c0c77279b8b4a9078619cdf96be662 \ sha256 f33e7c81fcb742fe50b73ad87ef8a4baa7d6b59c5002a10bf63c8dee22404929 depends_build port:pkgconfig depends_lib port:gstreamer1-gst-plugins-base \ port:curl \ port:faac \ port:faad2 \ port:fluidsynth \ port:gnutls \ port:libass \ port:libdca \ port:libdvdread \ port:libdvdnav \ port:libexif \ port:libmms \ port:libmodplug \ port:libmpcdec \ port:libopus \ port:librsvg \ port:mpg123 \ port:openjpeg15 \ port:orc \ port:schroedinger \ port:soundtouch \ port:spandsp-devel \ port:neon \ port:webp \ port:gobject-introspection # applemedia-vtenc # https://trac.macports.org/ticket/40732 # https://trac.macports.org/ticket/41490 # https://bugzilla.gnome.org/show_bug.cgi?id=706211 # https://bugzilla.gnome.org/show_bug.cgi?id=709241 patchfiles modplug.patch \ patch-applemedia-vtenc.diff # # could depend on tons for multimedia stuff +variants # the following ports are available but don't configure # and/or build correctly # # port:mjpegtools (mpeg2enc mplex build fails) need to disable mpeg2enc mplex explicitly in case mjpegtools is installed # plugin frei0r (no dependency, seqfaults on load) # port:opencv (configure fails) requires opencv <= 2.4.6.1 but we are at 2.4.7 # port:slv2 (builds but lv2 plugin fails to load and slv2 is not universal) disable lv2 explicitly in case slv2 is installed # port:Xvid (configure fails) plugin xvid not ported in this version # # the following plugins build opportunisticly due to missing dependencies # explicitly disabled for now # configure.args --disable-silent-rules \ --disable-dc1394 \ --disable-frei0r \ --disable-quicktime \ --disable-lv2 \ --disable-mpeg2enc \ --disable-mplex \ --disable-opencv \ --disable-sdltest \ --enable-experimental \ --enable-static # # port:soundtouch (fails on autoreconf on darwin 8 & 9, see #27533) disable soundtouch on these platforms # platform darwin { if {${os.major} < 10} { depends_lib-delete port:soundtouch configure.args-append --disable-soundtouch } } # # applemedia video plugin uses CoreMedia which is not available on darwin 10 or earlier # if { ${os.major} < 11 } { configure.args-append --disable-apple_media } # # X11 is only used for examples that are not installed # so just disable examples and drop the deprecated +no_x11 variant # configure.args-append --disable-examples configure.cppflags-append "-L${prefix}/lib" configure.cflags-append -std=c99 -funroll-loops -fstrict-aliasing configure.env-append "HAVE_CXX=yes" if {[variant_isset universal]} { set merger_host(x86_64) x86_64-apple-${os.platform}${os.major} set merger_host(i386) i686-apple-${os.platform}${os.major} set merger_configure_args(x86_64) --build=x86_64-apple-${os.platform}${os.major} set merger_configure_args(i386) --build=i686-apple-${os.platform}${os.major} # gobject-introspection uses g-ir-scanner, which uses $CC from env foreach arch ${configure.universal_archs} { lappend merger_build_args(${arch}) CC='${configure.cc} -arch ${arch}' lappend merger_destroot_args(${arch}) CC='${configure.cc} -arch ${arch}' } } else { if {${build_arch} eq "i386"} { configure.args-append \ --host=i686-apple-${os.platform}${os.major} \ --build=i686-apple-${os.platform}${os.major} } elseif {${build_arch} eq "x86_64"} { configure.args-append \ --host=${build_arch}-apple-${os.platform}${os.major} \ --build=${build_arch}-apple-${os.platform}${os.major} } build.args-append CC="${configure.cc} ${configure.cc_archflags}" destroot.args-append CC="${configure.cc} ${configure.cc_archflags}" } livecheck.type regex livecheck.url ${master_sites} livecheck.regex "${my_name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"