1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00
freebsd-ports/x11-toolkits/vte/Makefile

40 lines
943 B
Makefile
Raw Normal View History

# New ports collection makefile for: vte
# Date created: 05 October 2002
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= vte
2006-03-15 05:51:26 +00:00
PORTVERSION= 0.11.21
CATEGORIES= x11-toolkits gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
2004-05-06 02:51:51 +00:00
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:R}
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
2003-02-20 18:03:45 +00:00
COMMENT= Terminal widget with improved accessibility and I18N support
USE_BZIP2= yes
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_BISON= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
Took all patches from the Debian, because current VTE lacks maintain and gnome-terminal development has stagnated. Almost all patches are in GNOME bugzilla for the weeks and months. Bump the PORTREVISION. -patch-01_vtemodule: Fix build with the python module -patch-03_cursor_position: Added a patch for supporting some save/restore cursor position console sequences -patch-04_dsp_non_alias: FcConfigSubstitute in place of _vte_fc_defaults_from_gtk to get antialias and hinting value http://bugs.gnome.org/show_bug.cgi?id=142640 -patch-05_performance_boost: Balanced performance improvement http://bugs.gnome.org/show_bug.cgi?id=143914 -- This is very amazing improvement. Here's benchmark of it to show that gnome-terminal isn't far from aterm and xterm anymore. Old benchmark: ======================================= $ time ls -lR /usr/ports aterm: 7.99 real1.31 user2.75 sys xterm: 11.04 real1.34 user2.47 sys gnome: 41.76 real1.12 user2.45 sys (ouch....) ======================================= New benchmark: ============================================== $ time ls -lR /usr/ports aterm: 7.28 real 1.20 user 2.41 sys xterm: 9.85 real 0.91 user 2.08 sys gnome: 10.41 real 0.86 user 2.02 sys ============================================== Big deal! -patch-06_remove_doublefree: Resolve double free problem http://bugs.gnome.org/show_bug.cgi?id=161337 -patch-07_set_backspace_to_utf8: Set backspace behavior to utf8 (depends on utf8 locale) http://bugs.gnome.org/show_bug.cgi?id=158200 -patch-08_multiscreen_safe: Make vte multi-screen safe http://bugs.gnome.org/show_bug.cgi?id=160782 -patch-09_redraw_vte_screen: Redraw vte screen with correct background color http://bugs.gnome.org/show_bug.cgi?id=125364 -patch-10_hide_pageup_behavior: Hide manifestation of PageUp behavior with less http://bugs.gnome.org/show_bug.cgi?id=115149 <marcus>: I for one welcome our new vte patch overlord. I think all of them would make good additions. <ahze>: I am all for the performance_boost patch! gnome-terminal kinda sucks when lines are going by fast. <mezz>: showing the before and after benchmark. <marcus>: Commit! Commit! :-) Reviewed by: marcus and ahze
2005-01-19 20:29:21 +00:00
USE_GNOME= gnomeprefix gnomehack gtk20
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
BSD_PTHREAD_LIBS="${PTHREAD_LIBS}"
2003-01-15 04:51:24 +00:00
CONFIGURE_ARGS= --disable-python
OPTIONS= GLX "Enable support for DRI/GLX rendering" off
.include <bsd.port.pre.mk>
.if defined(WITH_GLX)
CONFIGURE_ARGS+= --with-glX
2003-11-08 01:03:45 +00:00
USE_GL= yes
.endif
.include <bsd.port.post.mk>