# -*- 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: Portfile 92008 2012-04-15 23:23:43Z jeremyhu@macports.org $

PortSystem          1.0

# https://bugzilla.gnome.org/show_bug.cgi?id=636134
PortGroup   muniversal 1.0

name                gst-plugins-ugly
version             0.10.19
revision            2
description         \
    A set of good-quality plug-ins for GStreamer that might pose distribution \
    problems.
long_description    \
    GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and \
    correct functionality, but distributing them might pose problems. The \
    license on either the plug-ins or the supporting libraries might not be how \
    we'd like. The code might be widely known to present patent problems. 
maintainers         rmstonecipher openmaintainer
categories          gnome
platforms           darwin
homepage            http://gstreamer.freedesktop.org/modules/${name}.html
master_sites        http://gstreamer.freedesktop.org/src/${name}/

checksums           md5     1d81c593e22a6cdf0f2b4f57eae93df2 \
                    sha1    a28e4e8962f1fe385a098b13249a2b817c44fe63 \
                    rmd160  39fadcf4205bbe0fd2dc079296c816d8668cc59d

depends_build       port:pkgconfig
depends_lib         port:gst-plugins-base \
                    port:a52dec \
                    port:lame \
                    port:libcdio \
                    port:libdvdread \
                    port:libid3tag \
                    port:libmad \
                    port:libmpeg2 \
                    port:twolame \
                    port:x264

use_bzip2           yes

configure.args              mandir=${prefix}/share/man --enable-static
configure.cppflags-append   "-L${prefix}/lib"
configure.cflags-append     -funroll-loops -fstrict-aliasing

post-extract {
    reinplace "s|-flat_namespace -undefined suppress|-undefined define_a_way|g" \
    ${worksrcpath}/configure
}

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}
} elseif {${build_arch} == "i386"} {
    configure.args-append \
        --host=i686-apple-${os.platform}${os.major} \
        --build=i686-apple-${os.platform}${os.major}
} elseif {${build_arch} == "x86_64"} {
    configure.args-append \
        --host=${build_arch}-apple-${os.platform}${os.major} \
        --build=${build_arch}-apple-${os.platform}${os.major}
}

livecheck.type      regex
livecheck.url       ${master_sites}
livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
