Ticket #38917: Portfile.diff
File Portfile.diff, 1.5 KB (added by kjellpk (Kjell Konis), 12 years ago) |
---|
-
Portfile
old new 5 5 PortGroup xcode 1.0 6 6 7 7 name R-app 8 version 1. 538 version 1.60 9 9 categories math science aqua 10 10 maintainers me.com:kjell.konis 11 11 license GPL-2+ … … 19 19 fetch.type svn 20 20 svn.url https://svn.r-project.org/R-packages/trunk/Mac-GUI 21 21 svn.method checkout 22 svn.revision 6 33522 svn.revision 6476 23 23 24 24 post-patch { 25 25 reinplace "s|/Library/Frameworks/R.framework|${frameworks_dir}/R.framework|g" \ … … 28 28 29 29 use_configure no 30 30 31 depends_lib port:R -framework31 depends_lib port:R 32 32 33 33 universal_variant no 34 34 35 35 worksrcdir Mac-GUI 36 36 37 # R-app does not yet build with clang38 if {${configure.compiler} == "clang"} {39 configure.compiler llvm-gcc-4.240 }41 42 37 xcode.project R.xcodeproj 43 38 xcode.target R 44 xcode.configuration Deployment64 39 40 if {${os.major} == "11"} { 41 xcode.configuration Lion64 42 } elseif {${os.major} == "12"} { 43 xcode.configuration MLion64 44 } else { 45 xcode.configuration SnowLeopard64 46 } 47 45 48 xcode.build.settings FRAMEWORK_SEARCH_PATHS=${frameworks_dir} 46 49 xcode.destroot.settings FRAMEWORK_SEARCH_PATHS=${frameworks_dir} 47 50