blob: 10da01e33334737c427c5a2a8eddc417736d24ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: py-mpz
# Date created: 18 Oct 2001
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mpz
PORTVERSION= ${PYTHON_PORTVERSION}
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= math python
MASTER_SITES= ${PYTHON_MASTER_SITES}
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTFILES= ${PYTHON_DISTFILE}
MAINTAINER= perky@FreeBSD.org
COMMENT= Python bindings to the GNU Multiple Precision library
LIB_DEPENDS= gmp.7:${PORTSDIR}/math/libgmp4
PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/mpz.so
DIST_SUBDIR= python
USE_PYTHON= -2.3
USE_PYDISTUTILS=yes
WRKSRC= ${PYTHON_WRKSRC}/Modules
MD5_FILE= ${PORTSDIR}/lang/python/distinfo
post-extract:
@${CP} ${FILESDIR}/setup.py ${WRKSRC}
.include <bsd.port.mk>
|