diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-04 10:49:03 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-11-04 10:49:03 +0000 |
commit | 3904f6f163a84dab4bdb0c2df1f10c548a8059b7 (patch) | |
tree | aa0437cd1df1ab46c9dae998c380d8e8ba1d5f37 /korean/hunspell | |
parent | Use tar to extract, while here, stagify (diff) |
Support stage, use bsdtar to extract
Notes
Notes:
svn path=/head/; revision=332687
Diffstat (limited to 'korean/hunspell')
-rw-r--r-- | korean/hunspell/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/korean/hunspell/Makefile b/korean/hunspell/Makefile index d98b710580b7..7d5935172fd2 100644 --- a/korean/hunspell/Makefile +++ b/korean/hunspell/Makefile @@ -14,7 +14,7 @@ LICENSE_COMB= dual BUILD_DEPENDS+= py*-lxml>=0:${PORTSDIR}/devel/py-lxml -USE_GMAKE= yes +USES= gmake USE_PYTHON_BUILD= yes USE_XZ= yes @@ -26,10 +26,9 @@ PROJECTHOST= spellcheck-ko MAKE_ENV+= PYTHON=${PYTHON_CMD} -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/ko.aff ${DATADIR}/ko_KR.aff - ${INSTALL_DATA} ${WRKSRC}/ko.dic ${DATADIR}/ko_KR.dic + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/ko.aff ${STAGEDIR}${DATADIR}/ko_KR.aff + ${INSTALL_DATA} ${WRKSRC}/ko.dic ${STAGEDIR}${DATADIR}/ko_KR.dic .include <bsd.port.mk> |