1 | # $Id: Portfile 26116 2007-06-13 00:41:54Z rhwood@macports.org $ |
---|
2 | PortSystem 1.0 |
---|
3 | name vte |
---|
4 | version 0.16.5 |
---|
5 | revision 1 |
---|
6 | description Terminal widget with improved accessibility and I18N support. |
---|
7 | long_description \ |
---|
8 | Terminal widget with improved font, \ |
---|
9 | internationalisation and accessibility support \ |
---|
10 | for the GNOME 2 desktop. Designed to replace libzvt. |
---|
11 | |
---|
12 | maintainers rhwood openmaintainer@macports.org |
---|
13 | categories gnome |
---|
14 | platforms darwin |
---|
15 | homepage http://www.gnome.org/ |
---|
16 | |
---|
17 | master_sites gnome:sources/vte/0.16/ |
---|
18 | checksums md5 54252b22c7df76e4e1bf8f5a89fe394d |
---|
19 | use_bzip2 yes |
---|
20 | |
---|
21 | depends_lib port:py25-gtk |
---|
22 | |
---|
23 | patchfiles patch-python_vtemodule.c |
---|
24 | |
---|
25 | configure.args --mandir=${prefix}/share/man \ |
---|
26 | --with-ft-prefix=${prefix} \ |
---|
27 | --disable-freetypetest \ |
---|
28 | --with-ft-include-prefix=${prefix}/include/freetype2 \ |
---|
29 | --enable-python |
---|
30 | |
---|
31 | configure.env GMSGFMT=${prefix}/bin/msgfmt \ |
---|
32 | PYTHON=${prefix}/bin/python2.5 |
---|
33 | |
---|
34 | configure.cppflags-append -I${prefix}/include/freetype2 |
---|
35 | configure.cflags-append -fstrict-aliasing -funroll-loops |
---|
36 | |
---|
37 | variant without_python { |
---|
38 | depends_lib-delete port:py25-gtk |
---|
39 | configure.env-delete PYTHON=${prefix}/bin/python2.5 |
---|
40 | configure.args-delete --enable-python |
---|
41 | configure.args-append --disable-python |
---|
42 | } |
---|