From owner-svn-ports-head@FreeBSD.ORG Sun Mar 23 12:54:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D98A88EC; Sun, 23 Mar 2014 12:54:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C590F765; Sun, 23 Mar 2014 12:54:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NCs2rW094817; Sun, 23 Mar 2014 12:54:02 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2NCs1GD094810; Sun, 23 Mar 2014 12:54:01 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201403231254.s2NCs1GD094810@svn.freebsd.org> From: Pawel Pekala Date: Sun, 23 Mar 2014 12:54:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348853 - in head/security: . d0_blind_id d0_blind_id/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-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2014 12:54:02 -0000 Author: pawel Date: Sun Mar 23 12:54:01 2014 New Revision: 348853 URL: http://svnweb.freebsd.org/changeset/ports/348853 QAT: https://qat.redports.org/buildarchive/r348853/ Log: Cryptographic library to perform identification using Schnorr Identification scheme and Blind RSA Signatures. WWW: https://github.com/divVerent/d0_blind_id PR: ports/187716 Submitted by: Jonathan Price Added: head/security/d0_blind_id/ head/security/d0_blind_id/Makefile (contents, props changed) head/security/d0_blind_id/distinfo (contents, props changed) head/security/d0_blind_id/files/ head/security/d0_blind_id/files/patch-Makefile.am (contents, props changed) head/security/d0_blind_id/pkg-descr (contents, props changed) head/security/d0_blind_id/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Mar 23 12:02:03 2014 (r348852) +++ head/security/Makefile Sun Mar 23 12:54:01 2014 (r348853) @@ -100,6 +100,7 @@ SUBDIR += cyrus-sasl2-gssapi SUBDIR += cyrus-sasl2-ldapdb SUBDIR += cyrus-sasl2-saslauthd + SUBDIR += d0_blind_id SUBDIR += dcetest SUBDIR += ddos_scan SUBDIR += denyhosts Added: head/security/d0_blind_id/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/d0_blind_id/Makefile Sun Mar 23 12:54:01 2014 (r348853) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= d0_blind_id +PORTVERSION= 1.0 +CATEGORIES= security devel + +MAINTAINER= freebsd@jonathanprice.org +COMMENT= Crypto library + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= divVerent +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= ff1ce7e + +CONFIGURE_ARGS= --with-openssl +USE_LDCONFIG= yes + +USE_AUTOTOOLS= libtoolize aclocal autoconf automake +AUTOMAKE_ARGS= --add-missing + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.0 + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libd0_rijndael.so.0 + +.include Added: head/security/d0_blind_id/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/d0_blind_id/distinfo Sun Mar 23 12:54:01 2014 (r348853) @@ -0,0 +1,2 @@ +SHA256 (d0_blind_id-1.0.tar.gz) = 74867ead1c5e879ce35f721b30312f9dee42cd97130c8e6fa5e1a6bb45a5e35d +SIZE (d0_blind_id-1.0.tar.gz) = 49128 Added: head/security/d0_blind_id/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/d0_blind_id/files/patch-Makefile.am Sun Mar 23 12:54:01 2014 (r348853) @@ -0,0 +1,11 @@ +--- ./Makefile.am.orig 2014-03-17 06:18:23.208622713 +0000 ++++ ./Makefile.am 2014-03-17 06:18:59.472680831 +0000 +@@ -33,7 +33,7 @@ + libd0_blind_id_la_CFLAGS = -fvisibility=hidden -Wold-style-definition -Wstrict-prototypes -Wsign-compare -Wdeclaration-after-statement + library_includedir = $(includedir)/d0_blind_id + library_include_HEADERS = d0_blind_id.h d0.h +-pkgconfigdir = $(libdir)/pkgconfig ++pkgconfigdir = $(prefix)/libdata/pkgconfig + pkgconfig_HEADERS = d0_blind_id.pc + + if ENABLE_RIJNDAEL Added: head/security/d0_blind_id/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/d0_blind_id/pkg-descr Sun Mar 23 12:54:01 2014 (r348853) @@ -0,0 +1,4 @@ +Cryptographic library to perform identification using Schnorr +Identification scheme and Blind RSA Signatures. + +WWW: https://github.com/divVerent/d0_blind_id Added: head/security/d0_blind_id/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/d0_blind_id/pkg-plist Sun Mar 23 12:54:01 2014 (r348853) @@ -0,0 +1,15 @@ +bin/blind_id +include/d0_blind_id/d0.h +include/d0_blind_id/d0_blind_id.h +include/d0_blind_id/d0_rijndael.h +lib/libd0_blind_id.a +lib/libd0_blind_id.la +lib/libd0_blind_id.so +lib/libd0_blind_id.so.0 +lib/libd0_rijndael.a +lib/libd0_rijndael.la +lib/libd0_rijndael.so +lib/libd0_rijndael.so.0 +libdata/pkgconfig/d0_blind_id.pc +libdata/pkgconfig/d0_rijndael.pc +@dirrmtry include/d0_blind_id