# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
# $Id: Portfile 52163 2009-06-11 14:51:47Z nox@macports.org $

PortSystem      1.0

name            nano
version         2.0.9
categories      editors
platforms       darwin freebsd
maintainers     nomaintainer
description     Nano's ANOther editor - enhanced free Pico Clone

long_description \
    GNU nano is a small and friendly text editor. Besides basic text \
    editing, nano offers many extra features like an interactive search \
    and replace, goto line number, auto-indentation, feature toggles, \
    internationalization support, and filename tab completion.

homepage        http://www.nano-editor.org/
master_sites    ${homepage}dist/v[strsed ${version} {/\.[0-9]*$//}]/ gnu

checksums       md5     2be94dc43fb60fff4626a2401a977220 \
                sha1    fce55a02b2809a141258b3c1715d8fd95e004234 \
                rmd160  a2356cdd1779ab5312307a8eb462516eeaa6e943

depends_lib     port:ncursesw \
                port:gettext \
                port:libiconv

configure.args  --enable-all \
                --disable-wrapping-as-root \
                --enable-utf8

use_parallel_build  yes

destroot.target install-strip

set docdir      ${prefix}/share/doc/${name}-${version}

post-destroot {
    xinstall -d $destroot$docdir/html
    xinstall -m 644 -W $worksrcpath AUTHORS BUGS COPYING ChangeLog INSTALL NEWS \
        README THANKS TODO doc/nanorc.sample ${destroot}${docdir}
    xinstall -m 644 -W $worksrcpath/doc faq.html texinfo/nano.html $destroot$docdir/html
}

post-activate {
    ui_msg "A sample configuration file is available at \"${docdir}/nanorc.sample\"."
}

livecheck.check freshmeat
