Bug 188937

Summary: [NEW PORT] graphics/libsixel
Product: Ports & Packages Reporter: IWAMOTO Kouichi <sue>
Component: Individual Port(s)Assignee: freebsd-ports-bugs (Nobody) <ports-bugs>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.shar none

Description IWAMOTO Kouichi 2014-04-24 03:30:00 UTC
	Encoder/Decoder library for DEC SIXEL graphics
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2014-05-22 09:03:34 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-05-22 09:04:03 UTC
Author: miwi
Date: Thu May 22 08:03:57 2014
New Revision: 354800
URL: http://svnweb.freebsd.org/changeset/ports/354800
QAT: https://qat.redports.org/buildarchive/r354800/

Log:
  This package provides encoder/decoder implementation for DEC SIXEL graphics,
  and some converter programs.
  SIXEL is one of image formats for terminal imaging introduced by DEC VT series.
  Its data scheme is represented as a terminal-friendly escape sequence.
  So if you want to view a SIXEL image file, all you have to do is "cat" it to
  your terminal.
  
  WWW: https://github.com/saitoha/libsixel
  
  PR:		ports/188937
  Submitted by:	sue@iwmt.org

Added:
  head/graphics/libsixel/
  head/graphics/libsixel/Makefile   (contents, props changed)
  head/graphics/libsixel/distinfo   (contents, props changed)
  head/graphics/libsixel/pkg-descr   (contents, props changed)
  head/graphics/libsixel/pkg-plist   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Thu May 22 08:02:51 2014	(r354799)
+++ head/graphics/Makefile	Thu May 22 08:03:57 2014	(r354800)
@@ -535,6 +535,7 @@
     SUBDIR += libraw
     SUBDIR += libreatlas
     SUBDIR += librsvg2
+    SUBDIR += libsixel
     SUBDIR += libspiro
     SUBDIR += libsvg
     SUBDIR += libsvg-cairo

Added: head/graphics/libsixel/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libsixel/Makefile	Thu May 22 08:03:57 2014	(r354800)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	libsixel
+PORTVERSION=	20140422
+CATEGORIES=	graphics
+
+MAINTAINER=	sue@iwmt.org
+COMMENT=	A encoder/decoder library for DEC SIXEL graphics
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	saitoha
+GH_TAGNAME=	${GH_COMMIT}
+GH_COMMIT=	8bd21f7
+
+GNU_CONFIGURE=	yes
+
+PORTDOCS=	README.md
+
+post-install:
+	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsixel.so.0
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/graphics/libsixel/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libsixel/distinfo	Thu May 22 08:03:57 2014	(r354800)
@@ -0,0 +1,2 @@
+SHA256 (libsixel-20140422.tar.gz) = 6910e7a8a5310ddc60909b9fce8e67a3c5017f1b37b56b00cb179c0baddc8d6c
+SIZE (libsixel-20140422.tar.gz) = 466077

Added: head/graphics/libsixel/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libsixel/pkg-descr	Thu May 22 08:03:57 2014	(r354800)
@@ -0,0 +1,8 @@
+This package provides encoder/decoder implementation for DEC SIXEL graphics,
+and some converter programs.
+SIXEL is one of image formats for terminal imaging introduced by DEC VT series.
+Its data scheme is represented as a terminal-friendly escape sequence.
+So if you want to view a SIXEL image file, all you have to do is "cat" it to
+your terminal.
+
+WWW: https://github.com/saitoha/libsixel

Added: head/graphics/libsixel/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/libsixel/pkg-plist	Thu May 22 08:03:57 2014	(r354800)
@@ -0,0 +1,7 @@
+include/sixel.h
+lib/libsixel.la
+lib/libsixel.so.0
+lib/libsixel.so
+lib/libsixel.a
+bin/img2sixel
+bin/sixel2png
_______________________________________________
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"