Ticket #21538: Portfile.diff
File Portfile.diff, 1.9 KB (added by xenith (Justin Seabrook-Rocha), 15 years ago) |
---|
-
Portfile
old new 4 4 PortSystem 1.0 5 5 6 6 name hydrogen 7 version 0.9.4 -rc1-17 version 0.9.4 8 8 categories audio 9 9 platforms macosx 10 10 maintainers nomaintainer … … 16 16 Its main goal is to provide professional yet simple and \ 17 17 intuitive pattern-based drum programming. 18 18 19 checksums md5 88f036f32153843997837a95c46ecbc5\20 sha1 33e5691cb16defec282f17226778a477cde2d3d7\21 rmd160 c575b81f8a82177c63e36be7a10fa27e0d830e7919 checksums md5 69b0e35a5bba8151347c5e6ec9e8e4f3 \ 20 sha1 e988710f82af858c0c688cb1d1e19d789fca49ef \ 21 rmd160 9f1514462eaa756fe0a3e8fed3ff647a32ad033d 22 22 23 23 depends_build port:scons 24 24 … … 27 27 port:libsndfile \ 28 28 port:libtar 29 29 30 patchfiles patch-Sconstruct.diff \ 31 patch-qt4.py.diff 30 patchfiles patch-Sconstruct.diff 32 31 33 32 post-patch { 34 33 reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/Sconstruct … … 45 44 prefix=${prefix} \ 46 45 alsa=0 \ 47 46 coreaudio=1 \ 47 coremidi=0 \ 48 48 flac=1 \ 49 49 jack=0 \ 50 50 lash=0 \ … … 64 64 reinplace "s|@VERSION@|${version}|g" ${hydrogen_app}/Contents/Info.plist 65 65 } 66 66 67 variant jack description {Compile with JACK support} { 68 depends_lib-append port:jack 69 build.args-delete jack=0 70 build.args-append jack=1 71 } 72 73 variant lrdf description {Compile with LRDF support} { 74 depends_lib-append port:liblrdf 75 build.args-delete lrdf=0 76 build.args-append lrdf=1 77 }