From owner-svn-ports-head@FreeBSD.ORG Fri May 30 14:24:02 2014 Return-Path: Delivered-To: svn-ports-head@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 ESMTPS id 8753E767; Fri, 30 May 2014 14:24:02 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 74BA02B1C; Fri, 30 May 2014 14:24:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UEO2s5090482; Fri, 30 May 2014 14:24:02 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4UEO2eK090481; Fri, 30 May 2014 14:24:02 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201405301424.s4UEO2eK090481@svn.freebsd.org> From: Pawel Pekala Date: Fri, 30 May 2014 14:24:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355848 - head/korean/man-doc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 14:24:02 -0000 Author: pawel Date: Fri May 30 14:24:01 2014 New Revision: 355848 URL: http://svnweb.freebsd.org/changeset/ports/355848 QAT: https://qat.redports.org/buildarchive/r355848/ Log: Add staging support Modified: head/korean/man-doc/Makefile Modified: head/korean/man-doc/Makefile ============================================================================== --- head/korean/man-doc/Makefile Fri May 30 14:22:36 2014 (r355847) +++ head/korean/man-doc/Makefile Fri May 30 14:24:01 2014 (r355848) @@ -16,7 +16,6 @@ COMMENT= Korean online manual pages RUN_DEPENDS= ${LOCALBASE}/bin/groff:${PORTSDIR}/japanese/groff -NO_STAGE= yes post-patch: ${SED} -e 's,%%PREFIX%%,${PREFIX},g' -e 's,%%LOCALBASE%%,${LOCALBASE},g' \ -e 's,gnroff,groff,g' ${WRKSRC}/scripts/kman.in > ${WRKDIR}/kman @@ -26,9 +25,9 @@ do-build: ${FIND} ${WRKSRC} -type f | ${XARGS} ${GZIP_CMD} do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/kman ${PREFIX}/bin - -${MKDIR} ${PREFIX}/share/man/ko_KR.eucKR - ${TAR} -C ${WRKSRC} -cf - . | \ - ${TAR} -C ${PREFIX}/share/man/ko_KR.eucKR -xf - + ${INSTALL_SCRIPT} ${WRKDIR}/kman ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/man/ko_KR.eucKR + (cd ${WRKSRC} && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${PREFIX}/share/man/ko_KR.eucKR) .include