Bug 171308 - x11/mlterm add sixel graphics support
Summary: x11/mlterm add sixel graphics support
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: MANTANI Nobutaka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-04 06:50 UTC by IWAMOTO Kouichi
Modified: 2012-09-06 15:50 UTC (History)
0 users

See Also:


Attachments
file.diff (737 bytes, patch)
2012-09-04 06:50 UTC, IWAMOTO Kouichi
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description IWAMOTO Kouichi 2012-09-04 06:50:05 UTC
Sixel graphics support does not enabled in x11/mlterm.
Please add a support of sixel graphics.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-09-04 06:50:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->nobutaka

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-09-06 15:42:59 UTC
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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 MANTANI Nobutaka freebsd_committer freebsd_triage 2012-09-06 15:43:04 UTC
State Changed
From-To: open->closed

Committed, thanks!