mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
597afc47ba
With hat: portmgr Sponsored by: Absolight
38 lines
809 B
Makefile
38 lines
809 B
Makefile
# Created by: nbm
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pycrypto
|
|
PORTVERSION= 2.6.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Python Cryptography Toolkit
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= GMP
|
|
OPTIONS_DEFAULT= GMP
|
|
|
|
GMP_DESC= Use GMP for faster DSA/RSA operations
|
|
GMP_CONFIGURE_WITH= gmp
|
|
GMP_CPPFLAGS= -I${LOCALBASE}/include
|
|
GMP_LDFLAGS= -L${LOCALBASE}/lib
|
|
GMP_LIB_DEPENDS= libgmp.so:math/gmp
|
|
|
|
pre-patch:
|
|
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|" ${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Crypto/*/*.so
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|