Ticket #25661: patch-tsocks-perms.diff
File patch-tsocks-perms.diff, 1.1 KB (added by raimue (Rainer Müller), 14 years ago) |
---|
-
Users/raim/src/macports/trunk/dports/net/tsocks/Portfile
38 38 39 39 post-destroot { 40 40 xinstall -m 755 -d ${destroot}${prefix}/etc 41 xinstall -m 755${worksrcpath}/tsocks.conf.simple.example ${destroot}${prefix}/etc/tsocks.conf.sample41 xinstall -m 644 ${worksrcpath}/tsocks.conf.simple.example ${destroot}${prefix}/etc/tsocks.conf.sample 42 42 43 43 xinstall -m 755 -d ${destroot}${prefix}/share/examples/tsocks 44 eval xinstall -m 755[glob ${worksrcpath}/*.example] ${destroot}${prefix}/share/examples/tsocks44 eval xinstall -m 644 [glob ${worksrcpath}/*.example] ${destroot}${prefix}/share/examples/tsocks 45 45 46 46 xinstall -m 755 -d ${destroot}${prefix}/share/doc/tsocks 47 47 foreach doc { COPYING ChangeLog FAQ INSTALL TODO } { 48 xinstall -m 755${worksrcpath}/${doc} ${destroot}${prefix}/share/doc/tsocks/${doc}48 xinstall -m 644 ${worksrcpath}/${doc} ${destroot}${prefix}/share/doc/tsocks/${doc} 49 49 } 50 50 } 51 51