svn commit: r401288 - in head/security: . libuecc libuecc/files
Dirk Meyer
dinoex at FreeBSD.org
Wed Nov 11 17:40:47 UTC 2015
Author: dinoex
Date: Wed Nov 11 17:40:45 2015
New Revision: 401288
URL: https://svnweb.freebsd.org/changeset/ports/401288
Log:
This is a very small Elliptic Curve Cryptography library.
WWW: http://git.universe-factory.net/libuecc
PR: 204471
Submitted by: Jan Bramkamp
Added:
head/security/libuecc/
head/security/libuecc/Makefile (contents, props changed)
head/security/libuecc/distinfo (contents, props changed)
head/security/libuecc/files/
head/security/libuecc/files/patch-CMakeLists.txt (contents, props changed)
head/security/libuecc/pkg-descr (contents, props changed)
head/security/libuecc/pkg-plist (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Wed Nov 11 17:33:00 2015 (r401287)
+++ head/security/Makefile Wed Nov 11 17:40:45 2015 (r401288)
@@ -309,6 +309,7 @@
SUBDIR += libssh2
SUBDIR += libtasn1
SUBDIR += libtomcrypt
+ SUBDIR += libuecc
SUBDIR += libwhisker
SUBDIR += libyubikey
SUBDIR += libzrtpcppcore
Added: head/security/libuecc/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libuecc/Makefile Wed Nov 11 17:40:45 2015 (r401288)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= libuecc
+PORTVERSION= 6
+CATEGORIES= security
+MASTER_SITES= http://git.universe-factory.net/libuecc/snapshot/
+
+MAINTAINER= crest_maintainer at rlwinm.de
+COMMENT= Very small Elliptic Curve Cryptography library
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/COPYRIGHT
+
+LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium
+
+USE_LDCONFIG= yes
+
+USES= cmake:outsource pkgconfig tar
+
+.include <bsd.port.mk>
Added: head/security/libuecc/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libuecc/distinfo Wed Nov 11 17:40:45 2015 (r401288)
@@ -0,0 +1,2 @@
+SHA256 (libuecc-6.tar) = fe61715b7cd8458616840f71ab8c0c7e5f49480a9cfb2c1965fbb9d713f071b6
+SIZE (libuecc-6.tar) = 174080
Added: head/security/libuecc/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libuecc/files/patch-CMakeLists.txt Wed Nov 11 17:40:45 2015 (r401288)
@@ -0,0 +1,11 @@
+--- CMakeLists.txt.orig 2015-11-11 17:23:47 UTC
++++ CMakeLists.txt
+@@ -14,7 +14,7 @@ set(LIBDIR "lib${LIB_SUFFIX}")
+ add_subdirectory(src)
+
+ configure_file(${LIBUECC_SOURCE_DIR}/libuecc.pc.in ${LIBUECC_BINARY_DIR}/libuecc.pc @ONLY)
+-install(FILES ${LIBUECC_BINARY_DIR}/libuecc.pc DESTINATION "${LIBDIR}/pkgconfig")
++install(FILES ${LIBUECC_BINARY_DIR}/libuecc.pc DESTINATION "libdata/pkgconfig")
+
+ FILE(GLOB include_files "${CMAKE_CURRENT_SOURCE_DIR}/include/libuecc/*.h")
+ install(FILES ${include_files} DESTINATION "include/libuecc-${PROJECT_VERSION}/libuecc")
Added: head/security/libuecc/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libuecc/pkg-descr Wed Nov 11 17:40:45 2015 (r401288)
@@ -0,0 +1,3 @@
+This is a very small Elliptic Curve Cryptography library.
+
+WWW: http://git.universe-factory.net/libuecc
Added: head/security/libuecc/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libuecc/pkg-plist Wed Nov 11 17:40:45 2015 (r401288)
@@ -0,0 +1,6 @@
+include/libuecc-6/libuecc/ecc.h
+lib/libuecc.a
+lib/libuecc.so
+lib/libuecc.so.0
+lib/libuecc.so.0.6
+libdata/pkgconfig/libuecc.pc
More information about the svn-ports-head
mailing list