b908acd9c8
- Includes support for Python 2.4 - Fix a memory leak when using the profiler - Built-in functions that read the local variables -- locals(), eval(), execfile(), vars(), dir(), input() -- now work correctly Approved by: maintainer (2 weeks timeout)
31 lines
635 B
Makefile
31 lines
635 B
Makefile
# New ports collection makefile for: py-psyco
|
|
# Date created: 5 September 2002
|
|
# Whom: Alex Rodioukov <simuran@shaw.ca>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= psyco
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= psyco
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= simuran@shaw.ca
|
|
COMMENT= Python Specializing Compiler
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
WRKSRC= ${WRKDIR}/psyco-${PORTVERSION}
|
|
|
|
post-install:
|
|
# fix installation permissions
|
|
@${CHMOD} ${SHAREMODE} ${PYTHON_SITELIBDIR}/psyco/*
|
|
|
|
.include <bsd.port.mk>
|