Date: Thu, 6 Sep 2012 14:42:44 +0000 (UTC) From: MANTANI Nobutaka <nobutaka@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r303758 - head/x11/mlterm Message-ID: <201209061442.q86EgiJN036428@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <sue@iwmt.org> 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 <bsd.port.pre.mk> @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209061442.q86EgiJN036428>