ports/security/py-pycryptopp/Makefile
Eitan Adler c59a3834c4 At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.

Explicit duplication > := > = and this just moves ports one step to the left

Approved by:	portmgr
2012-01-21 17:40:15 +00:00

31 lines
835 B
Makefile

# New ports collection makefile for: pycryptopp
# Date created: 30 August 2008
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pycryptopp
PORTVERSION= 0.5.29
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Python Wrappers for the Crypto++ Library
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}darcsver>0:${PORTSDIR}/devel/py-darcsver \
${PYTHON_PKGNAMEPREFIX}setuptools_darcs>0:${PORTSDIR}/devel/py-setuptools_darcs
RUN_DEPENDS:= ${BUILD_DEPENDS}
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
PYEASYINSTALL_ARCHDEP= yes
post-extract:
@${REINPLACE_CMD} -e 's#<malloc.h>#<stdlib.h>#g' \
${WRKSRC}/embeddedcryptopp/rijndael.cpp \
${WRKSRC}/embeddedcryptopp/config.h \
${WRKSRC}/embeddedcryptopp/secblock.h
.include <bsd.port.mk>