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