Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Jan 2019 08:53:07 +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: r491137 - in head/security: . caesarcipher
Message-ID:  <201901250853.x0P8r7P5037338@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Fri Jan 25 08:53:06 2019
New Revision: 491137
URL: https://svnweb.freebsd.org/changeset/ports/491137

Log:
  New port: security/caesarcipher
  
  caesarcipher is an implementation of the traditional Caesar cipher
  encryption algorithm with an extension to all printable ASCII
  characters.  It can be run as an interactive tool on the command
  line or process input- and outputfiles that are passed to the
  ultility.
  
  WWW: http://www.olivermahmoudi.com/programming/caesarcipher
  
  PR:		222760
  Submitted by:	Oliver Mahmoudi <fbsd@olivermahmoudi.com>

Added:
  head/security/caesarcipher/
  head/security/caesarcipher/Makefile   (contents, props changed)
  head/security/caesarcipher/distinfo   (contents, props changed)
  head/security/caesarcipher/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Fri Jan 25 08:44:22 2019	(r491136)
+++ head/security/Makefile	Fri Jan 25 08:53:06 2019	(r491137)
@@ -61,6 +61,7 @@
     SUBDIR += bugs
     SUBDIR += bzrtp
     SUBDIR += ca_root_nss
+    SUBDIR += caesarcipher
     SUBDIR += calife
     SUBDIR += cardpeek
     SUBDIR += cargo-audit

Added: head/security/caesarcipher/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/caesarcipher/Makefile	Fri Jan 25 08:53:06 2019	(r491137)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	caesarcipher
+PORTVERSION=	1.0
+CATEGORIES=	security
+MASTER_SITES=	http://www.olivermahmoudi.com/files/
+
+MAINTAINER=	fbsd@olivermahmoudi.com
+COMMENT=	Caesar cipher cryptography tool
+
+LICENSE=	BSD2CLAUSE
+
+PLIST_FILES=	bin/caesarcipher \
+		man/man1/caesarcipher.1.gz
+WRKSRC=		${WRKDIR}/${PORTNAME}
+
+do-build:
+	cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} ${PORTNAME}.c
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
+
+.include <bsd.port.mk>

Added: head/security/caesarcipher/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/caesarcipher/distinfo	Fri Jan 25 08:53:06 2019	(r491137)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1507049180
+SHA256 (caesarcipher-1.0.tar.gz) = 278069c80162231b7c5664c27524275bed3d0ef982a8f9b937296a405822bf14
+SIZE (caesarcipher-1.0.tar.gz) = 6096

Added: head/security/caesarcipher/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/caesarcipher/pkg-descr	Fri Jan 25 08:53:06 2019	(r491137)
@@ -0,0 +1,7 @@
+caesarcipher is an implementation of the traditional Caesar cipher
+encryption algorithm with an extension to all printable ASCII
+characters.  It can be run as an interactive tool on the command
+line or process input- and outputfiles that are passed to the
+ultility.
+
+WWW: http://www.olivermahmoudi.com/programming/caesarcipher



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901250853.x0P8r7P5037338>