ports/179812: Extract the python part from dns/ldns into dns/py-ldns
Jaap Akkerhuis
jaap at NLnetLabs.nl
Mon Jul 1 22:00:01 UTC 2013
The following reply was made to PR ports/179812; it has been noted by GNATS.
From: Jaap Akkerhuis <jaap at NLnetLabs.nl>
To: bug-followup at FreeBSD.org, Edwin Groothuis <edwin at FreeBSD.org>
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
More information about the freebsd-python
mailing list