1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Support stage

This commit is contained in:
Baptiste Daroussin 2014-04-09 15:14:54 +00:00
parent 1d5a03f7ac
commit d5ebf9f0b3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=350721

View File

@ -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