# -*- 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 115755 2014-01-10 21:33:49Z ryandesign@macports.org $

PortSystem              1.0
PortGroup               compiler_blacklist_versions 1.0
PortGroup               muniversal 1.0

name                    gettext
version                 0.18.3.2
categories              devel
maintainers             ryandesign
# libs are LGPL and executables are GPL
license                 {LGPL-2.1+ GPL-3+}
homepage                http://www.gnu.org/software/gettext/
master_sites            gnu
platforms               darwin freebsd linux
use_parallel_build      yes

description             GNU internationalization (i18n) and localization (l10n) library

long_description        ${name} is the ${description}, used for writing multilingual programs.

checksums               rmd160  9536784e55cdd7342b4cdd93f4b621db5460fb38 \
                        sha256  d1a4e452d60eb407ab0305976529a45c18124bd518d976971ac6dc7aa8b4c5d7

# Update libtool to pass -stdlib when linking dylibs.
# Note: unable to autoreconf due to dependency cycle
patchfiles               stdlib.patch

# https://trac.macports.org/ticket/31167
compiler.blacklist-append   {clang < 211.10.1}

configure.cppflags      -no-cpp-precomp

configure.args          ac_cv_prog_AWK=/usr/bin/awk \
                        ac_cv_path_GREP=/usr/bin/grep \
                        ac_cv_path_SED=/usr/bin/sed \
                        --disable-csharp \
                        --disable-native-java \
                        --disable-openmp \
                        --without-emacs \
                        --with-included-gettext \
                        --with-included-glib \
                        --with-included-libcroco \
                        --with-included-libunistring \
                        --with-included-libxml

# Don't use git (if it's installed) nor cvs to create the autopoint archive
# because the archives they create for each architecture under muniversal
# will differ and cannot be merged.
configure.args-append   --without-git \
                        --without-cvs

depends_lib             port:expat \
                        port:libiconv \
                        port:ncurses

test.run                yes
test.target             check

post-destroot {
    if {[file exists ${destroot}${prefix}/lib/charset.alias]} {
        delete ${destroot}${prefix}/lib/charset.alias
    }
    if {[file exists ${destroot}${prefix}/share/locale/locale.alias]} {
        delete ${destroot}${prefix}/share/locale/locale.alias
    }
    xinstall -m 644 -W ${worksrcpath} \
        AUTHORS \
        COPYING \
        ChangeLog \
        ChangeLog.0 \
        DEPENDENCIES \
        HACKING \
        NEWS \
        README \
        THANKS \
        ${destroot}${prefix}/share/doc/${name}
}

livecheck.type          regex
livecheck.url           http://ftp.gnu.org/gnu/gettext/?C=M&O=D
livecheck.regex         ${name}-(\[0-9.\]+)\\.tar
