2000-03-24 04:53:27 -05:00
|
|
|
# New ports collection makefile for: Distutils
|
|
|
|
# Date created: 23 March 2000
|
|
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
2000-04-14 04:49:30 -04:00
|
|
|
PORTNAME= distutils
|
2002-01-15 07:28:11 -05:00
|
|
|
PORTVERSION= 1.0.2
|
2000-03-24 04:53:27 -05:00
|
|
|
CATEGORIES= misc python
|
2000-05-10 05:33:42 -04:00
|
|
|
MASTER_SITES= http://www.python.org/sigs/distutils-sig/download/
|
2000-10-17 08:01:02 -04:00
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
2000-04-14 04:49:30 -04:00
|
|
|
DISTNAME= Distutils-${PORTVERSION}
|
2000-03-24 04:53:27 -05:00
|
|
|
|
|
|
|
MAINTAINER= tg@FreeBSD.org
|
|
|
|
|
2000-09-08 07:58:52 -04:00
|
|
|
USE_PYTHON= yes
|
2000-09-04 08:28:11 -04:00
|
|
|
|
2002-01-15 07:28:11 -05:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${PYTHON_REL} > 211
|
|
|
|
IGNORE= "Use the version distributed with ${PYTHON_VERSION}"
|
|
|
|
.endif
|
|
|
|
|
2000-03-24 04:53:27 -05:00
|
|
|
do-build:
|
2000-09-08 07:58:52 -04:00
|
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py build)
|
2000-03-24 04:53:27 -05:00
|
|
|
|
|
|
|
do-install:
|
2000-09-08 07:58:52 -04:00
|
|
|
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
|
2000-03-24 04:53:27 -05:00
|
|
|
|
2002-01-15 07:28:11 -05:00
|
|
|
.include <bsd.port.post.mk>
|