aboutsummaryrefslogtreecommitdiff
path: root/share/numericdef
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2001-02-09 21:17:39 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2001-02-09 21:17:39 +0000
commit5f798cfbd0576677210cddf5572bd878c368c4b9 (patch)
tree167ce7728e111ce42281e57cd41fe55f86832963 /share/numericdef
parent05c9049670bafe6993e164fa64eb2752d97c41f6 (diff)
downloadsrc-5f798cfbd0576677210cddf5572bd878c368c4b9.tar.gz
src-5f798cfbd0576677210cddf5572bd878c368c4b9.zip
Add links:
en_CA, en_GB => en_US en_AU, en_NZ => en_GB fr_CA, fr_CH => fr_FR There are separate links for `GB English' and `US English' because I anticipate users of the former to potentially want a thousands_sep of " " (to match modern British style) rather than ",". XXX What about en_IE? ISO_8859-15?
Notes
Notes: svn path=/head/; revision=72259
Diffstat (limited to 'share/numericdef')
-rw-r--r--share/numericdef/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile
index d786f2200877..897b3a8560e3 100644
--- a/share/numericdef/Makefile
+++ b/share/numericdef/Makefile
@@ -16,6 +16,12 @@ LOCALES= af_ZA.ISO_8859-1 \
sv_SE.ISO_8859-1
LOCALEDIR= ${DESTDIR}/usr/share/locale
+USENGLISH= en_US.ISO_8859-1
+USENGLISHLINKS= en_CA.ISO_8859-1 en_GB.ISO_8859-1
+GBENGLISH= en_GB.ISO_8859-1
+GBENGLISHLINKS= en_AU.ISO_8859-1 en_NZ.ISO_8859-1
+FRENCH= fr_FR.ISO_8859-1
+FRENCHLINKS= fr_CA.ISO_8859-1 fr_CH.ISO_8859-1
.SUFFIXES: .src .out
@@ -29,5 +35,14 @@ afterinstall:
${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} ${lang}.out \
${LOCALEDIR}/${lang}/LC_NUMERIC
.endfor
+.for link in ${USENGLISHLINKS}
+ ln -sf ../${USENGLISH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC
+.endfor
+.for link in ${GBENGLISHLINKS}
+ ln -sf ../${GBENGLISH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC
+.endfor
+.for link in ${FRENCHLINKS}
+ ln -sf ../${FRENCH}/LC_NUMERIC ${LOCALEDIR}/${link}/LC_NUMERIC
+.endfor
.include <bsd.prog.mk>