Date: Fri, 4 Oct 2013 21:08:23 +0100 (BST) From: Chris Rees <crees@FreeBSD.org> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/182648: [PATCH] textproc/docbook-xml Revert r284943 for docbook-xml to fix install Message-ID: <20131004200823.4F14C3F931@pegasus.bayofrum.net> Resent-Message-ID: <201310042010.r94KA1db073457@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 182648 >Category: ports >Synopsis: [PATCH] textproc/docbook-xml Revert r284943 for docbook-xml to fix install >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Oct 04 20:10:01 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: FreeBSD 9.1-RELEASE-p4 amd64 >Organization: >Environment: System: FreeBSD pegasus.bayofrum.net 9.1-RELEASE-p4 FreeBSD 9.1-RELEASE-p4 #1 r252227M: Sat Jun 29 13:55:30 BST 2013 root@pegasus.bayofrum.net:/usr/obj/usr/src/sys/PEGASUS amd64 >Description: Unfortunately, replacing unzip with ${UNZIP_CMD} causes install to fail when dependencies are deinstalled before the stage, i.e. USE_ZIP is not effective during the do-install phase. http://www.bayofrum.net/medusa/tinderlogs/10i386-local-20130830203915/docbook-xml-4.2_1.log Unzip is in all supported versions of FreeBSD anyway. >How-To-Repeat: >Fix: --- docbook-xml-unzip.diff begins here --- Index: Makefile =================================================================== --- Makefile (revision 329372) +++ Makefile (working copy) @@ -33,7 +33,7 @@ @[ -d ${DOCBOOKDIR}/ent ] || ${MKDIR} ${DOCBOOKDIR}/ent do-install: - for file in `${UNZIP_CMD} -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \ + for file in `unzip -l ${DISTDIR}/${DISTFILES}|${AWK} '/:[0-9].*[^\/]$$/{print $$4}'`; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${DOCBOOKDIR}/$$file; \ done --- docbook-xml-unzip.diff ends here --- -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20131004200823.4F14C3F931>