1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-03 22:23:24 +00:00
freebsd-ports/misc/py-distutils/Makefile
2000-09-06 12:18:18 +00:00

33 lines
759 B
Makefile

# New ports collection makefile for: Distutils
# Date created: 23 March 2000
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= distutils
PORTVERSION= 0.9.1
CATEGORIES= misc python
MASTER_SITES= http://www.python.org/sigs/distutils-sig/download/
PKGNAMEPREFIX= py-
DISTNAME= Distutils-${PORTVERSION}
MAINTAINER= tg@FreeBSD.org
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
PLIST_SUB= PYVERSION="python${PYVERSION}"
PYVERSION!= (python -c 'import string, sys; \
print string.split(sys.version)[0][:3]') 2> /dev/null \
|| echo "1.5"
do-build:
@(cd ${WRKSRC}; python setup.py build)
do-install:
@(cd ${WRKSRC}; python setup.py install)
.include <bsd.port.mk>