blob: 78d458db200706f8b186b9998b358da43f3d7698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= gmpy
PORTVERSION= 1.17
PORTREVISION= 1
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Python Extension that Wraps the GMP Library
LIB_DEPENDS= libgmp.so:math/gmp
USES= python zip
USE_PYTHON= distutils autoplist
post-extract:
${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \
${WRKSRC}/setup.py
.include <bsd.port.mk>
|