shell c7c44343ac Initial import of py-cryptkit-0.9
---
CryptKit is a developer's toolkit implementing several of the most
modern and efficient cryptographic algorithms.  The kit is primarily
written in ANSI C for speed and subsequently wrapped with SWIG for
ease of use in python.

CryptKit is small and fast, mainly because it implements excellent
algorithms: Rijndael (AES), SHA 256 bits, Elliptic Curve PKI,
Diffie-Hellman key exchange and Nyberg-Ruppel signature/verification.
These modules are combined to provide a faster, lighter and easier
to use secure socket alternative to SSL.  CryptKit is not compatible
with SSL.  Whereas SSL aims to support a wide variety of algorithms
that essentially perform the same task ( like DES/RC4/RC2 or MD5/SHA
), CryptKit takes the minimalist approach of implementing only one
version of each crypto primitve. Great care went into selecting the
best of what was available.

WWW: http://eevolved.com/cryptkit/
2002-01-03 23:34:39 +00:00

41 lines
814 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2002/01/03 23:34:39 shell Exp $
COMMENT= "python Cryptographic Toolkit"
VERSION= 0.9
DISTNAME= cryptkit-${VERSION}
PKGNAME= py-cryptkit-${VERSION}
CATEGORIES= security devel
NEED_VERSION= 1.504
HOMEPAGE= http://eevolved.com/cryptkit/
MAINTAINER= Shell Hung <shell@openbsd.org>
# BSD License
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= cryptkit
PYTHON_VER= 2.1
BUILD_DEPENDS+= ::lang/python
RUN_DEPENDS= ${BUILD_DEPENDS}
NO_REGRESS= Yes
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
SUBST_VARS= PYTHON_VER
do-build:
${PY_CMD} build --build-base=${WRKSRC}
do-install:
${PY_CMD} install --prefix=${PREFIX}
.include <bsd.port.mk>