mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
67 lines
2.0 KiB
Tcl
67 lines
2.0 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup dlang dlang.org 2.088.0 v
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
github.tarball_from tarball
|
|
name dmd-doc
|
|
revision 1
|
|
categories lang
|
|
platforms any
|
|
license Boost-1
|
|
maintainers nomaintainer
|
|
|
|
description HTML files for dman of the D programming language compiler
|
|
long_description \
|
|
D is a language with C-like syntax and static typing. \
|
|
It pragmatically combines efficiency, control, \
|
|
and modeling power, with safety and programmer productivity. \
|
|
This port provides the html files required to build the dman command of \
|
|
the D programming language compiler.
|
|
homepage http://dlang.org/
|
|
|
|
checksums rmd160 613ec4cf4bb12d7b2105b8aada112e9cd2b70d23 \
|
|
sha256 70ca50d4ff947f8ca1654e982c98ea0378433a2d5c8d1ed628617e2879db2d2a \
|
|
size 3382341
|
|
|
|
depends_build port:phobos
|
|
|
|
use_configure no
|
|
|
|
if {${build_arch} ni "i386 ppc"} {
|
|
set model 64
|
|
} else {
|
|
set model 32
|
|
}
|
|
|
|
set dmd ${prefix}/bin/dmd
|
|
set dflags "-O -d"
|
|
set ddocflags " -c -o- -Df"
|
|
set ddoc "macros.ddoc doc.ddoc"
|
|
set stddoc "std.ddoc"
|
|
set stddocflags "-m${model} -d -c -o- -version=StdDoc"
|
|
build {
|
|
file mkdir ${worksrcpath}/dmd
|
|
system "
|
|
cd ${worksrcpath};
|
|
${dmd} ${ddocflags}dmd/expression.html ${ddoc} spec/expression.dd;
|
|
${dmd} ${ddocflags}dmd/statement.html ${ddoc} spec/statement.dd
|
|
"
|
|
foreach f [glob ${prefix}/include/phobos/std/*.d] {
|
|
set html std_[file rootname [file tail ${f}]].html
|
|
system "
|
|
cd ${worksrcpath};
|
|
${dmd} ${stddocflags} ${stddoc} -Dfdmd/${html} ${f}
|
|
"
|
|
}
|
|
}
|
|
|
|
destroot {
|
|
xinstall -d -m 755 ${destroot}${prefix}/share/doc
|
|
file copy ${worksrcpath}/dmd ${destroot}${prefix}/share/doc
|
|
}
|
|
|
|
github.livecheck.regex {([^"-]+)}
|