Bug 187716 - New port: security/d0_blind_id - crypto library
Summary: New port: security/d0_blind_id - crypto library
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-18 23:00 UTC by Jonathan Price
Modified: 2014-03-23 13:00 UTC (History)
0 users

See Also:


Attachments
file.shar (2.86 KB, text/plain)
2014-03-18 23:00 UTC, Jonathan Price
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Price 2014-03-18 23:00:00 UTC
New port submission.
security/d0_blind_id
Cryptographic library to perform identification using Schnorr
Identification scheme and Blind RSA Signatures.

This is my first attempt at writing a port, so please tell me if I did anything incorrectly.

I have attached the shar file to this message. I had to add a .txt extension to the end of the file to allow firefox to upload it correctly.

Fix: Patch attached with submission follows:
Comment 1 Pawel Pekala freebsd_committer freebsd_triage 2014-03-23 12:37:23 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-23 12:54:05 UTC
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 <freebsd@jonathanprice.org>

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 <bsd.port.mk>

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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 dfilter service freebsd_committer freebsd_triage 2014-03-23 12:59:58 UTC
Author: pawel (ports committer)
Date: Sun Mar 23 12:59:54 2014
New Revision: 44336
URL: http://svnweb.freebsd.org/changeset/doc/44336

Log:
  Add Jonathan Price for security/d0_blind_id
  
  PR:		ports/187716

Modified:
  head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml

Modified: head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml
==============================================================================
--- head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml	Sun Mar 23 03:03:29 2014	(r44335)
+++ head/en_US.ISO8859-1/articles/contributors/contrib.additional.xml	Sun Mar 23 12:59:54 2014	(r44336)
@@ -5101,6 +5101,11 @@
     </listitem>
 
     <listitem>
+      <para>Jonathan Price
+	<email>freebsd@jonathanprice.org</email></para>
+    </listitem>
+
+    <listitem>
       <para>Jordan DeLong
 	<email>fracture@allusion.net</email></para>
     </listitem>
_______________________________________________
svn-doc-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-doc-all
To unsubscribe, send any mail to "svn-doc-all-unsubscribe@freebsd.org"
Comment 4 Pawel Pekala freebsd_committer freebsd_triage 2014-03-23 13:00:18 UTC
State Changed
From-To: open->closed

New port added. Thanks!