- add new USES target: zope, and convert the tree to it

- old USE_ZOPE knob support was removed from bsd.python.mk
- update CHANGES and bsd.sanity.mk accordingly
- add ZOPE options knob and use it in lang/py-mx-base

The work is done by Marcus von Appen, but any problems are mine.

Submitted by:	mva (python ML)
This commit is contained in:
Ruslan Makhmatkhanov 2013-09-23 13:42:48 +00:00
parent 206c183d03
commit dc659a215b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=328002
63 changed files with 168 additions and 153 deletions

View File

@ -39,6 +39,14 @@ AUTHOT: bapt@FreeBSD.org
really important to double check the pkg-plist to make sure all the files
the maintainer want to package are in! make makeplist can help in that area.
20130923:
AUTHOR: mva@FreeBSD.org
* New USES: zope
This replaces the previous USE_ZOPE knob. All other zope related knobs
for port Makefiles still exist. See Mk/Uses/zope.mk for details.
20130920:
AUTHOR: bdrewery@FreeBSD.org

1
KNOBS
View File

@ -255,4 +255,5 @@ XVID XVID multimedia MPEG4 codec support
YAHOO Adds Yahoo! Messenger Protocol support
ZIP Adds ZIP support
ZLIB Adds Zlib support
ZOPE Zope support
ZVBI Adds support to access raw VBI capture devices

94
Mk/Uses/zope.mk Normal file
View File

@ -0,0 +1,94 @@
# $FreeBSD$
#
# Provide support for Zope-related ports
#
# MAINTAINER: zope@FreeBSD.org
#
# SZOPEBASEDIR - relative base directory of zope server
# ZOPEBASEDIR - absolute base directory of zope that is
# ${LOCALBASE}/${SZOPEBASEDIR} by default,
# ZOPEPRODUCTDIR - directory, where products for zope can be found
#
# ZOPE_VERSION - Version of zope that will be used in the port. Set this
# in your /etc/make.conf in case you want to use a
# specific version of zope.
#
.if !defined(_INCLUDE_USES_ZOPE_MK)
_INCLUDE_USES_ZOPE_MK= yes
_ZOPE_PORTBRANCH= 2.13
_ZOPE_ALLBRANCHES= 2.13
_PYTHON_VER_REQUIRED= python2.7
.if defined(ZOPE_VERSION)
_ZOPE_VERSION:= ${ZOPE_VERSION}
.else
_ZOPE_VERSION:= ${_ZOPE_PORTBRANCH}
.endif
# Validate Zope version whether it meets USE_ZOPE version restriction.
_ZOPE_VERSION_CHECK:= ${USE_ZOPE:C/^([1-9]\.[0-9]*)$/\1-\1/}
_ZOPE_VERSION_MINIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/([1-9]\.[0-9]*)[-+].*/\1/}
_ZOPE_VERSION_MINIMUM:= ${_ZOPE_VERSION_MINIMUM_TMP:M[1-9].[0-9]}
_ZOPE_VERSION_MAXIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/.*-([1-9]\.[0-9]*)/\1/}
_ZOPE_VERSION_MAXIMUM:= ${_ZOPE_VERSION_MAXIMUM_TMP:M[1-9].[0-9]}
.if !empty(_ZOPE_VERSION_MINIMUM) && ( \
${_ZOPE_VERSION} < ${_ZOPE_VERSION_MINIMUM})
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MINIMUM} at least
.elif !empty(_ZOPE_VERSION_MAXIMUM) && ( \
${_ZOPE_VERSION} > ${_ZOPE_VERSION_MAXIMUM})
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MAXIMUM} at most
.endif
# If we have an unsupported version of Zope, try another.
.if defined(_ZOPE_VERSION_NONSUPPORTED)
.if defined(ZOPE_VERSION)
IGNORE= needs Zope ${_ZOPE_VERSION_NONSUPPORTED}.\
But you specified ${_ZOPE_VERSION}
.else
.undef _ZOPE_VERSION
.for ver in ${_ZOPE_ALLBRANCHES}
__VER= ${ver}
.if !defined(_ZOPE_VERSION) && \
!(!empty(_ZOPE_VERSION_MINIMUM) && ( \
${__VER} < ${_ZOPE_VERSION_MINIMUM})) && \
!(!empty(_ZOPE_VERSION_MAXIMUM) && ( \
${__VER} > ${_ZOPE_VERSION_MAXIMUM}))
_ZOPE_VERSION= ${ver}
.endif
.endfor
.if !defined(_ZOPE_VERSION)
IGNORE= needs an unsupported version of Zope
_ZOPE_VERSION= ${_ZOPE_PORTBRANCH} # just to avoid version sanity checking.
.endif
.endif # defined(ZOPE_VERSION)
.endif # defined(_ZOPE_VERSION_NONSUPPORTED)
ZOPE_VERSION?= ${_ZOPE_VERSION}
.if !defined(PYTHON_VERSION)
PYTHON_VERSION= ${_PYTHON_VER_REQUIRED}
.elif ${PYTHON_VERSION} != ${_PYTHON_VER_REQUIRED}
IGNORE+= Zope requires Python ${_PYTHON_VER_REQUIRED}.\
But you or a port dependency specified ${PYTHON_VERSION}
.endif # !defined(PYTHON_VERSION)
# Zope-related variables
.if ${ZOPE_VERSION} == ${_ZOPE_PORTBRANCH}
RUN_DEPENDS+= zope213>0:${PORTSDIR}/www/zope213
.else
check-makevars::
@${ECHO} "Makefile error: bad value for ZOPE_VERSION: ${ZOPE_VERSION}."
@${ECHO} "Legal values are: ${_ZOPE_PORTBRANCH} (default)"
@${FALSE}
.endif
ZOPEBASEDIR?= ${PREFIX}/${SZOPEBASEDIR}
ZOPEPRODUCTDIR?= Products
# Zope specific substitutions
PLIST_SUB+= ZOPEBASEDIR=${SZOPEBASEDIR} \
ZOPEPRODUCTDIR=${SZOPEBASEDIR}/${ZOPEPRODUCTDIR}
.endif # !defined(_INCLUDE_USES_ZOPE_MK)

