1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name eric4 |
---|
7 | version 4.4.3 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers adfernandes openmaintainer |
---|
11 | description Eric is a full featured Python and Ruby editor and IDE, written in python |
---|
12 | |
---|
13 | long_description \ |
---|
14 | Eric is a full featured Python and Ruby editor and IDE, written in python. \ |
---|
15 | It is based on the cross platform Qt gui toolkit, integrating the highly \ |
---|
16 | flexible Scintilla editor control. It is designed to be usable as everdays' \ |
---|
17 | quick and dirty editor as well as being usable as a professional project \ |
---|
18 | management tool integrating many advanced features Python offers the \ |
---|
19 | professional coder. |
---|
20 | |
---|
21 | homepage http://eric-ide.python-projects.org/index.html |
---|
22 | master_sites sourceforge:project/eric-ide/${name}/stable/${version}/ |
---|
23 | |
---|
24 | checksums sha1 7506e9d0146a072d69bf754ca31d2e55bdd41267 |
---|
25 | |
---|
26 | depends_lib port:python26 port:qt4-mac port:py26-pyqt4 port:py26-qscintilla \ |
---|
27 | port:py26-svn port:py26-rope port:py26-lint port:py26-cx_Freeze port:py26-enchant |
---|
28 | |
---|
29 | configure { |
---|
30 | # Configuration occurs during building |
---|
31 | } |
---|
32 | |
---|
33 | build { |
---|
34 | # Building and installing are synonymous |
---|
35 | } |
---|
36 | |
---|
37 | destroot { |
---|
38 | system "cd '${worksrcpath}'; ${prefix}/bin/python2.6 install.py -b '${prefix}/bin' -i '${destroot}'" |
---|
39 | } |
---|
40 | |
---|
41 | livecheck.type regex |
---|
42 | livecheck.url http://eric-ide.python-projects.org/eric-news.html |
---|
43 | livecheck.regex "eric4 (\\d+\\.\\d+\\.\\d+) has been released" |
---|