summaryrefslogtreecommitdiffstats
path: root/bin/csh
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2000-04-20 06:50:23 +0000
committerobrien <obrien@FreeBSD.org>2000-04-20 06:50:23 +0000
commit0dc8fec632309a8b9d08a1678a1362ec0941c5a6 (patch)
treec12f9d581001b6f10893ec851c65a579e8fa5d06 /bin/csh
parent9df1598239c6fa5cf122d54e2e33c6cb285a2635 (diff)
downloadFreeBSD-src-0dc8fec632309a8b9d08a1678a1362ec0941c5a6.zip
FreeBSD-src-0dc8fec632309a8b9d08a1678a1362ec0941c5a6.tar.gz
Add NLS files. Finish and Greek are WIPs.
Submitted by: ache
Diffstat (limited to 'bin/csh')
-rw-r--r--bin/csh/nls/Makefile8
-rw-r--r--bin/csh/nls/Makefile.inc11
-rw-r--r--bin/csh/nls/finnish/Makefile24
-rw-r--r--bin/csh/nls/french/Makefile25
-rw-r--r--bin/csh/nls/german/Makefile25
-rw-r--r--bin/csh/nls/greek/Makefile24
-rw-r--r--bin/csh/nls/italian/Makefile25
-rw-r--r--bin/csh/nls/ja/Makefile24
-rw-r--r--bin/csh/nls/spanish/Makefile24
9 files changed, 190 insertions, 0 deletions
diff --git a/bin/csh/nls/Makefile b/bin/csh/nls/Makefile
new file mode 100644
index 0000000..74a41f7
--- /dev/null
+++ b/bin/csh/nls/Makefile
@@ -0,0 +1,8 @@
+# $FreeBSD$
+
+SUBDIR= french german italian ja spanish
+
+# We not ready for greek yet
+#SUBDIR+= finnish greek
+
+.include <bsd.subdir.mk>
diff --git a/bin/csh/nls/Makefile.inc b/bin/csh/nls/Makefile.inc
new file mode 100644
index 0000000..ff21f2f
--- /dev/null
+++ b/bin/csh/nls/Makefile.inc
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+GENCAT= gencat -new
+BASESRC= ${.CURDIR}/../../../../contrib/tcsh/nls
+
+.SUFFIXES: .msg .cat
+
+.msg.cat:
+ ${GENCAT} ${.TARGET} ${.IMPSRC}
+
+CLEANFILES+= tcsh.cat tcsh.msg
diff --git a/bin/csh/nls/finnish/Makefile b/bin/csh/nls/finnish/Makefile
new file mode 100644
index 0000000..eb261b6
--- /dev/null
+++ b/bin/csh/nls/finnish/Makefile
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= finnish
+DL=
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/french/Makefile b/bin/csh/nls/french/Makefile
new file mode 100644
index 0000000..06b3d85
--- /dev/null
+++ b/bin/csh/nls/french/Makefile
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= french
+DL= fr_BE.ISO_8859-1 fr_CA.ISO_8859-1 fr_CH.ISO_8859-1 fr_FR.ISO_8859-1 \
+ fr_BE.DIS_8859-15 fr_CA.DIS_8859-15 fr_CH.DIS_8859-15 fr_FR.DIS_8859-15
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/german/Makefile b/bin/csh/nls/german/Makefile
new file mode 100644
index 0000000..f109611
--- /dev/null
+++ b/bin/csh/nls/german/Makefile
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= german
+DL= de_AT.ISO_8859-1 de_CH.ISO_8859-1 de_DE.ISO_8859-1 \
+ de_AT.DIS_8859-15 de_CH.DIS_8859-15 de_DE.DIS_8859-15
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/greek/Makefile b/bin/csh/nls/greek/Makefile
new file mode 100644
index 0000000..af20ee2
--- /dev/null
+++ b/bin/csh/nls/greek/Makefile
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= greek
+DL= el_GR.ISO_8859-7
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/italian/Makefile b/bin/csh/nls/italian/Makefile
new file mode 100644
index 0000000..5cf3564
--- /dev/null
+++ b/bin/csh/nls/italian/Makefile
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= italian
+DL= it_IT.ISO_8859-1 it_CH.ISO_8859-1 \
+ it_IT.DIS_8859-15 it_CH.DIS_8859-15
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/ja/Makefile b/bin/csh/nls/ja/Makefile
new file mode 100644
index 0000000..2b29fa2
--- /dev/null
+++ b/bin/csh/nls/ja/Makefile
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= ja
+DL= ja_JP.EUC
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
diff --git a/bin/csh/nls/spanish/Makefile b/bin/csh/nls/spanish/Makefile
new file mode 100644
index 0000000..c0bc154
--- /dev/null
+++ b/bin/csh/nls/spanish/Makefile
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+.include "${.CURDIR}/../Makefile.inc"
+
+NL= spanish
+DL= es_ES.ISO_8859-1 es_ES.DIS_8859-15
+
+.PATH: ${BASESRC}/${NL}
+
+all: tcsh.cat
+
+tcsh.cat: tcsh.msg
+
+tcsh.msg: set[0-9]*
+ cat ${BASESRC}/${NL}/set[0-9] \
+ ${BASESRC}/${NL}/set[0-9][0-9] > ${.TARGET}
+
+install:
+.for i in ${DL}
+ ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+ tcsh.cat ${DESTDIR}${NLSDIR}/$i/tcsh.cat
+.endfor
+
+.include <bsd.obj.mk>
OpenPOWER on IntegriCloud