Ticket #55115: audacity.diff
File audacity.diff, 2.5 KB (added by RJVB (René Bertin), 7 years ago) |
---|
-
Portfile
old new 3 3 PortSystem 1.0 4 4 PortGroup wxWidgets 1.0 5 5 PortGroup compiler_blacklist_versions 1.0 6 PortGroup active_variants 1.1 6 7 7 8 name audacity 8 #conflicts audacity-gtk9 conflicts audacity-gtk 9 10 10 11 description A Free, Cross-Platform Digital Audio Editor. 11 12 long_description Audacity is a free, easy-to-use, multi-track audio editor and recorder \ … … 66 69 depends_build-append \ 67 70 port:${wxWidgets.port} 68 71 72 if {![catch {set wxw_stdlib [active_variants wxWidgets-3.0 stdlib]} err]} { 73 if {${wxw_stdlib}} { 74 long_description-append "This port needs wxWidgets-3.0 without the +stdlib variant." 75 pre-fetch { 76 ui_error "This port needs wxWidgets-3.0 without the +stdlib variant." 77 return -code error "reinstall port:wxWidgets-3.0 without the +stdlib variant" 78 } 79 } 80 } 81 69 82 depends_build-append \ 70 83 port:cmake \ 71 84 port:pkgconfig \ … … 107 120 patch-python.diff \ 108 121 patch-vstcontrolosx.diff \ 109 122 patch-libnyquist-symbol-visibility.diff \ 110 patch-fix-casts.diff \ 111 patch-add-MenusMac.diff \ 112 patch-skip-gcc-version-test.diff 123 patch-fix-casts.diff \ 124 patch-add-MenusMac.diff \ 125 patch-skip-gcc-version-test.diff 126 # for building against wxWidgets 3.0.3: 127 patchfiles-append \ 128 patch-wxw-303.diff 113 129 } 114 130 115 131 if {${subport} eq "${name}"} { … … 233 263 } 234 264 235 265 notes " 236 In case Audacity c annot findFFmpeg or Lame, please locate these libraries\266 In case Audacity complains about finding FFmpeg or Lame, please locate these libraries\ 237 267 under ${prefix}/lib in the Libraries section of the Preferences dialog (see\ 238 http://manual.audacityteam.org/man/installing_and_updating_audacity_on_mac_os_x.html#locate) .268 http://manual.audacityteam.org/man/installing_and_updating_audacity_on_mac_os_x.html#locate) 239 269 " 240 270 241 271 # kate: backspace-indents true; indent-pasted-text true; indent-width 4; keep-extra-spaces true; remove-trailing-spaces modified; replace-tabs true; replace-tabs-save true; syntax Tcl/Tk; tab-indents true; tab-width 4;