[Midnightbsd-cvs] mports: mports/security: Add a port for the Open PGP SDK.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Feb 8 18:30:11 EST 2009


Log Message:
-----------
Add a port for the Open PGP SDK.  This is a bsd licensed implementation of the PGP spec.  It was recently added to NetBSD 6, and i thought this would give us an opportunity to test it out.

I whipped this port up in about half an hour.  It does not generate documenation now as it requires doxygen and that's a big hassle.

Modified Files:
--------------
    mports/security:
        Makefile (r1.86 -> r1.87)

Added Files:
-----------
    mports/security/openpgpsdk:
        Makefile (r1.1)
        distinfo (r1.1)
        pkg-descr (r1.1)
        pkg-plist (r1.1)

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /home/cvs/mports/security/Makefile,v
retrieving revision 1.86
retrieving revision 1.87
diff -L security/Makefile -L security/Makefile -u -r1.86 -r1.87
--- security/Makefile
+++ security/Makefile
@@ -49,6 +49,7 @@
     SUBDIR += oinkmaster
     SUBDIR += opencdk
     SUBDIR += openct
+    SUBDIR += openpgpsdk
     SUBDIR += opensc
     SUBDIR += openssh-askpass
     SUBDIR += openssh-portable
--- /dev/null
+++ security/openpgpsdk/pkg-descr
@@ -0,0 +1,4 @@
+OpenPGP SDK is a BSD licensed C based implementation
+of the PGP specification.
+
+WWW: http://openpgp.nominet.org.uk
--- /dev/null
+++ security/openpgpsdk/pkg-plist
@@ -0,0 +1,3 @@
+ at comment $MidnightBSD: mports/security/openpgpsdk/pkg-plist,v 1.1 2009/02/08 23:30:08 laffer1 Exp $
+bin/openpgp
+lib/libops.a
--- /dev/null
+++ security/openpgpsdk/Makefile
@@ -0,0 +1,25 @@
+# $MidnightBSD: mports/security/openpgpsdk/Makefile,v 1.1 2009/02/08 23:30:08 laffer1 Exp $
+
+PORTNAME=	openpgpsdk
+PORTVERSION=	0.9
+CATEGORIES=	security
+MASTER_SITES=	http://openpgp.nominet.org.uk/downloads/
+EXTRACT_SUFX=	.tgz
+
+MAINTAINER=	luke at MidnightBSD.org
+COMMENT=	OpenPGP SDK
+LICENSE=	bsd3
+
+USE_PERL5=	yes
+HAS_CONFIGURE=	YES
+CONFIGURE_ARGS=	--without-idea --with-cunit=${LOCALBASE}
+
+LIB_DEPENDS=	cunit.1:${PORTSDIR}/devel/cunit
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/openpgp ${PREFIX}/bin/
+	${INSTALL_DATA} ${WRKSRC}/lib/libops.a ${PREFIX}/lib/
+
+.include <bsd.port.post.mk>
--- /dev/null
+++ security/openpgpsdk/distinfo
@@ -0,0 +1,3 @@
+MD5 (openpgpsdk-0.9.tgz) = a2fe87ee864e6bcc0d5ea3db20e0f57a
+SHA256 (openpgpsdk-0.9.tgz) = 96ad3196205d323818f7175e24f7e3a227c90f76eb308c0ebaae0de26b7c2376
+SIZE (openpgpsdk-0.9.tgz) = 1903992


More information about the Midnightbsd-cvs mailing list