# -*- 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 66675 2010-04-19 18:32:25Z ricci@macports.org $

PortSystem      1.0

name            perl5
version         5.8.9
categories      lang
platforms       darwin freebsd linux
maintainers     ricci mcalhoun
depends_lib     port:perl5.8

description         Wrapper port for perl 5.x
long_description    ${description}

homepage        http://www.perl.org/
master_sites    
distfiles

if {[info exists supported_archs]} {
    supported_archs noarch
}
use_configure       no
build {}
destroot {}

variant perl5_10 description { use perl 5.10 instead of perl 5.8 or perl 5.12} {
    depends_lib-delete  port:perl5.8
    depends_lib-append  port:perl5.10

    version 5.10
}

variant perl5_12 description { use perl 5.12 instead of perl 5.8 or perl 5.10 } {
    depends_lib-delete  port:perl5.8
    depends_lib-append  port:perl5.12

    version 5.12
}

post-destroot {
## XYZZY: add check that the files on both sides of the link do and do not exist:
    ln -s perl${version} ${destroot}${prefix}/bin/$name
}
livecheck.type     none
