d0f656651d
- Add APIs for setting font with/without antialiasing, cursor color, hilite color, and a forkpty()-alike. Fix meta-space. Use glib 2.4's child watch API if available. - Add a configure switch for setting the default emulation instead of hard-coding it to be "xterm". - Tweak autowrapping of text to handle cases where the terminal has both LP and xn capabilities. - Truncate empty lines when copying text to mimic xterm. - Internally abstract out matching APIs, though we still use POSIX regex. - Try to set UTF8 line editing mode under sufficiently-new Linux. - Obey Pango's specified attributes when displaying pre-edit text. - Never steal modifier keys which might affect the input method from the input methods. - Fix python binding so that help() lists the terminal class.
34 lines
829 B
Makefile
34 lines
829 B
Makefile
# $NetBSD: Makefile,v 1.11 2004/05/07 11:13:16 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= vte-0.11.11
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/vte/0.11/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.gnome.org/
|
|
COMMENT= Terminal widget with improved accessibility and I18N support
|
|
|
|
BUILD_USES_MSGFMT= yes
|
|
|
|
USE_BUILDLINK3= yes
|
|
USE_DIRS+= gnome2-1.2
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNU_TOOLS+= make
|
|
USE_X11= yes
|
|
|
|
CONFIGURE_ARGS+= --disable-gtk-doc
|
|
CONFIGURE_ARGS+= --disable-python
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
|
|
PKGCONFIG_OVERRIDE+= vte.pc.in
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.include "../../devel/pkgconfig/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../x11/libzvt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|