From owner-freebsd-python@FreeBSD.ORG Sun Sep 2 07:31:08 2012 Return-Path: Delivered-To: python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 691B4106566B; Sun, 2 Sep 2012 07:31:08 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward5h.mail.yandex.net (forward5h.mail.yandex.net [IPv6:2a02:6b8:0:f05::5]) by mx1.freebsd.org (Postfix) with ESMTP id D611C8FC0A; Sun, 2 Sep 2012 07:31:07 +0000 (UTC) Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [84.201.187.145]) by forward5h.mail.yandex.net (Yandex) with ESMTP id 6613BD00F92; Sun, 2 Sep 2012 11:31:06 +0400 (MSK) Received: from smtp2h.mail.yandex.net (localhost [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id 3223617000EB; Sun, 2 Sep 2012 11:31:06 +0400 (MSK) Received: from unknown (unknown [178.76.224.133]) by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id V5VafLxO-V5Vaha3P; Sun, 2 Sep 2012 11:31:05 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1346571066; bh=tNtEZ/YjanYKsngZqa6RaKOdCNGiGN7wpePMyTAv6LA=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: Content-Type; b=vPBLsOS62ZysXFPDTFuSXZwDa63jlUmVG97jkZfjATBaA/8SchKUNBXRorCReqeoj G6ogLeQ+7eDfHOWxqB3BgAwqyjnSA2HhTDTTKLlvKAJ0z52VnTfsOPQavlpRqFi7XT O+FhR3ly9fHyk88VnBb5Z7Ean2Hp4xSv57taRUlY= Message-ID: <50430B39.6040707@yandex.ru> Date: Sun, 02 Sep 2012 11:31:05 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:14.0) Gecko/20120823 Thunderbird/14.0 MIME-Version: 1.0 To: python Content-Type: multipart/mixed; boundary="------------070407000100080506080605" Cc: portmgr@FreeBSD.org Subject: Simple change into Mk/bsd.python.mk X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2012 07:31:08 -0000 This is a multi-part message in MIME format. --------------070407000100080506080605 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, I'm preparing an update of www/plone and discovered thing that's need to be changed to make USE_ZOPE knob actually work. We do not define ZOPESKELDIR anymore, so the RUN_DEPENDS line should be fixed. While here, trim some leftover from py24/25 removal, that's now always true in current ports tree. Would you please approve this change? PS. It doesn't needed an exp-run because at the time there is no ports, that use USE_ZOPE. -- Regards, Ruslan Tinderboxing kills... the drives. --------------070407000100080506080605 Content-Type: text/plain; charset=UTF-8; name="bsd.python.mk.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="bsd.python.mk.diff.txt" Index: bsd.python.mk =================================================================== --- bsd.python.mk (revision 303535) +++ bsd.python.mk (working copy) @@ -501,7 +501,7 @@ (defined(INSTALLS_EGGINFO) || \ (defined(USE_PYDISTUTILS) && \ ${USE_PYDISTUTILS} != "easy_install")) && \ - defined(PYTHON_REL) && ${PYTHON_REL} >= 250 + defined(PYTHON_REL) . for egg in ${PYDISTUTILS_EGGINFO} PLIST_FILES+= ${PYDISTUTILS_EGGINFODIR:S;${PREFIX}/;;}/${egg} . endfor @@ -543,7 +543,7 @@ .endif # ${PYTHON_NO_DEPENDS} == "NO" .if defined(USE_ZOPE) -RUN_DEPENDS+= ${ZOPESKELDIR}/bin/zopectl.in:${ZOPE_PORTSDIR} +RUN_DEPENDS+= ${LOCALBASE}/bin/zopectl:${ZOPE_PORTSDIR} .endif # set $PREFIX as Python's one --------------070407000100080506080605--