RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/textproc/linuxdoc/Portfile,v
retrieving revision 1.4
diff -d -u -r1.4 Portfile
|
|
|
23 | 23 | |
24 | 24 | set instdir share/sgml/linuxdoc |
25 | 25 | |
26 | | destroot { system "install -o root -m 755 -d \ |
27 | | ${destroot}${prefix}/${instdir}" |
28 | | system "install -o root -m 644 ${workpath}/catalog \ |
29 | | ${destroot}${prefix}/${instdir}" |
30 | | system "install -o root -m 644 ${workpath}/*.* \ |
31 | | ${destroot}${prefix}/${instdir}" } |
| 26 | destroot { |
| 27 | xinstall -m 755 -d ${destroot}${prefix}/${instdir} |
| 28 | xinstall -m 644 ${workpath}/catalog ${destroot}${prefix}/${instdir} |
| 29 | eval xinstall -m 644 [glob ${workpath}/*.*] ${destroot}${prefix}/${instdir} |
| 30 | } |
32 | 31 | |
33 | 32 | destroot.args prefix=${destroot}${prefix} |