Ticket #18846: Portfile

File Portfile, 1.2 KB (added by direx@…, 15 years ago)

Updated lmms portfile with fluidsynth and fftw support

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id: Portfile 48118 2009-03-14 23:13:45Z ryandesign@macports.org $
3
4PortSystem          1.0
5PortGroup           cmake 1.0
6
7name                lmms
8version             0.4.3
9categories          multimedia
10maintainers         nomaintainer
11
12description         Linux Multimedia Studio
13long_description    Free alternative to popular programs such as FruityLoops, Cubase and Logic
14
15homepage            http://lmms.sourceforge.net
16platforms           darwin
17master_sites        sourceforge
18default_variants    +fluidsynth +fftw
19#parallel build seems broken :(
20use_parallel_build  no
21use_bzip2           yes
22checksums           md5 6f16fb3a9b13e80d5cea061a87ee26c5
23
24
25#disable VST because it is not supported on OS X
26configure.args-append   -DWANT_VST=off
27
28depends_lib         port:libsndfile \
29                    port:qt4-mac \
30                    port:libsdl
31
32variant fluidsynth description {Add SoundFont2 support} {
33                    depends_lib-append  port:fluidsynth
34}
35
36variant fftw description {Add support for fftw} {
37                    depends_lib-append port:fftw-3-single
38}