8afbcd064a
- Fix usage of python - USES gmake Reported by: exp-run (PR 184591) Approved by: portmgr (blanket)
35 lines
888 B
Makefile
35 lines
888 B
Makefile
# Created by: Johan van Selst <johans@stack.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyme
|
|
PORTVERSION= 0.8.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= security python
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Python interface to GPGME library
|
|
|
|
BUILD_DEPENDS= swig1.3:${PORTSDIR}/devel/swig13
|
|
LIB_DEPENDS= libgpgme.so:${PORTSDIR}/security/gpgme
|
|
|
|
USES= gmake
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_PKGNAME=pygpgme
|
|
|
|
MAKE_ARGS= PYTHON=${PYTHON_CMD}
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,gpgme-config,${PREFIX}/bin/&,' \
|
|
${WRKSRC}/Makefile ${WRKSRC}/setup.py
|
|
@${REINPLACE_CMD} -e 's,include/,&gpgme/,' ${WRKSRC}/Makefile
|
|
|
|
pre-build:
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} build)
|
|
|
|
.include <bsd.port.post.mk>
|