1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name html |
---|
5 | version 4.01 |
---|
6 | categories textproc www |
---|
7 | maintainers mstokely@google.com |
---|
8 | description All W3C published SGML DTDs for HTML |
---|
9 | homepage http://www.w3.org/ |
---|
10 | platforms darwin |
---|
11 | |
---|
12 | long_description SGML DTDs for HTML level 0, 1, 2, 3.2, and 4.0 as \ |
---|
13 | defined by the World Wide Web Consortium (W3C). \ |
---|
14 | These DTDs are useful for validating or processing \ |
---|
15 | world wide web pages with SGML tools such as those in \ |
---|
16 | the opensp and openjade ports. |
---|
17 | |
---|
18 | master_sites ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/ |
---|
19 | |
---|
20 | checksums md5 57a45bf82f0a3694d59d889b0d0ad71c \ |
---|
21 | sha1 621c8b602f4190bc33007d32b91b8db977ab3641 \ |
---|
22 | rmd160 24f90ce8caec8137b03e31faef54a482e1a5f0cb |
---|
23 | |
---|
24 | depends_run bin:mkcatalog:mkcatalog |
---|
25 | |
---|
26 | configure {} |
---|
27 | build {} |
---|
28 | |
---|
29 | set instdir share/sgml/html |
---|
30 | |
---|
31 | destroot { |
---|
32 | xinstall -m 755 -d ${destroot}${prefix}/${instdir} |
---|
33 | xinstall -m 644 ${workpath}/catalog ${destroot}${prefix}/${instdir} |
---|
34 | xinstall -m 755 -d ${destroot}${prefix}/${instdir}/2.0 |
---|
35 | xinstall -m 755 -d ${destroot}${prefix}/${instdir}/3.2 |
---|
36 | xinstall -m 755 -d ${destroot}${prefix}/${instdir}/4.0 |
---|
37 | xinstall -m 755 -d ${destroot}${prefix}/${instdir}/4.01 |
---|
38 | eval xinstall -m 644 [glob ${workpath}/2.0/*.*] ${destroot}${prefix}/${instdir}/2.0 |
---|
39 | eval xinstall -m 644 [glob ${workpath}/3.2/*.*] ${destroot}${prefix}/${instdir}/3.2 |
---|
40 | eval xinstall -m 644 [glob ${workpath}/4.0/*.*] ${destroot}${prefix}/${instdir}/4.0 |
---|
41 | eval xinstall -m 644 [glob ${workpath}/4.01/*.*] ${destroot}${prefix}/${instdir}/4.01 |
---|
42 | } |
---|
43 | |
---|
44 | destroot.args prefix=${destroot}${prefix} |
---|