svn commit: r303758 - head/x11/mlterm

MANTANI Nobutaka nobutaka at FreeBSD.org
Thu Sep 6 14:42:44 UTC 2012


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 at 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



More information about the svn-ports-all mailing list