From owner-svn-ports-all@FreeBSD.ORG Wed Apr 9 15:14:54 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 CC85FF5D; Wed, 9 Apr 2014 15:14:54 +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 B91BD150F; Wed, 9 Apr 2014 15:14:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s39FEslh092558; Wed, 9 Apr 2014 15:14:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s39FEsjb092557; Wed, 9 Apr 2014 15:14:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201404091514.s39FEsjb092557@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 9 Apr 2014 15:14:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350721 - head/mail/thunderbird-dictionaries 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: Wed, 09 Apr 2014 15:14:54 -0000 Author: bapt Date: Wed Apr 9 15:14:54 2014 New Revision: 350721 URL: http://svnweb.freebsd.org/changeset/ports/350721 QAT: https://qat.redports.org/buildarchive/r350721/ Log: Support stage Modified: head/mail/thunderbird-dictionaries/Makefile Modified: head/mail/thunderbird-dictionaries/Makefile ============================================================================== --- head/mail/thunderbird-dictionaries/Makefile Wed Apr 9 15:07:44 2014 (r350720) +++ head/mail/thunderbird-dictionaries/Makefile Wed Apr 9 15:14:54 2014 (r350721) @@ -19,10 +19,8 @@ USES= zip:infozip NO_BUILD= yes WRKSRC= ${WRKDIR}/dictionaries -NO_STAGE= yes .include "${.CURDIR}/Makefile.options" -.include .include .include "${.CURDIR}/Makefile.dict" @@ -64,22 +62,23 @@ do-extract: # Install the requested dictionaries do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/thunderbird/dictionaries .for f in ${ALLDICTS} .if ${PORT_OPTIONS:M${f}} .if ${BG_DICT}==${f} - @${INSTALL_DATA} \ + ${INSTALL_DATA} \ ${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}aff \ - ${PREFIX}/lib/thunderbird/dictionaries - @${INSTALL_DATA} \ + ${STAGEDIR}${PREFIX}/lib/thunderbird/dictionaries + ${INSTALL_DATA} \ ${WRKSRC}/${${f}_FILE}/bin/components/myspell/${${f}_FILE:S/spell-//:S/xpi//}dic \ - ${PREFIX}/lib/thunderbird/dictionaries + ${STAGEDIR}${PREFIX}/lib/thunderbird/dictionaries .else - @${INSTALL_DATA} \ + ${INSTALL_DATA} \ ${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}aff \ - ${PREFIX}/lib/thunderbird/dictionaries - @${INSTALL_DATA} \ + ${STAGEDIR}${PREFIX}/lib/thunderbird/dictionaries + ${INSTALL_DATA} \ ${WRKSRC}/${${f}_FILE}/${${f}_FILE:S/spell-//:S/xpi//}dic \ - ${PREFIX}/lib/thunderbird/dictionaries + ${STAGEDIR}${PREFIX}/lib/thunderbird/dictionaries .endif .endif .endfor