Date: Thu, 17 Nov 2005 08:07:45 -0800 From: "Michael C. Shultz" <ringworm01@gmail.com> To: freebsd-ports-bugs@freebsd.org, Pav Lucistnik <pav@freebsd.org> Subject: Re: ports/89164: [PATCH] /var/db/pkg/{portname}/+CONTENTS files sometimes contain wrong data Message-ID: <200511170807.46482.ringworm01@gmail.com> In-Reply-To: <200511171540.jAHFeJSL017500@freefall.freebsd.org> References: <200511171540.jAHFeJSL017500@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--Boundary-00=_SrKfDsvSjXb/rP1 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Thursday 17 November 2005 07:40, Pav Lucistnik wrote: > The following reply was made to PR ports/89164; it has been noted by GNATS. > > From: Pav Lucistnik <pav@FreeBSD.org> > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: ports/89164: [PATCH] /var/db/pkg/{portname}/+CONTENTS files > sometimes contain wrong data > Date: Thu, 17 Nov 2005 16:35:02 +0100 > > Could you send the standalone bsd.port.mk patch to this PR? > > -- > Pav Lucistnik <pav@oook.cz> > <pav@FreeBSD.org> > > Alignment: Neutral Greedy Sorry, should have said where it was, gets put into /usr/local/share/portmanager but I'll attach the patch to this message anyways. I've fixed a bug where the package list is picking up build dependencies since posting this yesterday. You sould be able to test ok with what is there but if you like I have a version available that also handles the patch better and fixes the bug. -Mike --Boundary-00=_SrKfDsvSjXb/rP1 Content-Type: text/x-diff; charset="iso-8859-6"; name="patch-bsd.port.mk-0.3.6" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-bsd.port.mk-0.3.6" --- /usr/ports/Mk/bsd.port.mk Tue Nov 8 01:02:51 2005 +++ bsd.port.mk Wed Nov 16 02:16:57 2005 @@ -2049,7 +2049,9 @@ DISABLE_CONFLICTS= YES .endif .if !defined(PKG_ARGS) -PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} +PORTMANAGER= ${LOCALBASE}/bin/portmanager /${PKGORIGIN} package-depends +PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${PORTMANAGER} | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} +###PKG_ARGS= -v -c -${COMMENT:Q} -d ${DESCR} -f ${TMPPLIST} -p ${PREFIX} -P "`cd ${.CURDIR} && ${MAKE} package-depends | ${GREP} -v -E ${PKG_IGNORE_DEPENDS} | ${SORT} -u`" ${EXTRA_PKG_ARGS} $${_LATE_PKG_ARGS} .if !defined(NO_MTREE) PKG_ARGS+= -m ${MTREE_FILE} .endif --Boundary-00=_SrKfDsvSjXb/rP1--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200511170807.46482.ringworm01>