From owner-freebsd-python@FreeBSD.ORG Mon Jul 1 22:00:01 2013 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CE7998D5 for ; Mon, 1 Jul 2013 22:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C13F11613 for ; Mon, 1 Jul 2013 22:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r61M01Ww021511 for ; Mon, 1 Jul 2013 22:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r61M01G6021510; Mon, 1 Jul 2013 22:00:01 GMT (envelope-from gnats) Date: Mon, 1 Jul 2013 22:00:01 GMT Message-Id: <201307012200.r61M01G6021510@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Jaap Akkerhuis Subject: Re: ports/179812: Extract the python part from dns/ldns into dns/py-ldns X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jaap Akkerhuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Jul 2013 22:00:01 -0000 The following reply was made to PR ports/179812; it has been noted by GNATS. From: Jaap Akkerhuis To: bug-followup@FreeBSD.org, Edwin Groothuis Cc: Subject: Re: ports/179812: Extract the python part from dns/ldns into dns/py-ldns Date: Mon, 01 Jul 2013 23:53:38 +0200 > Maintainer of dns/ldns, > > Please note that PR ports/179812 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/179812 This seems to be a fine approach to the problem. However I had to make a small adjustment to make it work (See the snipped of the Makefile below). With this change, I'll approve. jaap ------ post-build: .if ${PORT_OPTIONS:MEXAMPLES} && !defined(BUILD_PYLDNS) @(cd ${WRKSRC}/examples; ${GMAKE}) .endif .if ${PORT_OPTIONS:MDRILL} @(cd ${WRKSRC}/drill; ${GMAKE}) .endif post-install: .if ${PORT_OPTIONS:MEXAMPLES} && !defined(BUILD_PYLDNS) @(cd ${WRKSRC}/examples; ${GMAKE} install) .endif .if ${PORT_OPTIONS:MDRILL} @(cd ${WRKSRC}/drill; ${GMAKE} install) .endif