aboutsummaryrefslogtreecommitdiff
path: root/mail/thunderbird-dictionaries
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-04-09 15:14:54 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-04-09 15:14:54 +0000
commitd5ebf9f0b3334a29a84d6cded3b6d1614adf7103 (patch)
tree89d4a374982cb0e8b5f68a3a3baef29089c78573 /mail/thunderbird-dictionaries
parent1d5a03f7ac601c156f252d1c7173d5fc1f86a298 (diff)
downloadports-d5ebf9f0b3334a29a84d6cded3b6d1614adf7103.tar.gz
ports-d5ebf9f0b3334a29a84d6cded3b6d1614adf7103.zip
Support stage
Notes
Notes: svn path=/head/; revision=350721
Diffstat (limited to 'mail/thunderbird-dictionaries')
-rw-r--r--mail/thunderbird-dictionaries/Makefile19
1 files changed, 9 insertions, 10 deletions
diff --git a/mail/thunderbird-dictionaries/Makefile b/mail/thunderbird-dictionaries/Makefile
index 2bfa716ef604..34e9d367cca6 100644
--- a/mail/thunderbird-dictionaries/Makefile
+++ b/mail/thunderbird-dictionaries/Makefile
@@ -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