From owner-svn-ports-all@FreeBSD.ORG Thu Sep 6 14:42:44 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1D2B106564A; Thu, 6 Sep 2012 14:42:44 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9D31F8FC08; Thu, 6 Sep 2012 14:42:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q86Egica036430; Thu, 6 Sep 2012 14:42:44 GMT (envelope-from nobutaka@svn.freebsd.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q86EgiJN036428; Thu, 6 Sep 2012 14:42:44 GMT (envelope-from nobutaka@svn.freebsd.org) Message-Id: <201209061442.q86EgiJN036428@svn.freebsd.org> From: MANTANI Nobutaka Date: Thu, 6 Sep 2012 14:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303758 - head/x11/mlterm X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2012 14:42:44 -0000 Author: nobutaka Date: Thu Sep 6 14:42:44 2012 New Revision: 303758 URL: http://svn.freebsd.org/changeset/ports/303758 Log: Add SIXEL option. PR: ports/171308 Submitted by: IWAMOTO Kouichi Modified: head/x11/mlterm/Makefile Modified: head/x11/mlterm/Makefile ============================================================================== --- head/x11/mlterm/Makefile Thu Sep 6 14:37:34 2012 (r303757) +++ head/x11/mlterm/Makefile Thu Sep 6 14:42:44 2012 (r303758) @@ -33,7 +33,8 @@ OPTIONS= FRIBIDI "Use Fribidi for BiDi r M17NLIB "m17n library support (experimental)" off \ SCIM "SCIM support (experimental)" off \ IBUS "IBUS support (experimental)" off \ - CAIRO "Use Cairo for type engine (experimental)" off + CAIRO "Use Cairo for type engine (experimental)" off \ + SIXEL "Sixel graphics support" off .include @@ -96,6 +97,14 @@ CONFIGURE_ARGS+= --with-type-engines="xc PLIST_SUB+= CAIRO="@comment " .endif +.if defined(WITH_SIXEL) +CONFIGURE_ARGS+= --enable-sixel +PLIST_SUB+= SIXEL="" +.else +CONFIGURE_ARGS+= --disable-sixel +PLIST_SUB+= SIXEL="@comment " +.endif + .if ${OSVERSION} >= 900004 MAKE_ENV= LIBS_LOCAL=-lutempter .else