Date: Thu, 11 Jul 2013 05:52:06 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322742 - head/x11/xterm Message-ID: <201307110552.r6B5q66A044738@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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=""
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307110552.r6B5q66A044738>