View File

@ -210,76 +210,9 @@ Python_Include_MAINTAINER= python@FreeBSD.org
#
# USE_TWISTED_RUN - Same as USE_TWISTED but add only run dependency.
#
# USE_ZOPE - Use Zope - an object-based web application platform, this
# also sets up:
# SZOPEBASEDIR - relative base directory of zope server
# ZOPEBASEDIR - absolute base directory of zope that is
# ${LOCALBASE}/${SZOPEBASEDIR} by default,
# ZOPEPRODUCTDIR - directory, where products for zope can be found
#
# ZOPE_VERSION - Version of zope that will be used in the port. Set this
# in your /etc/make.conf in case you want to use a
# specific version of zope.
#
_PYTHON_PORTBRANCH= 2.7
_PYTHON_ALLBRANCHES= 2.7 2.6 3.3 3.2 3.1 # preferred first
_ZOPE_PORTBRANCH= 2.13
_ZOPE_ALLBRANCHES= 2.13
# Determine version number of Zope to use
.if defined(USE_ZOPE)
.if defined(ZOPE_VERSION)
_ZOPE_VERSION:= ${ZOPE_VERSION}
.else
_ZOPE_VERSION:= ${_ZOPE_PORTBRANCH}
.endif
# Validate Zope version whether it meets USE_ZOPE version restriction.
_ZOPE_VERSION_CHECK:= ${USE_ZOPE:C/^([1-9]\.[0-9]*)$/\1-\1/}
_ZOPE_VERSION_MINIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/([1-9]\.[0-9]*)[-+].*/\1/}
_ZOPE_VERSION_MINIMUM:= ${_ZOPE_VERSION_MINIMUM_TMP:M[1-9].[0-9]}
_ZOPE_VERSION_MAXIMUM_TMP:= ${_ZOPE_VERSION_CHECK:C/.*-([1-9]\.[0-9]*)/\1/}
_ZOPE_VERSION_MAXIMUM:= ${_ZOPE_VERSION_MAXIMUM_TMP:M[1-9].[0-9]}
.if !empty(_ZOPE_VERSION_MINIMUM) && ( \
${_ZOPE_VERSION} < ${_ZOPE_VERSION_MINIMUM})
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MINIMUM} at least
.elif !empty(_ZOPE_VERSION_MAXIMUM) && ( \
${_ZOPE_VERSION} > ${_ZOPE_VERSION_MAXIMUM})
_ZOPE_VERSION_NONSUPPORTED= ${_ZOPE_VERSION_MAXIMUM} at most
.endif
# If we have an unsupported version of Zope, try another.
.if defined(_ZOPE_VERSION_NONSUPPORTED)
.if defined(ZOPE_VERSION)
IGNORE= needs Zope ${_ZOPE_VERSION_NONSUPPORTED}.\
But you specified ${_ZOPE_VERSION}
.else
.undef _ZOPE_VERSION
.for ver in ${_ZOPE_ALLBRANCHES}
__VER= ${ver}
.if !defined(_ZOPE_VERSION) && \
!(!empty(_ZOPE_VERSION_MINIMUM) && ( \
${__VER} < ${_ZOPE_VERSION_MINIMUM})) && \
!(!empty(_ZOPE_VERSION_MAXIMUM) && ( \
${__VER} > ${_ZOPE_VERSION_MAXIMUM}))
_ZOPE_VERSION= ${ver}
.endif
.endfor
.if !defined(_ZOPE_VERSION)
IGNORE= needs an unsupported version of Zope
_ZOPE_VERSION= ${_ZOPE_PORTBRANCH} # just to avoid version sanity checking.
.endif
.endif # defined(ZOPE_VERSION)
.endif # defined(_ZOPE_VERSION_NONSUPPORTED)
ZOPE_VERSION?= ${_ZOPE_VERSION}
PYTHON_VERSION= python2.7
.endif # defined(USE_ZOPE)
# Determine version number of Python to use
.if !defined(PYTHON_DEFAULT_VERSION)
@ -555,20 +488,6 @@ PLIST_FILES+= ${PYDISTUTILS_EGGINFODIR:S;${PREFIX}/;;}/${egg}
# Fix for programs that build python from a GNU auto* environment
CONFIGURE_ENV+= PYTHON="${PYTHON_CMD}"
# Zope-related variables
.if defined(USE_ZOPE)
.if ${ZOPE_VERSION} == "2.13"
ZOPE_DEPENDS= zope213>0:${PORTSDIR}/www/zope213
.else
check-makevars::
@${ECHO} "Makefile error: bad value for ZOPE_VERSION: ${ZOPE_VERSION}."
@${ECHO} "Legal values are: 2.13 (default)"
@${FALSE}
.endif
ZOPEBASEDIR?= ${PREFIX}/${SZOPEBASEDIR}
ZOPEPRODUCTDIR?= Products
.endif
# Python 3rd-party modules
PYGAME= ${PYTHON_PKGNAMEPREFIX}game>0:${PORTSDIR}/devel/py-game
PYNUMERIC= ${PYTHON_SITELIBDIR}/Numeric/Numeric.py:${PORTSDIR}/math/py-numeric
@ -589,10 +508,6 @@ RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \
.endif
.endif # ${PYTHON_NO_DEPENDS} == "NO"
.if defined(USE_ZOPE)
RUN_DEPENDS+= ${ZOPE_DEPENDS}
.endif
# set $PREFIX as Python's one
.if defined(USE_PYTHON_PREFIX)
PREFIX= ${PYTHONBASE}
@ -607,12 +522,6 @@ PLIST_SUB+= PYTHON_INCLUDEDIR=${PYTHONPREFIX_INCLUDEDIR:S;${PREFIX}/;;} \
PYTHON_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} \
PYTHON_VERSION=${PYTHON_VERSION}
# Zope specific substitutions
.if defined(USE_ZOPE)
PLIST_SUB+= ZOPEBASEDIR=${SZOPEBASEDIR} \
ZOPEPRODUCTDIR=${SZOPEBASEDIR}/${ZOPEPRODUCTDIR}
.endif
# Twisted specific routines
.if defined(USE_TWISTED) || defined(USE_TWISTED_BUILD) || defined(USE_TWISTED_RUN)

