From owner-svn-ports-all@freebsd.org Wed Nov 11 17:40:47 2015 Return-Path: Delivered-To: svn-ports-all@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 7B1F1A2C1CB; Wed, 11 Nov 2015 17:40:47 +0000 (UTC) (envelope-from dinoex@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 53FBF1932; Wed, 11 Nov 2015 17:40:47 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tABHekvA085788; Wed, 11 Nov 2015 17:40:46 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tABHejlx085782; Wed, 11 Nov 2015 17:40:45 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201511111740.tABHejlx085782@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Wed, 11 Nov 2015 17:40:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401288 - in head/security: . libuecc libuecc/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Nov 2015 17:40:47 -0000 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@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 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