diff options
author | bapt <bapt@FreeBSD.org> | 2013-09-24 05:24:50 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-09-24 05:24:50 +0800 |
commit | 31b6e287239e19a9384f053f2e6acdc5bafb89c3 (patch) | |
tree | 7db355eb7312ac7db5dad8b64e5c43e7e33e58b4 /french | |
parent | e7934694c6689941446188a3632c1df1b2e25efd (diff) | |
download | freebsd-ports-gnome-31b6e287239e19a9384f053f2e6acdc5bafb89c3.tar.gz freebsd-ports-gnome-31b6e287239e19a9384f053f2e6acdc5bafb89c3.tar.zst freebsd-ports-gnome-31b6e287239e19a9384f053f2e6acdc5bafb89c3.zip |
Support stage
Diffstat (limited to 'french')
-rw-r--r-- | french/hunspell/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/french/hunspell/Makefile b/french/hunspell/Makefile index 886d25e08678..cd97fefcbbab 100644 --- a/french/hunspell/Makefile +++ b/french/hunspell/Makefile @@ -24,14 +24,13 @@ PLIST_FILES+= %%DATADIR%%/${ALIAS}.aff \ %%DATADIR%%/${ALIAS}.dic .endfor -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR}/ - ${INSTALL_DATA} ${WRKSRC}/fr-moderne.aff ${DATADIR}/fr_FR.aff - ${INSTALL_DATA} ${WRKSRC}/fr-moderne.dic ${DATADIR}/fr_FR.dic + ${MKDIR} ${STAGEDIR}${DATADIR}/ + ${INSTALL_DATA} ${WRKSRC}/fr-moderne.aff ${STAGEDIR}${DATADIR}/fr_FR.aff + ${INSTALL_DATA} ${WRKSRC}/fr-moderne.dic ${STAGEDIR}${DATADIR}/fr_FR.dic .for ALIAS in ${FRALIASES} - ${LN} -s fr_FR.aff ${DATADIR}/${ALIAS}.aff - ${LN} -s fr_FR.dic ${DATADIR}/${ALIAS}.dic + ${LN} -sf fr_FR.aff ${STAGEDIR}${DATADIR}/${ALIAS}.aff + ${LN} -sf fr_FR.dic ${STAGEDIR}${DATADIR}/${ALIAS}.dic .endfor .include <bsd.port.mk> |