# -*- 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 PortGroup muniversal 1.0 PortGroup compiler_blacklist_versions 1.0 PortGroup gobject_introspection 1.0 name gegl-0.3 set gname gegl version 0.3.8 set branch [join [lrange [split ${version} .] 0 1] .] conflicts gegl-devel license {GPL-3+ LGPL-3+} categories graphics maintainers devans openmaintainer platforms darwin description GEGL is a graph based image processing framework. long_description GEGL is a graph based image processing framework offering image processing and \ compositing on large images. GEGL is suitable for projects ranging from small \ one-off projects to interactive applications. homepage http://gegl.org/ master_sites gimp:${gname}/${branch}/ use_bzip2 yes distname ${gname}-${version} checksums rmd160 8808f0169a82046b314f5734c13e59b67edb9b9d \ sha256 06ca9e67a59da026eb941b9d323269d7c19a922f1e478acdd3791a0eef8b229b depends_build port:pkgconfig \ port:intltool \ port:w3m \ port:autoconf \ port:automake \ port:libtool \ port:python27 depends_lib port:babl \ port:gtk2 \ port:jpeg \ port:lua \ port:openexr \ port:exiv2 \ port:gexiv2 \ port:json-glib \ port:lcms2 \ port:lensfun \ port:libraw \ port:librsvg \ port:libsdl \ path:lib/libavcodec.dylib:ffmpeg \ port:libspiro \ port:vala \ port:webp patchfiles patch-configure.ac.diff \ patch-force-intltoolize.diff post-patch { # http://trac.macports.org/ticket/35148 if {${os.major} < 10} { reinplace "s|OpenGL/CGLDevice.h|OpenGL/CGLTypes.h|" ${worksrcpath}/gegl/opencl/cl_gl.h } # Not sure what they expected by using these macros... they only belong in system headers... reinplace "s/AVAILABLE_MAC_OS_X_VERSION_10_6_AND_LATER//" ${worksrcpath}/gegl/opencl/cl_platform.h } gobject_introspection yes compiler.blacklist-append gcc-4.0 *gcc-4.2 # reconfigure using upstream autogen.sh for intltool 0.51 compatibility configure.cmd ./autogen.sh configure.python ${prefix}/bin/python2.7 configure.args --disable-docs \ --disable-silent-rules \ --without-graphviz \ --without-umfpack # use version specific binary suffix to avoid conflict with gegl post-destroot { set suffix "-0.3" foreach bin [glob -nocomplain -tails -directory "${destroot}${prefix}/bin" *] { move ${destroot}${prefix}/bin/${bin} \ ${destroot}${prefix}/bin/${bin}${suffix} } } platform darwin { if {[variant_isset universal]} { # In order to build universal on Leopard, you need MacPorts 2.1 set merger_configure_args(x86_64) --build=${build_arch}-apple-${os.platform}${os.version} set merger_configure_cflags(ppc) -fno-altivec set merger_configure_cxxflags(ppc) -fno-altivec } elseif {${build_arch} eq "ppc"} { configure.cflags-append -fno-altivec configure.cxxflags-append -fno-altivec } elseif {${build_arch} eq "x86_64"} { configure.args-append --build=${build_arch}-apple-${os.platform}${os.version} } } variant html_doc description {Build html docs with enscript and asciidoc} { depends_build-append port:asciidoc configure.args-delete --disable-docs configure.args-append --enable-docs } variant workshop description {Enable build of workshop operations} { depends_lib-append port:lensfun configure.args-append --enable-workshop } variant graphviz description {Build with graphviz support} { depends_lib-append path:bin/dot:graphviz configure.args-delete --without-graphviz } # # the following dummy variants are used # to identify this port's binary dependencies # inherited from libsdl and librsvg # variant x11 conflicts quartz {} variant quartz conflicts x11 {} if {![variant_isset quartz]} { default_variants +x11 } livecheck.type regex livecheck.url http://download.gimp.org/pub/${gname}/${branch}/ livecheck.regex "${gname}-(\\d+(?:\\.\\d+)*)${extract.suffix}"