Date: Sun, 22 Oct 2017 15:35:25 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452652 - in head/graphics: . pixd Message-ID: <201710221535.v9MFZP6M020714@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sun Oct 22 15:35:25 2017 New Revision: 452652 URL: https://svnweb.freebsd.org/changeset/ports/452652 Log: New port: graphics/pixd Pixd visualizes binary data by mapping each octet to a colour according to a palette, displaying the octet at a given number of columns per line. WWW: https://github.com/FireyFly/pixd/ PR: 219670 Submitted by: Dhananjay Balan <mail@dbalan.in> Added: head/graphics/pixd/ head/graphics/pixd/Makefile (contents, props changed) head/graphics/pixd/distinfo (contents, props changed) head/graphics/pixd/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Oct 22 15:02:55 2017 (r452651) +++ head/graphics/Makefile Sun Oct 22 15:35:25 2017 (r452652) @@ -798,6 +798,7 @@ SUBDIR += piglit SUBDIR += pikopixel SUBDIR += pinpoint + SUBDIR += pixd SUBDIR += pixelize SUBDIR += pixen SUBDIR += pixie Added: head/graphics/pixd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixd/Makefile Sun Oct 22 15:35:25 2017 (r452652) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= pixd +PORTVERSION= g20170531 +CATEGORIES= graphics + +MAINTAINER= mail@dbalan.in +COMMENT= Visualize binary data in terminal + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= FireyFly +GH_TAGNAME= 85c1cb6 + +ALL_TARGET= pixd + +PLIST_FILES= bin/pixd \ + man/man1/pixd.1.gz + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/pixd ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/pixd.1 ${STAGEDIR}${PREFIX}/man/man1 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pixd + +.include <bsd.port.mk> Added: head/graphics/pixd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixd/distinfo Sun Oct 22 15:35:25 2017 (r452652) @@ -0,0 +1,3 @@ +TIMESTAMP = 1508685926 +SHA256 (FireyFly-pixd-g20170531-85c1cb6_GH0.tar.gz) = 0a2076f8c0bf7268bfce0a1dd0a1779d7f7e040f268b3f0c5b21d4ee2c3fb1af +SIZE (FireyFly-pixd-g20170531-85c1cb6_GH0.tar.gz) = 207012 Added: head/graphics/pixd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pixd/pkg-descr Sun Oct 22 15:35:25 2017 (r452652) @@ -0,0 +1,5 @@ +Pixd visualizes binary data by mapping each octet to a colour +according to a palette, displaying the octet at a given number of +columns per line. + +WWW: https://github.com/FireyFly/pixd/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710221535.v9MFZP6M020714>