svn commit: r452652 - in head/graphics: . pixd
Tobias Kortkamp
tobik at FreeBSD.org
Sun Oct 22 15:35:26 UTC 2017
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 at 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 at 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/
More information about the svn-ports-head
mailing list