# -*- 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 # $Id$ PortSystem 1.0 name gnome-terminal version 2.30.2 revision 4 set branch [join [lrange [split ${version} .] 0 1] .] description Terminal component for the GNOME 2 Desktop long_description \ ${description} maintainers devans openmaintainer categories gnome license GPL-2+ platforms darwin homepage http://www.gnome.org/ master_sites gnome:sources/${name}/${branch}/ checksums md5 74c4528f00067072c2bd867d1f8fe844 \ sha1 ab97acd3d70bdcc468975a49b23ebb05f6e9bc49 \ rmd160 cabf51649dafa6ccf0bbf2903fa081315d7e2933 depends_build port:pkgconfig \ port:intltool \ port:gnome-doc-utils depends_lib port:gconf \ port:vte \ port:xorg-libsm depends_run port:libgnome use_bzip2 yes configure.args \ --mandir=${prefix}/share/man \ --disable-schemas-install \ --disable-scrollkeeper # # while there is an attempt at a quartz version of this port # it has not been maintained upstream for some time and # the quartz build is massively broken at this time due to: # # * explicit use of X11 API in terminal.c even though configured to use quartz # * use of obsolete Carbon/QuickDraw API in eggsmclient-osx.c # # if +quartz is asserted disable X11 dependencies to avoid polluting a clean quartz environment # but terminate with error before build phase, #32059 # variant quartz { depends_lib-delete port:xorg-libsm pre-build { ui_error "${name} does not currently support +quartz builds." ui_error "Please try again without the +quartz variant." return -code error "+quartz build broken." } } post-activate { system "${prefix}/bin/scrollkeeper-update" system "${prefix}/bin/update-desktop-database -q ${prefix}/share/applications; true" system "export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` && \ gconftool-2 --makefile-install-rule ${prefix}/etc/gconf/schemas/*.schemas" } livecheck.type regex livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)}