Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Apr 2014 15:14:54 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350721 - head/mail/thunderbird-dictionaries
Message-ID:  <201404091514.s39FEsjb092557@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.options.mk>
 .include <bsd.port.pre.mk>
 
 .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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404091514.s39FEsjb092557>