diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-02-11 22:20:24 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-02-11 22:20:24 +0800 |
commit | 85849de2180c4d75d4b9d31af93aa59c78ee9a91 (patch) | |
tree | ca7a2761f6d3bd5a6d27ce153868c5dcca10eeb0 | |
parent | f260e5d56649bb39479a906e9a89a53e85da9eab (diff) | |
download | freebsd-ports-gnome-85849de2180c4d75d4b9d31af93aa59c78ee9a91.tar.gz freebsd-ports-gnome-85849de2180c4d75d4b9d31af93aa59c78ee9a91.tar.zst freebsd-ports-gnome-85849de2180c4d75d4b9d31af93aa59c78ee9a91.zip |
add py-pow 0.6.1
Python OpenSSL Wrappers
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/py-pow/Makefile | 34 | ||||
-rw-r--r-- | security/py-pow/distinfo | 1 | ||||
-rw-r--r-- | security/py-pow/files/patch-POW.c | 11 | ||||
-rw-r--r-- | security/py-pow/pkg-comment | 1 | ||||
-rw-r--r-- | security/py-pow/pkg-descr | 3 | ||||
-rw-r--r-- | security/py-pow/pkg-plist | 3 |
7 files changed, 54 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 2e322eee3387..7e204707c810 100644 --- a/security/Makefile +++ b/security/Makefile @@ -181,6 +181,7 @@ SUBDIR += py-gnupg SUBDIR += py-m2crypto SUBDIR += py-mhash + SUBDIR += py-pow SUBDIR += py-rijndael SUBDIR += py-twofish SUBDIR += qident diff --git a/security/py-pow/Makefile b/security/py-pow/Makefile new file mode 100644 index 000000000000..9617de7ff0ba --- /dev/null +++ b/security/py-pow/Makefile @@ -0,0 +1,34 @@ +# ex:ts=8 +# Ports collection makefile for: Python OpenSSL Wrappers +# Date created: Feb 10, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= pow +PORTVERSION= 0.6.1 +CATEGORIES= security python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME:U}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org + +USE_PYTHON= yes +USE_OPENSSL= yes + +SETUP_CMD= cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} setup.py + +do-build: + @${SETUP_CMD} build + +do-install: + @${SETUP_CMD} install +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/POW.pdf ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/security/py-pow/distinfo b/security/py-pow/distinfo new file mode 100644 index 000000000000..ff2a74b43c2d --- /dev/null +++ b/security/py-pow/distinfo @@ -0,0 +1 @@ +MD5 (POW-0.6.1.tar.gz) = a1093b7b8c105869e0538fd4b8bb2228 diff --git a/security/py-pow/files/patch-POW.c b/security/py-pow/files/patch-POW.c new file mode 100644 index 000000000000..1997ea330c77 --- /dev/null +++ b/security/py-pow/files/patch-POW.c @@ -0,0 +1,11 @@ +--- POW.c.orig Mon Feb 11 22:12:50 2002 ++++ POW.c Mon Feb 11 22:13:01 2002 +@@ -34,7 +34,7 @@ + /* */ + /*****************************************************************************/ + +-#include <python2.1/Python.h> ++#include <Python.h> + + #include <openssl/crypto.h> + #include <openssl/rand.h> diff --git a/security/py-pow/pkg-comment b/security/py-pow/pkg-comment new file mode 100644 index 000000000000..5393c8daba24 --- /dev/null +++ b/security/py-pow/pkg-comment @@ -0,0 +1 @@ +Python OpenSSL Wrappers diff --git a/security/py-pow/pkg-descr b/security/py-pow/pkg-descr new file mode 100644 index 000000000000..d2fb79a72cc1 --- /dev/null +++ b/security/py-pow/pkg-descr @@ -0,0 +1,3 @@ +Python OpenSSL Wrappers(POW) is a set of comprehensive wrappers for Python of +the OpenSSL libraries. POW will provide a 'slim' interface which will still +enable Python developers to fully utilise OpenSSL. diff --git a/security/py-pow/pkg-plist b/security/py-pow/pkg-plist new file mode 100644 index 000000000000..25887588a89c --- /dev/null +++ b/security/py-pow/pkg-plist @@ -0,0 +1,3 @@ +lib/%%PYTHON_VERSION%%/site-packages/POW.so +%%PORTDOCS%%share/doc/pow/POW.pdf +%%PORTDOCS%%@dirrm share/doc/pow |