freebsd-ports/misc/py-distutils/Makefile

34 lines
799 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 10:49:30 +02:00
PORTNAME= distutils
PORTVERSION= 1.0.2
CATEGORIES= misc python
MASTER_SITES= ${MASTER_SITE_PYTHON}
MASTER_SITE_SUBDIR= community/sigs/current/distutils-sig/download
2000-10-17 14:01:02 +02:00
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
2000-04-14 10:49:30 +02:00
DISTNAME= Distutils-${PORTVERSION}
MAINTAINER= tg@FreeBSD.org
COMMENT= Python Module Distribution Utilities
2000-09-08 13:58:52 +02:00
USE_PYTHON= yes
2000-09-04 14:28:11 +02:00
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} > 211
IGNORE= won't work with the installed Python: use the version distributed with ${PYTHON_VERSION}
.endif
do-build:
2000-09-08 13:58:52 +02:00
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py build)
do-install:
2000-09-08 13:58:52 +02:00
@(cd ${WRKSRC}; ${PYTHON_CMD} setup.py install)
.include <bsd.port.post.mk>