From owner-svn-ports-all@FreeBSD.ORG Thu May 22 08:03:59 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E3C39244; Thu, 22 May 2014 08:03:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0E6B25C6; Thu, 22 May 2014 08:03:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4M83wwv006415; Thu, 22 May 2014 08:03:58 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4M83vw3006409; Thu, 22 May 2014 08:03:57 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201405220803.s4M83vw3006409@svn.freebsd.org> From: Martin Wilke Date: Thu, 22 May 2014 08:03:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354800 - in head/graphics: . libsixel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 May 2014 08:03:59 -0000 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 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