Ticket #17956: system_x11.fix.patch
File system_x11.fix.patch, 1.8 KB (added by mtalexander (Mike Alexander), 16 years ago) |
---|
-
dports/x11/mesa/Portfile
36 36 use_configure no 37 37 38 38 post-extract { 39 ln -s darwin ${worksrcpath}/configs/current 39 if {[file exists "${worksrcpath}/configs/current"]} { 40 ln -s darwin ${worksrcpath}/configs/current 41 } 40 42 } 41 43 42 44 build.target default … … 55 57 if { [file exists ${x11prefix}/lib/libGLU.dylib] && ! [string equal ${prefix} ${x11prefix}] } { 56 58 fetch { } 57 59 checksum { } 60 distfiles 61 patch { } 58 62 build { } 59 63 destroot { 60 64 xinstall -d ${destroot}${prefix}/share/doc/${name} -
dports/x11/xorg-libAppleWM/Portfile
51 51 system "echo ${long_description} > ${destroot}${prefix}/share/doc/${name}/README.txt" 52 52 } 53 53 use_configure no 54 use_autoconf no 54 55 } 55 56 } -
dports/x11/xrender/Portfile
35 35 use_parallel_build yes 36 36 37 37 post-destroot { 38 set docdir ${prefix}/share/doc/${name}-${version} 39 xinstall -d ${destroot}${docdir} 40 xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ 41 ${destroot}${docdir} 38 if {[file exists "${worksrcpath}"]} { 39 set docdir ${prefix}/share/doc/${name}-${version} 40 xinstall -d ${destroot}${docdir} 41 xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS README \ 42 ${destroot}${docdir} 43 } 42 44 } 43 45 44 46 platform macosx {