1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python 1.0 |
---|
5 | |
---|
6 | name frescobaldi |
---|
7 | version 2.0.10 |
---|
8 | categories editors python |
---|
9 | maintainers gmail.com:davide.liessi openmaintainer |
---|
10 | description A LilyPond sheet music text editor |
---|
11 | long_description Frescobaldi is a LilyPond sheet music text editor. \ |
---|
12 | It aims to be powerful, yet lightweight and easy to use. |
---|
13 | homepage http://www.frescobaldi.org/ |
---|
14 | platforms darwin |
---|
15 | supported_archs noarch |
---|
16 | license GPL-2+ |
---|
17 | |
---|
18 | master_sites googlecode:lilykde |
---|
19 | |
---|
20 | checksums rmd160 8d83dfd2a9b2720089e8e09ab2ec56205f76593c \ |
---|
21 | sha256 b30808a2377836b5fb6269c5fd61cd9e52bdfd49c1923c562adc79b9f97c80e5 |
---|
22 | |
---|
23 | build {} |
---|
24 | |
---|
25 | depends_run-append port:portmidi |
---|
26 | |
---|
27 | variant python26 description {Use python 2.6} { |
---|
28 | python.default_version 26 |
---|
29 | depends_run-append port:py${python.default_version}-pyqt4 \ |
---|
30 | port:py${python.default_version}-python-poppler-qt4 |
---|
31 | } |
---|
32 | variant python27 description {Use python 2.7} { |
---|
33 | python.default_version 27 |
---|
34 | depends_run-append port:py${python.default_version}-pyqt4 \ |
---|
35 | port:py${python.default_version}-python-poppler-qt4 |
---|
36 | } |
---|
37 | if {![variant_isset python26]} { |
---|
38 | default_variants +python27 |
---|
39 | } |
---|
40 | variant no_portmidi description {Remove dependency on portmidi (no MIDI support)} { |
---|
41 | depends_run-delete port:portmidi |
---|
42 | } |
---|
43 | variant no_popplerqt4 description {Remove dependency on py-python-poppler-qt4 (no PDF support)} { |
---|
44 | depends_run-delete port:py${python.default_version}-python-poppler-qt4 |
---|
45 | } |
---|