1 | # $Id$ |
---|
2 | PortSystem 1.0 |
---|
3 | name xmlgen |
---|
4 | version 1.4 |
---|
5 | categories lang/tcl |
---|
6 | maintainers mac.com:giorgio_v |
---|
7 | description The Tcl package xmlgen allows to write Tcl code which translates itself into XML. |
---|
8 | long_description Every tag is made into a markup command which takes attributes and the element's \ |
---|
9 | content as parameters and then prints the XML tagged content. Of \ |
---|
10 | course, the content again can contain markup commands. |
---|
11 | homepage http://tclxml.sourceforge.net/xmlgen.html |
---|
12 | platforms darwin |
---|
13 | master_sites sourceforge:tclxml |
---|
14 | checksums md5 33ab852e21d5afd9bc9bc21c69edd071 \ |
---|
15 | sha1 0479da756d8473bebec25e2628da35556399cb99 \ |
---|
16 | rmd160 ec6a8915106a0189ab62c29d966ab16a5c3978fa |
---|
17 | depends_run port:tcl |
---|
18 | use_configure no |
---|
19 | universal_variant no |
---|
20 | build {} |
---|
21 | destroot { |
---|
22 | set sw_dest_dir ${destroot}${prefix}/lib/$name-$version/ |
---|
23 | set doc_dest_dir ${destroot}${prefix}/share/doc/$name-$version/ |
---|
24 | |
---|
25 | file mkdir -p $sw_dest_dir |
---|
26 | file mkdir -p $doc_dest_dir |
---|
27 | |
---|
28 | xinstall ${worksrcpath}/htmlgen.tcl ${worksrcpath}/pkgIndex.tcl \ |
---|
29 | ${worksrcpath}/sidenav.tcl ${worksrcpath}/tab.tcl \ |
---|
30 | ${worksrcpath}/xmlgen.tcl \ |
---|
31 | $sw_dest_dir |
---|
32 | |
---|
33 | xinstall ${worksrcpath}/doc/htmlgen.html ${worksrcpath}/doc/overview.html \ |
---|
34 | ${worksrcpath}/doc/sidenav.html ${worksrcpath}/doc/xmlgen.html \ |
---|
35 | $doc_dest_dir |
---|
36 | } |
---|
37 | |
---|
38 | livecheck.check regex |
---|
39 | livecheck.url http://sourceforge.net/project/showfiles.php?group_id=13178 |
---|
40 | livecheck.regex xmlgen-(\[0-9\\.\]+)\\.tar.gz |
---|