Ticket #12329: Portfile.3

File Portfile.3, 1.4 KB (added by yves@…, 17 years ago)

vte

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