Ticket #30462: patch-valgrind-portfile.diff
File patch-valgrind-portfile.diff, 887 bytes (added by dean.povey@…, 13 years ago) |
---|
-
Portfile
old new 29 29 extract.post_args-append --exclude=${distname}/docs/html/FAQ.html 30 30 31 31 pre-configure { 32 if {"darwin" == ${os.platform} && (${os.major} < 9 || ${os.major} > 1 0)} {33 ui_error "${name} ${version} is only compatible with Mac OS X 10.5 or 10.6."32 if {"darwin" == ${os.platform} && (${os.major} < 9 || ${os.major} > 11)} { 33 ui_error "${name} ${version} is only compatible with Mac OS X 10.5, 10.6 and 10.7" 34 34 return -code error "incompatible Mac OS X version" 35 35 } 36 36 } … … 45 45 use_autoreconf yes 46 46 } 47 47 48 # Patch for lion support 49 if {"darwin" == ${os.platform} && (${os.major} == 11)} { 50 patchfiles-append patch-lion-configure.diff 51 } 52 48 53 configure.args --mandir=${prefix}/share/man \ 49 54 --without-mpicc 50 55