diff options
| author | Alexey Zelkin <phantom@FreeBSD.org> | 2001-02-08 17:33:19 +0000 |
|---|---|---|
| committer | Alexey Zelkin <phantom@FreeBSD.org> | 2001-02-08 17:33:19 +0000 |
| commit | a322eaa8a9d3d52bb2b1344746ee4d1b0e61e6d3 (patch) | |
| tree | e7d50b72c553699219decac9f3a1bca10d8fc3e6 /share/numericdef | |
| parent | 2eeaef6eea666dc51e24166df8e278f8e42b6896 (diff) | |
Notes
Diffstat (limited to 'share/numericdef')
| -rw-r--r-- | share/numericdef/Makefile | 24 | ||||
| -rw-r--r-- | share/numericdef/en_US.ISO8859-1.src | 12 | ||||
| -rw-r--r-- | share/numericdef/en_US.ISO_8859-1.src | 12 | ||||
| -rw-r--r-- | share/numericdef/ru_RU.KOI8-R.src | 12 |
4 files changed, 60 insertions, 0 deletions
diff --git a/share/numericdef/Makefile b/share/numericdef/Makefile new file mode 100644 index 000000000000..466f1ccfb522 --- /dev/null +++ b/share/numericdef/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +NOMAN=YES +CLEANFILES+= ${LOCALES:S/$/.out/g} + +LOCALES= en_US.ISO_8859-1 \ + ru_RU.KOI8-R + +LOCALEDIR= ${DESTDIR}/usr/share/locale + +.SUFFIXES: .src .out + +.src.out: + grep -v '^#' < ${.IMPSRC} > ${.TARGET} + +all: ${LOCALES:S/$/.out/g} + +afterinstall: + for l in ${LOCALES}; do \ + ${INSTALL} ${COPY} -m 644 -o ${BINOWN} -g ${BINGRP} $$l.out \ + ${LOCALEDIR}/$$l/LC_NUMERIC; \ + done + +.include <bsd.prog.mk> diff --git a/share/numericdef/en_US.ISO8859-1.src b/share/numericdef/en_US.ISO8859-1.src new file mode 100644 index 000000000000..3518c0ed4794 --- /dev/null +++ b/share/numericdef/en_US.ISO8859-1.src @@ -0,0 +1,12 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# decimal_point +. +# thousands_sep +, +# grouping +3;3 +# EOF diff --git a/share/numericdef/en_US.ISO_8859-1.src b/share/numericdef/en_US.ISO_8859-1.src new file mode 100644 index 000000000000..3518c0ed4794 --- /dev/null +++ b/share/numericdef/en_US.ISO_8859-1.src @@ -0,0 +1,12 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# decimal_point +. +# thousands_sep +, +# grouping +3;3 +# EOF diff --git a/share/numericdef/ru_RU.KOI8-R.src b/share/numericdef/ru_RU.KOI8-R.src new file mode 100644 index 000000000000..20911c971968 --- /dev/null +++ b/share/numericdef/ru_RU.KOI8-R.src @@ -0,0 +1,12 @@ +# $FreeBSD$ +# +# WARNING: spaces may be essential at the end of lines +# WARNING: empty lines are essential too +# +# decimal_point +, +# thousands_sep +. +# grouping +3;3 +# EOF |
