# -*- 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 64763 2010-03-15 16:31:33Z nox@macports.org $

PortSystem              1.0
PortGroup               archcheck 1.0

name                    GraphicsMagick
version                 1.3.12
revision        1
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:graphicsmagick \
                        ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/${branch}/

checksums               md5     55182f371f82d5f9367bce04e59bbf25 \
                        sha1    6b8a414af162ad8679f2f04b10f128edc8ee3233 \
                        rmd160  0a2749ee38a63c00c3ee6259ea7ea65c2bccc621

depends_lib             port:libxml2 \
                        port:bzip2 \
                        port:zlib \
                        port:libpng \
                        port:tiff \
                        port:freetype \
                        port:libiconv \
                        port:lcms \
                        port:jpeg

archcheck.files         lib/libxml2.dylib \
                        lib/libbz2.dylib \
                        lib/libz.dylib \
                        lib/libpng.dylib \
                        lib/libtiff.dylib \
                        lib/libfreetype.dylib \
                        lib/libiconv.dylib \
                        lib/liblcms.dylib \
                        lib/libjpeg.dylib

use_bzip2               yes

configure.args          --with-jbig=no \
                        --with-wmf=no \
                        --with-dps=no \
                        --with-lcms=yes \
                        --with-x=no \
                        --with-perl=no \
                        --with-trio=no \
                        --with-jp2=no \
                        --with-fpx=no \
                        --with-png=yes \
                        --with-tiff=yes \
                        --with-bzlib=yes \
                        --with-zlib=yes \
                        --with-xml=yes \
                        --with-ttf=yes \
                        --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.type          regex
livecheck.regex         {>([0-9.]+)<}
