# -*- 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 115447 2014-01-02 09:13:38Z ryandesign@macports.org $

PortSystem              1.0

name                    GraphicsMagick
version                 1.3.19
set branch              [join [lrange [split ${version} .] 0 1] .]
categories              graphics
platforms               darwin
maintainers             ryandesign openmaintainer
license                 MIT

description             image processing tools collection

long_description        GraphicsMagick is the swiss army knife of image \
                        processing. It provides a robust collection of tools and \
                        libraries which support reading, writing, and manipulating an \
                        image in over 88 major formats including important formats \
                        like DPX, GIF, JPEG, JPEG-2000, PNG, PDF, SVG, and TIFF.

homepage                http://www.graphicsmagick.org/
master_sites            sourceforge:project/graphicsmagick/graphicsmagick/${version} \
                        ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/${branch}/

checksums               rmd160  593f3468dc2324d9ed9cb504f34579c078cd11c9 \
                        sha256  de64372bb7bbff18cf14afd35c8239d9588592f053fd51a82f7239ad42174a54

depends_lib             port:libxml2 \
                        port:bzip2 \
                        port:xz \
                        port:zlib \
                        port:libpng \
                        port:tiff \
                        port:freetype \
                        port:libiconv \
                        port:libtool \
                        port:lcms2 \
                        port:jasper \
                        port:jpeg

use_xz                  yes

# llvm-gcc-4.2 gives "Undefined symbols for architecture x86_64: ___builtin_object_size"
compiler.blacklist      *llvm-gcc-4.2

configure.args          --with-jbig=no \
                        --with-jpeg=yes \
                        --with-wmf=no \
                        --with-dps=no \
                        --with-gslib=no \
                        --with-lcms=no \
                        --with-lcms2=yes \
                        --with-x=no \
                        --with-perl=no \
                        --with-trio=no \
                        --with-jp2=yes \
                        --with-fpx=no \
                        --with-png=yes \
                        --with-tiff=yes \
                        --with-bzlib=yes \
                        --with-lzma=yes \
                        --with-zlib=yes \
                        --with-xml=yes \
                        --with-ttf=yes \
                        --without-included-ltdl \
                        --without-umem \
                        --enable-shared=yes

use_parallel_build      yes

post-configure {
    reinplace -E {s|-arch [a-z0-9_]+||g} \
        ${worksrcpath}/magick/GraphicsMagick-config \
        ${worksrcpath}/Magick++/bin/GraphicsMagick++-config
}

test.run                yes
test.target             check

variant q8 conflicts q16 q32 description {Use 8 bits per pixel quantum} {
    configure.args-append --with-quantum-depth=8
}

variant q16 conflicts q8 q32 description {Use 16 bits per pixel quantum} {
    configure.args-append --with-quantum-depth=16
}

variant q32 conflicts q8 q16 description {Use 32 bits per pixel quantum} {
    configure.args-append --with-quantum-depth=32
}

if {![variant_isset q16] && ![variant_isset q32]} {
    default_variants +q8
}

livecheck.regex         /${name}-(\[0-9.\]+)${extract.suffix}
