Date: Sat, 30 Apr 2016 01:08:02 +0000 (UTC) From: Ryan Steinmetz <zi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414325 - in head/misc: . nms nms/files Message-ID: <201604300108.u3U1822X099932@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: zi Date: Sat Apr 30 01:08:02 2016 New Revision: 414325 URL: https://svnweb.freebsd.org/changeset/ports/414325 Log: New port: misc/nms: "No More Secrets" is the name I've lovingly given to the infamous "decrypting text" effect seen on screen in the 1992 hacker movie Sneakers. This project provides tools to recreate this effect in your projects. WWW: https://github.com/bartobri/no-more-secrets Added: head/misc/nms/ head/misc/nms/Makefile (contents, props changed) head/misc/nms/distinfo (contents, props changed) head/misc/nms/files/ head/misc/nms/files/patch-Makefile (contents, props changed) head/misc/nms/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat Apr 30 00:27:15 2016 (r414324) +++ head/misc/Makefile Sat Apr 30 01:08:02 2016 (r414325) @@ -275,6 +275,7 @@ SUBDIR += mtx SUBDIR += najitool SUBDIR += newer + SUBDIR += nms SUBDIR += nsf SUBDIR += numchar SUBDIR += nut Added: head/misc/nms/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/nms/Makefile Sat Apr 30 01:08:02 2016 (r414325) @@ -0,0 +1,23 @@ +# Created by: Ryan Steinmetz <zi@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= nms +PORTVERSION= 20160429 +CATEGORIES= misc + +MAINTAINER= zi@FreeBSD.org +COMMENT= Recreate decrypting text effect from the Sneakers movie + +LICENSE= GPLv3 + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= bartobri +GH_PROJECT= no-more-secrets +GH_TAGNAME= 9a7a77c +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/misc/nms/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/nms/distinfo Sat Apr 30 01:08:02 2016 (r414325) @@ -0,0 +1,2 @@ +SHA256 (bartobri-no-more-secrets-20160429-9a7a77c_GH0.tar.gz) = a25e0577a17212e00f0e4d1b5818212567d72cc4e7c392e3c0f81aa55487c4f6 +SIZE (bartobri-no-more-secrets-20160429-9a7a77c_GH0.tar.gz) = 18503 Added: head/misc/nms/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/nms/files/patch-Makefile Sat Apr 30 01:08:02 2016 (r414325) @@ -0,0 +1,11 @@ +--- Makefile.orig 2016-04-30 01:05:20 UTC ++++ Makefile +@@ -2,7 +2,7 @@ BIN=bin + OBJ=obj + SRC=src + +-CC = gcc ++CC ?= gcc + CFLAGS = -Wextra -Wall + LDLIBS = -lncurses + NCURSES_H = /usr/include/ncurses.h Added: head/misc/nms/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/nms/pkg-descr Sat Apr 30 01:08:02 2016 (r414325) @@ -0,0 +1,7 @@ +"No More Secrets" is the name I've lovingly given to the infamous +"decrypting text" effect seen on screen in the 1992 hacker movie +Sneakers. + +This project provides tools to recreate this effect in your projects. + +WWW: https://github.com/bartobri/no-more-secrets
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604300108.u3U1822X099932>