# -*- 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 compiler_blacklist_versions 1.0 name gimp2 conflicts gimp2-devel gimp3-devel # please remember to update the gimp metapackage to match version 2.8.18 revision 2 license GPL-3+ categories graphics maintainers devans homepage http://www.gimp.org/ platforms darwin description The GNU Image Manipulation Program long_description The GNU Image Manipulation Program (GIMP) is a powerful \ tool for the preparation and manipulation of digital images. \ The GIMP provides the user with a wide variety of image \ manipulation, painting, processing, and rendering tools. set branch [join [lrange [split ${version} .] 0 1] .] master_sites gimp:gimp/v${branch}/ distname gimp-${version} use_bzip2 yes checksums rmd160 b5ded6e919b0d4c6670fc1ba0642a21d4185edd0 \ sha256 39dd2247c678deaf5cc664397d3c6bd4fb910d3472290fd54b52b441b5815441 depends_build port:pkgconfig \ port:intltool \ port:gtk-doc \ port:autoconf \ port:automake \ port:libtool depends_lib port:desktop-file-utils \ port:iso-codes \ port:babl \ port:gegl \ port:atk \ port:gtk2 \ port:fontconfig \ port:freetype \ port:tiff \ port:jpeg \ port:zlib \ port:bzip2 \ port:ghostscript \ port:libpng \ port:libmng \ port:libexif \ port:aalib \ port:xpm \ port:librsvg \ port:poppler \ port:curl \ port:libwmf \ port:jasper \ port:lcms2 \ port:dbus-glib \ port:libxml2 \ port:libxslt \ port:xorg-libXcursor \ port:xorg-libXmu \ port:xorg-libXext \ port:xorg-libXfixes # gcc-4.2 5493 and 5666.3_13: gimpcpuaccel.c:180: error: can't find a register in class 'BREG' while reloading 'asm' # redefinition of typedef is invalid in C [-Wtypedef-redefinition] (#50329) compiler.blacklist *gcc* {clang < 300} patchfiles patch-etc-gimprc.diff \ patch-plug-ins-common-web-browser.c.diff post-patch { xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath} } pre-configure { if {[file exists ${prefix}/lib/gtk-2.0/include/gdkconfig.h]} { set gtk_not_quartz [catch {exec grep -q GDK_WINDOWING_QUARTZ ${prefix}/lib/gtk-2.0/include/gdkconfig.h}] set gtk_not_x11 [catch {exec grep -q GDK_WINDOWING_X11 ${prefix}/lib/gtk-2.0/include/gdkconfig.h}] if {[variant_isset quartz] && ${gtk_not_quartz}} { error "+quartz variant selected, but gtk2+x11 is installed. Install gtk2+quartz." } elseif {![variant_isset quartz] && ${gtk_not_x11}} { error "+quartz variant is not selected, but gtk2+quartz is installed. Install gtk2+x11." } } else { error "Cannot find gdkconfig.h" } } # reconfigure using upstream autogen.sh for intltool 0.51 compatibility configure.cmd ./autogen.sh configure.args --build=${configure.build_arch}-apple-${os.platform}${os.version} \ --enable-mp \ --with-pdbgen \ --with-lcms=2 \ --with-x \ --x-includes=${prefix}/include \ --x-libraries=${prefix}/lib \ --disable-maintainer-mode \ --disable-silent-rules \ --disable-python \ --without-alsa \ --without-gvfs \ --without-gudev \ --without-webkit # --without-mac-twain: # Leopard's 64bit Carbon is missing QuitApplicationEventLoop # It doesn't build any more anyway: # https://trac.macports.org/ticket/35168 configure.args-append \ --without-mac-twain variant python27 description {Build with python plugin support using python 2.7} { configure.args-delete --disable-python configure.python ${prefix}/bin/python2.7 depends_lib-append port:py27-pygtk set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 configure.pkg_config_path ${python_framework}/lib/pkgconfig configure.env PATH=${python_framework}/bin:$env(PATH) } variant gvfs conflicts quartz description {Enable GIO/gvfs support} { depends_lib-append port:gvfs configure.args-delete --without-gvfs } variant remote description {Enable building of obsolete gimp-remote helper app} { configure.args-append --enable-gimp-remote } variant debug description {Enable debugging} { configure.args-append --enable-debug } variant quartz conflicts gvfs { depends_lib-delete port:xorg-libXcursor \ port:xorg-libXmu \ port:xorg-libXext \ port:xorg-libXfixes \ port:xpm depends_lib-append port:gtk-osx-application-gtk2 configure.args-delete --with-x \ --x-includes=${prefix}/include \ --x-libraries=${prefix}/lib configure.args-append --without-x } # # set default variants # if {[variant_isset quartz]} { default_variants -gvfs +python27 } else { default_variants +python27 } post-activate { system "${prefix}/bin/gtk-update-icon-cache -f -t ${prefix}/share/icons/hicolor" system "${prefix}/bin/update-desktop-database ${prefix}/share/applications" } livecheck.type regex livecheck.url http://ftp.gtk.org/pub/gimp/v${branch}/ livecheck.regex "gimp-(${branch}(?:\\.\\d+)*)${extract.suffix}"