From owner-svn-ports-head@FreeBSD.ORG Thu Jul 11 05:52:06 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8B216AFB; Thu, 11 Jul 2013 05:52:06 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7E57411FA; Thu, 11 Jul 2013 05:52:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6B5q6cp044739; Thu, 11 Jul 2013 05:52:06 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6B5q66A044738; Thu, 11 Jul 2013 05:52:06 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201307110552.r6B5q66A044738@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 11 Jul 2013 05:52:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322742 - head/x11/xterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2013 05:52:06 -0000 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 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=""