From owner-svn-ports-all@FreeBSD.ORG Tue Apr 22 09:27:36 2014 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 ESMTPS id 29E02E62; Tue, 22 Apr 2014 09:27:36 +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 166451B15; Tue, 22 Apr 2014 09:27:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3M9RZuM038513; Tue, 22 Apr 2014 09:27:35 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3M9RZFe038512; Tue, 22 Apr 2014 09:27:35 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201404220927.s3M9RZFe038512@svn.freebsd.org> From: Pawel Pekala Date: Tue, 22 Apr 2014 09:27:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351781 - head/games/tuxpaint-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.17 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: Tue, 22 Apr 2014 09:27:36 -0000 Author: pawel Date: Tue Apr 22 09:27:35 2014 New Revision: 351781 URL: http://svnweb.freebsd.org/changeset/ports/351781 QAT: https://qat.redports.org/buildarchive/r351781/ Log: Add staging support Modified: head/games/tuxpaint-fonts/Makefile Modified: head/games/tuxpaint-fonts/Makefile ============================================================================== --- head/games/tuxpaint-fonts/Makefile Tue Apr 22 09:26:32 2014 (r351780) +++ head/games/tuxpaint-fonts/Makefile Tue Apr 22 09:27:35 2014 (r351781) @@ -47,7 +47,6 @@ MASTER_SITES+= SF/${PORTNAME}/${PORTNAME # Do not use the same OPTIONS directory as "games/tuxpaint". LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} -NO_STAGE= yes .include # Set DISTFILES and PLIST_FILES according to OPTIONS. @@ -63,16 +62,16 @@ PLIST_DIRS+= %%DATADIR%%/fonts/locale/${ # Install seleted fonts. do-install: - ${MKDIR} ${DATADIR}/fonts/locale + @${MKDIR} ${STAGEDIR}${DATADIR}/fonts/locale .for l in ${LANGS} . if ${PORT_OPTIONS:M${l:U}} ${INSTALL_DATA} \ ${WRKSRC}/${PORTNAME}-ttf-${${l:U}_DISTNAME}/${${l:U}_CODE}.ttf \ - ${DATADIR}/fonts/locale - ${MKDIR} ${DATADIR}/fonts/locale/${${l:U}_CODE}_docs + ${STAGEDIR}${DATADIR}/fonts/locale + @${MKDIR} ${STAGEDIR}${DATADIR}/fonts/locale/${${l:U}_CODE}_docs ${INSTALL_DATA} \ ${WRKSRC}/${PORTNAME}-ttf-${${l:U}_DISTNAME}/*.txt \ - ${DATADIR}/fonts/locale/${${l:U}_CODE}_docs + ${STAGEDIR}${DATADIR}/fonts/locale/${${l:U}_CODE}_docs . endif .endfor