Ticket #43200: Portfile-LibreCAD.diff
File Portfile-LibreCAD.diff, 1.7 KB (added by librecad@…, 11 years ago) |
---|
-
Portfile
old new 5 5 PortGroup github 1.0 6 6 PortGroup qmake 1.0 7 7 8 github.setup LibreCAD LibreCAD 2.0. 28 github.setup LibreCAD LibreCAD 2.0.3 9 9 categories cad 10 10 platforms darwin 11 11 maintainers rvt.dds.nl:librecad \ … … 24 24 25 25 homepage http://librecad.org/ 26 26 27 checksums rmd160 3 0ae8dc909fbc34f9b1f0f448b499813ab573c40\28 sha256 75460c0d959245d4257734bdbcac69887d6ebc91312499ed228d1c4b60d0b92827 checksums rmd160 3731a4d6223e5c4440b57e5e1077a0f460cc3e5e \ 28 sha256 9f7900b0489254e2119d58a36a215551d2d4d7bae291d06e5783da94aeaab126 29 29 30 30 depends_lib-append port:boost \ 31 port:muparser \32 31 port:freetype 33 32 33 pre-configure { 34 configure.args-append \"build_muparser=true\" 35 } 36 34 37 if {${os.platform} eq "darwin" && ${os.major} < 13} { 35 38 configure.compiler macports-gcc-4.8 36 39 # -r ensure's that we will build all Makefiles when QMake get's executed … … 69 72 70 73 # Set these libgcc libraries to local 71 74 # TODO: Put these in the foreach loop somehow 72 system "install_name_tool -change /opt/local/lib/libgcc/libstdc++.6.dylib \75 system "install_name_tool -change ${prefix}/lib/libgcc/libstdc++.6.dylib \ 73 76 @executable_path/../Frameworks/libstdc++.6.dylib ${librecad}" 74 system "install_name_tool -change /opt/local/lib/libgcc/libgcc_s.1.dylib \77 system "install_name_tool -change ${prefix}/lib/libgcc/libgcc_s.1.dylib \ 75 78 @executable_path/../Frameworks/libgcc_s.1.dylib ${librecad}" 76 79 77 80 }