Date: Thu, 22 May 2014 08:03:57 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354800 - in head/graphics: . libsixel Message-ID: <201405220803.s4M83vw3006409@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405220803.s4M83vw3006409>