freebsd-ports/misc/py-distutils/Makefile

32 lines
680 B
Makefile
Raw Normal View History

# 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
PORTVERSION= 1.0.2
CATEGORIES= misc python
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}
MAINTAINER= tg@FreeBSD.org
2000-09-08 07:58:52 -04:00
USE_PYTHON= yes
2000-09-04 08:28:11 -04:00
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} > 211
IGNORE= "Use the version distributed with ${PYTHON_VERSION}"
.endif
do-build:
2000-09-08 07:58:52 -04:00
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py build)
do-install:
2000-09-08 07:58:52 -04:00
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
.include <bsd.port.post.mk>