From owner-svn-ports-all@FreeBSD.ORG Sun Oct 6 12:34:48 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 36A7DEF5; Sun, 6 Oct 2013 12:34:48 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 230EE27FB; Sun, 6 Oct 2013 12:34:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r96CYmqf031294; Sun, 6 Oct 2013 12:34:48 GMT (envelope-from crees@svn.freebsd.org) Received: (from crees@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r96CYlC6031293; Sun, 6 Oct 2013 12:34:47 GMT (envelope-from crees@svn.freebsd.org) Message-Id: <201310061234.r96CYlC6031293@svn.freebsd.org> From: Chris Rees Date: Sun, 6 Oct 2013 12:34:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329556 - head/textproc/docbook-xml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Oct 2013 12:34:48 -0000 Author: crees Date: Sun Oct 6 12:34:47 2013 New Revision: 329556 URL: http://svnweb.freebsd.org/changeset/ports/329556 Log: Partially revert r284943 to enable building with base unzip. The better solution would be to do the extraction in the do-extract section. PR: ports/182648 Submitted by: ports/182022 Approved by: maintainer timeout (kuriyama, 4 weeks) Modified: head/textproc/docbook-xml/Makefile Modified: head/textproc/docbook-xml/Makefile ============================================================================== --- head/textproc/docbook-xml/Makefile Sun Oct 6 12:34:35 2013 (r329555) +++ head/textproc/docbook-xml/Makefile Sun Oct 6 12:34:47 2013 (r329556) @@ -33,7 +33,7 @@ pre-su-install: @[ -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