c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
28 lines
736 B
Makefile
28 lines
736 B
Makefile
# New ports collection makefile for: py-zope.schema
|
|
# Date created: 2011-03-21
|
|
# Whom: Cheng-Lung Sung <clsung@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zope.schema
|
|
PORTVERSION= 4.0.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
|
COMMENT= Zope Interface extension for defining data schemas
|
|
|
|
LICENSE= ZPL21
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>=3.6.0:${PORTSDIR}/devel/py-zope.interface \
|
|
${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six \
|
|
${PYTHON_PKGNAMEPREFIX}zope.event>=0:${PORTSDIR}/devel/py-zope.event
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
DIST_SUBDIR= zope
|
|
USE_PYTHON= 2.6+
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
.include <bsd.port.mk>
|