svn commit: r411770 - in head/security: . akmos

Raphael Kubo da Costa rakuco at FreeBSD.org
Thu Mar 24 11:01:20 UTC 2016


Author: rakuco
Date: Thu Mar 24 11:01:18 2016
New Revision: 411770
URL: https://svnweb.freebsd.org/changeset/ports/411770

Log:
  New port: security/akmos.
  
  Akmos is a cryptographic library with CLI.
  
  It supports:
  - symmetric ciphering;
  - computing message digests (hashes);
  - calculating a message authentication code (MAC);
  
  Depends only on the standard C library.
  Primary develop for the x86_64 architecture.
  
  WWW: https://github.com/melanhit/akmos
  
  PR:		206987
  Submitted by:	Andrew Romanenko <melanhit at gmail.com>

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu Mar 24 10:55:03 2016	(r411769)
+++ head/security/Makefile	Thu Mar 24 11:01:18 2016	(r411770)
@@ -14,6 +14,7 @@
     SUBDIR += afterglow
     SUBDIR += aide
     SUBDIR += aimsniff
+    SUBDIR += akmos
     SUBDIR += amap
     SUBDIR += amavis-stats
     SUBDIR += amavisd-milter

Added: head/security/akmos/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/akmos/Makefile	Thu Mar 24 11:01:18 2016	(r411770)
@@ -0,0 +1,31 @@
+# $FreeBSD$
+
+PORTNAME=	akmos
+PORTVERSION=	0.5.1
+CATEGORIES=	security
+
+MAINTAINER=	melanhit at gmail.com
+COMMENT=	Cryptographic library with low footprint
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_LDCONFIG=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	melanhit
+GH_PROJECT=	${PORTNAME}
+
+GNU_CONFIGURE=	yes
+USES=		cmake:outsource
+
+OPTIONS_DEFINE=	ASM TEST
+OPTIONS_DEFAULT=ASM
+
+ASM_CMAKE_ON=	-DAKMOS_USE_ASM:BOOL=TRUE
+ASM_CMAKE_OFF=	-DAKMOS_USE_ASM:BOOL=FALSE
+
+TEST_CMAKE_ON=	-DAKMOS_ENABLE_TEST:BOOL=TRUE
+TEST_CMAKE_OFF=	-DAKMOS_ENABLE_TEST:BOOL=FALSE
+
+.include <bsd.port.mk>

Added: head/security/akmos/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/akmos/distinfo	Thu Mar 24 11:01:18 2016	(r411770)
@@ -0,0 +1,2 @@
+SHA256 (melanhit-akmos-0.5.1_GH0.tar.gz) = 627346aa85352140894bed490ebd840f6cc563316f0b544bf6b48e7017d0dd9f
+SIZE (melanhit-akmos-0.5.1_GH0.tar.gz) = 165208

Added: head/security/akmos/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/akmos/pkg-descr	Thu Mar 24 11:01:18 2016	(r411770)
@@ -0,0 +1,11 @@
+Akmos is a cryptographic library with CLI.
+
+It supports:
+- symmetric ciphering;
+- computing message digests (hashes);
+- calculating a message authentication code (MAC);
+
+Depends only on the standard C library.
+Primary develop for the x86_64 architecture.
+
+WWW: https://github.com/melanhit/akmos

Added: head/security/akmos/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/akmos/pkg-plist	Thu Mar 24 11:01:18 2016	(r411770)
@@ -0,0 +1,7 @@
+bin/akmos
+include/akmos.h
+lib/libakmos.a
+lib/libakmos.so
+lib/libakmos.so.5
+lib/libakmos.so.0.5
+man/man1/akmos.1.gz


More information about the svn-ports-head mailing list