View File

@ -79,6 +79,10 @@ DEV_ERROR+= "USE_GETTEXT is unsupported, replaced by USES=gettext"
DEV_ERROR+= "USE_GNOME=pkgconfig is unsupported, please use USES=pkgconfig"
.endif
.if defined(USE_ZOPE) && ${USE_ZOPE} == yes
DEV_ERROR+= "USE_ZOPE=yes is unsupported, please use USES=zope instead"
.endif
.if defined(USE_GNOME) && ${USE_GNOME:Mgnomehack}
DEV_WARNING+= "USE_GNOME=gnomehack is deprecated, please use USES=pathfix"
.endif

View File

@ -10,13 +10,13 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= psycopg-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= The high performance Python adapter for PostgreSQL
COMMENT= High performance Python adapter for PostgreSQL
RUN_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base
BUILD_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base
USE_PGSQL= yes
USE_GMAKE= yes
USES= gmake
USE_PYTHON= yes
GNU_CONFIGURE= yes
@ -29,7 +29,7 @@ CONFIGURE_ARGS= --with-python=${PYTHON_CMD} \
--with-mxdatetime-includes=${DATETIME_INC}
.if defined(WITH_ZOPE)
USE_ZOPE= yes
USES+= zope
PLIST_SUB+= ZOPE=""
.else
PLIST_SUB+= ZOPE="@comment "

