2001-09-06 16:15:37 +02:00
|
|
|
# New ports collection makefile for: py-compiler
|
|
|
|
# Date created: 6 September 2001
|
|
|
|
# Whom: Johann Visagie <wjv@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# XXX The compiler package is included in Python 2.1 upwards.
|
|
|
|
# This port somehow needs to take this into account.
|
|
|
|
|
|
|
|
PORTNAME= compiler
|
|
|
|
PORTVERSION= ${PYTHON_PORTVERSION}
|
|
|
|
CATEGORIES= lang python
|
|
|
|
MASTER_SITES= http://www.python.org/ftp/python/${PORTVERSION}/ \
|
|
|
|
http://SunSITE.Informatik.RWTH-Aachen.DE/python/ftp/python/${PORTVERSION}/
|
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
DISTFILES= ${PYTHON_DISTFILE}
|
|
|
|
|
2004-11-20 09:09:49 +01:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= A Python source to bytecode compiler
|
2001-09-06 16:15:37 +02:00
|
|
|
|
|
|
|
DIST_SUBDIR= python
|
|
|
|
USE_PYTHON= yes
|
2002-04-29 19:53:59 +02:00
|
|
|
USE_PYDISTUTILS= yes
|
2001-09-06 16:15:37 +02:00
|
|
|
WRKSRC= ${PYTHON_WRKSRC}/Tools/${PORTNAME}
|
|
|
|
|
2002-04-23 16:35:59 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} >= 220
|
2004-12-19 19:14:59 +01:00
|
|
|
IGNORE= is part of the standard library from Python 2.2 upwards
|
2002-04-23 16:35:59 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|