Ticket #14481: patch-subversion-svnmerge.diff
File patch-subversion-svnmerge.diff, 1.3 KB (added by raimue (Rainer Müller), 17 years ago) |
---|
-
Portfile
4 4 5 5 name subversion 6 6 version 1.4.6 7 revision 1 7 8 categories devel 8 9 platforms darwin 9 10 maintainers dluke@geeklair.net … … 37 38 --mandir=\\\${prefix}/share/man \ 38 39 --disable-neon-version-check 39 40 40 build.target all mucc41 build.target all 41 42 42 43 pre-test { 43 44 set x {} … … 97 98 } 98 99 99 100 variant tools description {Install some optional extra subversion tools} { 101 build.target-append mucc 100 102 post-destroot { 101 103 xinstall -d -m 755 ${destroot}${prefix}/share/${name} 102 104 copy ${worksrcpath}/tools ${destroot}${prefix}/share/${name}/tools 103 copy ${worksrcpath}/contrib/client-side/mucc ${destroot}${prefix}/bin/104 eval delete [glob ${worksrcpath}/contrib/client-side/{mucc{,.{l,}o},.libs}]105 105 copy ${worksrcpath}/contrib ${destroot}${prefix}/share/${name}/contrib 106 file delete ${worksrcpath}/contrib/client-side/mucc.o 107 foreach tool {wcgrep mucc} { 108 ln -sf ${prefix}/share/${name}/contrib/client-side/$tool ${destroot}${prefix}/bin/ 109 } 110 ln -sf ${prefix}/share/${name}/contrib/client-side/svnmerge.py ${destroot}${prefix}/bin/svnmerge 106 111 } 107 112 } 108 113