freebsd-ports/lang/py-compiler/Makefile
Sean Chittenden b8e1e7ef86 Correct ports that were abusing the FORBIDDEN variable and replace with
either IGNORE or BROKEN.

Since there seems to be some confusion, for the record:

BROKEN		is reserved for ports that don't work.  This will prevent
		users from installing the port, but please note that
		ports marked as BROKEN will still be built by bento
IGNORE		is reserved for ports that should not be built for one
		reason or another (including bento).  Users and bento
		will not build ports marked as IGNORE.
FORBIDDEN	is reserved for security breakages only!!!  Only mark a
		port as FORBIDDEN if there is a security issue with the
		port at the time.

Reviewed by:	kris (portmgr)
2003-02-07 02:44:21 +00:00

30 lines
858 B
Makefile

# 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}
MAINTAINER= wjv@FreeBSD.org
DIST_SUBDIR= python
USE_PYTHON= yes
USE_PYDISTUTILS= yes
WRKSRC= ${PYTHON_WRKSRC}/Tools/${PORTNAME}
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} >= 220
IGNORE= "Part of the standard library from Python 2.2 upwards"
.endif
.include <bsd.port.post.mk>