# -*- 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 119837 2014-05-07 22:52:58Z mcalhoun@macports.org $

PortSystem          1.0
PortGroup           cmake 1.0

name                openjpeg
version             2.1.0
categories          graphics
platforms           darwin
license             BSD

maintainers         mcalhoun openmaintainer

description         Library for manipulating JPEG-2000 images

long_description    The OpenJPEG library is an open-source JPEG 2000 codec. \
                    It has been developed in order to promote the use of JPEG \
                    2000, the new still-image compression standard from the \
                    Joint Photographic Experts Group (JPEG).

homepage            http://sourceforge.net/projects/openjpeg.mirror/
master_sites        sourceforge:openjpeg.mirror

checksums           rmd160  dc6e77a2539ab4071cf1a1b62f653fea13707b54 \
                    sha256  1232bb814fd88d8ed314c94f0bfebb03de8559583a33abbe8c64ef3fc0a8ff03

depends_build       port:pkgconfig \
                    port:cmake

depends_lib         port:libpng \
                    port:tiff \
                    port:lcms2 \
                    port:zlib \
                    port:jbigkit

configure.cppflags-replace -I${prefix}/include -isystem${prefix}/include

pre-activate {
    # openjpeg < 1.5.0 accidentally installed items directly into
    # ${prefix}/share/man bypassing ${destroot}; remove them if found.
    foreach m {man1/image_to_j2k.1.gz man1/j2k_dump.1.gz man1/j2k_to_image.1.gz man3/libopenjpeg.3.gz} {
        set filepath ${prefix}/share/man/${m}
        if {[file exists ${filepath}] && [registry_file_registered ${filepath}] == "0"} {
            if {[catch {delete ${filepath}}]} {
                ui_warn "Cannot delete ${filepath}; please remove it manually"
            }
        }
    }
}

livecheck.type      sourceforge
livecheck.name      openjpeg.mirror
livecheck.distname  ${livecheck.name}/files
