svn commit: r328943 - head/textproc/docbook-420
Chris Rees
crees at FreeBSD.org
Tue Oct 1 12:35:35 UTC 2013
Author: crees
Date: Tue Oct 1 12:35:34 2013
New Revision: 328943
URL: http://svnweb.freebsd.org/changeset/ports/328943
Log:
This port depended on unzip, but used ${UNZIP_CMD}, thus breaking systems that
do not have archivers/unzip installed. Perhaps the correct fix is in
bsd.commands.mk...
PR: ports/181624
Approved by: maintainer timeout (kutulu at kutulu.org, 4 weeks)
Modified:
head/textproc/docbook-420/Makefile
Modified: head/textproc/docbook-420/Makefile
==============================================================================
--- head/textproc/docbook-420/Makefile Tue Oct 1 12:33:57 2013 (r328942)
+++ head/textproc/docbook-420/Makefile Tue Oct 1 12:35:34 2013 (r328943)
@@ -35,7 +35,7 @@ pre-su-install:
@[ -d ${INSTDIR}/${PORTVERSION} ] || ${MKDIR} ${INSTDIR}/${PORTVERSION}
do-install:
- @${UNZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION}
+ @unzip ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION}
@${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/${PORTVERSION}/catalog
@${ECHO_CMD} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/${PORTVERSION}/catalog
@${CHMOD} ${SHAREMODE} ${INSTDIR}/${PORTVERSION}/*
More information about the svn-ports-all
mailing list