svn commit: r322742 - head/x11/xterm
Emanuel Haupt
ehaupt at FreeBSD.org
Thu Jul 11 05:52:06 UTC 2013
Author: ehaupt
Date: Thu Jul 11 05:52:06 2013
New Revision: 322742
URL: http://svnweb.freebsd.org/changeset/ports/322742
Log:
xterm patch #294 supports experimental sixel graphics. Provide an option.
PR: 180448
Submitted by: IWAMOTO Kouichi <sue at iwmt.org>
Modified:
head/x11/xterm/Makefile
Modified: head/x11/xterm/Makefile
==============================================================================
--- head/x11/xterm/Makefile Thu Jul 11 05:05:46 2013 (r322741)
+++ head/x11/xterm/Makefile Thu Jul 11 05:52:06 2013 (r322742)
@@ -27,11 +27,12 @@ CPPFLAGS+= -I${LOCALBASE}/include
ICONVERSION= 1
-OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE GNOME DABBREV 256COLOR
+OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE GNOME DABBREV 256COLOR SIXEL
DABBREV_DESC= Enable support for dabbrev-expand
DECTERM_DESC= Enable DECterm Locator support
LUIT_DESC= Use LUIT for locale convertion from/to UTF-8
+SIXEL_DESC= Enable Sixel graphics support
WCHAR_DESC= Enable wide-character support
256COLOR_DESC= Enable 256-color support
@@ -65,6 +66,10 @@ LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcr
CONFIGURE_ARGS+= --enable-dabbrev
.endif
+.if ${PORT_OPTIONS:MSIXEL}
+CONFIGURE_ARGS+= --enable-sixel-graphics
+.endif
+
.if ${PORT_OPTIONS:MGNOME}
USE_GNOME= desktopfileutils
PLIST_SUB+= GNOME=""
More information about the svn-ports-head
mailing list