for working with Python module distributions. The project has two goals: - Providing a backward compatible version to replace Setuptools and make all distributions that depend on Setuptools work as before, but with less bugs and behavioral issues. - Re-factoring the code, and releasing it in several distributions. This work is being done in the 0.7.x series but not yet released.
29 lines
722 B
Makefile
29 lines
722 B
Makefile
# New ports collection makefile for: py-distribute
|
|
# Date created: 2010-05-06
|
|
# Whom: Nicola Vitale <nivit@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= distribute
|
|
PORTVERSION= 0.6.14
|
|
#PORTREVISION= 0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= A Python packages installer, and Setuptools replacement
|
|
|
|
PLIST_SUB= PYVER=${PYTHON_VER} VERSION=${PORTVERSION} SETUPTOOLS_VER=0.6c11
|
|
|
|
PYDISTUTILS_NOEGGINFO= yes
|
|
# waiting for better times...
|
|
PYEASYINSTALL_CMD= ${LOCALBASE}/bin/easy_install-${PYTHON_VER}
|
|
CONFLICTS= ${PKGNAMEPREFIX}setuptools-[0-9]*
|
|
# i.e. a support in bsd.python.mk
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
.include <bsd.port.mk>
|