View File

@ -13,4 +13,4 @@ from the pool is used. That makes psycopg very fast in typical client-server
applications that create a servicing thread every time a client request
arrives.
WWW: http://initd.org/software/psycopg
WWW: http://initd.org/software/psycopg/

View File

@ -41,7 +41,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -52,7 +52,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -20,7 +20,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}five.localsitemanager>=0:${PORTSDIR}/devel/p
DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes # cyclic dependency
#USES= zope # cyclic dependency
NO_STAGE= yes

View File

@ -20,7 +20,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -23,7 +23,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -29,7 +29,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -19,7 +19,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Pro
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -19,7 +19,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}five.localsitemanager>=0:${PORTSDIR}/devel/p
DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ OPTIONS_DEFAULT= POSIXGROUP_PATCH
DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -17,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/p
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -21,7 +21,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -31,7 +31,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -16,7 +16,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.globalrequest>=0:${PORTSDIR}/devel/py-z
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz \
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -29,13 +29,12 @@ ADDITIONAL_DOCS= mx/DateTime/Doc/mxDateTime.pdf \
OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}/options
OPTIONS_DEFINE= DOCS ZOPE EXAMPLES
ZOPE_DESC= Use ZOPE
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MZOPE}
USE_ZOPE= yes
USES= zope
.endif
post-patch:

View File

@ -22,7 +22,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -17,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.PluginRegistry>=0:${PORTSDIR}/devel
DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}plone.openid>=0:${PORTSDIR}/security/py-plon
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -21,7 +21,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -19,7 +19,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -20,7 +20,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -36,7 +36,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -34,7 +34,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -32,7 +32,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -30,7 +30,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -42,7 +42,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -42,7 +42,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -42,7 +42,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -33,7 +33,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -35,7 +35,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -19,7 +19,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -36,7 +36,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -49,7 +49,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -26,9 +26,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}plone.registry>=1.0:${PORTSDIR}/www/py-plone
DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS= easy_install
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -50,7 +50,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -31,7 +31,7 @@ DIST_SUBDIR= zope
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.browser>=0:${PORTSDIR}/devel/py-zope.br
DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -31,7 +31,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -21,7 +21,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -24,7 +24,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -44,7 +44,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -26,7 +26,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE yes
#USES= zope
NO_STAGE= yes

View File

@ -25,7 +25,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -27,7 +27,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes

View File

@ -22,7 +22,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
#USE_ZOPE= yes
#USES= zope
NO_STAGE= yes

View File

@ -21,7 +21,7 @@ DIST_SUBDIR= zope
USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
USE_ZIP= yes
USE_ZOPE= yes
USES= zope
NO_STAGE= yes