From owner-svn-ports-all@FreeBSD.ORG Sat Jul 5 05:37:55 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A46742C8; Sat, 5 Jul 2014 05:37:55 +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 778E127EB; Sat, 5 Jul 2014 05:37:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s655btOD027730; Sat, 5 Jul 2014 05:37:55 GMT (envelope-from leeym@svn.freebsd.org) Received: (from leeym@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s655bsmm027727; Sat, 5 Jul 2014 05:37:54 GMT (envelope-from leeym@svn.freebsd.org) Message-Id: <201407050537.s655bsmm027727@svn.freebsd.org> From: Yen-Ming Lee Date: Sat, 5 Jul 2014 05:37:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360722 - in head/chinese: CJKUnifonts CNS11643-font opendesktop-fonts 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.18 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: Sat, 05 Jul 2014 05:37:55 -0000 Author: leeym Date: Sat Jul 5 05:37:54 2014 New Revision: 360722 URL: http://svnweb.freebsd.org/changeset/ports/360722 QAT: https://qat.redports.org/buildarchive/r360722/ Log: - support stage Modified: head/chinese/CJKUnifonts/Makefile head/chinese/CNS11643-font/Makefile head/chinese/opendesktop-fonts/Makefile Modified: head/chinese/CJKUnifonts/Makefile ============================================================================== --- head/chinese/CJKUnifonts/Makefile Sat Jul 5 05:34:04 2014 (r360721) +++ head/chinese/CJKUnifonts/Makefile Sat Jul 5 05:37:54 2014 (r360722) @@ -21,11 +21,10 @@ NO_BUILD= yes TTF= ukai.ttc uming.ttc -NO_STAGE= yes do-install: - @${MKDIR} ${FONTSDIR} - ${INSTALL_DATA} ${WRKDIR}/ukai.ttc ${FONTSDIR} - ${INSTALL_DATA} ${WRKDIR}/uming.ttc ${FONTSDIR} + @${MKDIR} ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKDIR}/ukai.ttc ${STAGEDIR}${FONTSDIR} + ${INSTALL_DATA} ${WRKDIR}/uming.ttc ${STAGEDIR}${FONTSDIR} .include .include "${PORTSDIR}/chinese/ttfm/Makefile.ttf" Modified: head/chinese/CNS11643-font/Makefile ============================================================================== --- head/chinese/CNS11643-font/Makefile Sat Jul 5 05:34:04 2014 (r360721) +++ head/chinese/CNS11643-font/Makefile Sat Jul 5 05:37:54 2014 (r360722) @@ -24,11 +24,10 @@ NO_BUILD= yes TTF= TW-Kai-98_1.ttf TW-Sung-98_1.ttf -NO_STAGE= yes do-install: - @${MKDIR} ${FONTSDIR} + @${MKDIR} ${STAGEDIR}${FONTSDIR} .for f in ${TTF} - ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${f} ${FONTSDIR} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${f} ${STAGEDIR}${FONTSDIR} .endfor post-install: Modified: head/chinese/opendesktop-fonts/Makefile ============================================================================== --- head/chinese/opendesktop-fonts/Makefile Sat Jul 5 05:34:04 2014 (r360721) +++ head/chinese/opendesktop-fonts/Makefile Sat Jul 5 05:37:54 2014 (r360722) @@ -17,7 +17,6 @@ NO_BUILD= yes TTF= odokai-ExtB.ttf odokai.ttf odosung-ExtB.ttf odosung.ttc -NO_STAGE= yes .include .if !defined(WITHOUT_X11) @@ -36,11 +35,11 @@ post-patch: @${FIND} ${WRKSRC} -name "*.bak" -delete do-install: - ${MKDIR} ${FONTSDIR} + ${MKDIR} ${STAGEDIR}${FONTSDIR} .for i in ${TTF} - ${INSTALL_DATA} ${WRKSRC}/${i} ${FONTSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${FONTSDIR} .endfor - ${INSTALL_DATA} ${FILESDIR}/local.conf-odo ${FONTSDIR} + ${INSTALL_DATA} ${FILESDIR}/local.conf-odo ${STAGEDIR}${FONTSDIR} .if !defined(WITHOUT_X11) ${INSTALL_DATA} ${FILESDIR}/local.conf-odo ${LOCALBASE}/etc/fonts/local.conf .endif