From owner-svn-ports-head@freebsd.org Sun Oct 22 15:35:26 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B22CFE54E4E; Sun, 22 Oct 2017 15:35:26 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 85DB86A280; Sun, 22 Oct 2017 15:35:26 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9MFZPmF020718; Sun, 22 Oct 2017 15:35:25 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9MFZP6M020714; Sun, 22 Oct 2017 15:35:25 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201710221535.v9MFZP6M020714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 22 Oct 2017 15:35:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452652 - in head/graphics: . pixd X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/graphics: . pixd X-SVN-Commit-Revision: 452652 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Oct 2017 15:35:26 -0000 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 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 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/