svn commit: r335739 - head/Mk

Antoine Brodin antoine at FreeBSD.org
Fri Dec 6 12:19:22 UTC 2013


Author: antoine
Date: Fri Dec  6 12:19:21 2013
New Revision: 335739
URL: http://svnweb.freebsd.org/changeset/ports/335739

Log:
  Some ports install their info pages gzipped (devel/cvs or lang/gauche for
  instance)
  Handle this case
  
  Approved by:	portmgr (bapt)

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Fri Dec  6 12:15:43 2013	(r335738)
+++ head/Mk/bsd.port.mk	Fri Dec  6 12:19:21 2013	(r335739)
@@ -6015,8 +6015,7 @@ add-plist-info:
 	@${ECHO_CMD} "@exec install-info --quiet %D/${INFO_PATH}/$i.info %D/${INFO_PATH}/dir" \
 		>> ${TMPPLIST}
 .else
-	@${ECHO_CMD} "@info ${INFO_PATH}/$i.info" >> ${TMPPLIST}
-	@${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info-* 2>/dev/null | ${SED} -e s:${STAGEDIR}${PREFIX}/:@info\ :g >> ${TMPPLIST}
+	@${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info* 2>/dev/null | ${SED} -e s:${STAGEDIR}${PREFIX}/:@info\ :g >> ${TMPPLIST}
 .endif
 .endfor
 .if defined(INFO_SUBDIR)


More information about the svn-ports-head mailing list