Date: Mon, 17 Apr 2006 18:21:40 GMT From: Matthias Lederhofer <matled@gmx.net> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/95955: [PATCH] textproc/docbook-310 broken Message-ID: <200604171821.k3HILeYt099625@www.freebsd.org> Resent-Message-ID: <200604171830.k3HIUE6i070236@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 95955 >Category: ports >Synopsis: [PATCH] textproc/docbook-310 broken >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: Mon Apr 17 18:30:13 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Matthias Lederhofer >Release: 6.0 >Organization: >Environment: >Description: Installing textproc/docbook-310 fails because UNZIP_CMD cannot be found, reason (taken from the diff of ports/textproc/docbook-310/Makefile 1.21->1.22): - @unzip -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} + @{UNZIP_CMD} -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} There is just the $ missing. >How-To-Repeat: cd /usr/port/textproc/docbook-310 make install >Fix: --- Makefile.orig Mon Apr 17 20:19:24 2006 +++ Makefile Mon Apr 17 20:19:15 2006 @@ -41,7 +41,7 @@ @[ -d ${INSTDIR}/${PORTVERSION} ] || ${MKDIR} ${INSTDIR}/${PORTVERSION} do-install: - @{UNZIP_CMD} -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} + @${UNZIP_CMD} -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} @${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/${PORTVERSION}/catalog @${ECHO_CMD} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/${PORTVERSION}/catalog @${CHMOD} ${SHAREMODE} ${INSTDIR}/${PORTVERSION}/* >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200604171821.k3HILeYt099625>