diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-20 06:50:23 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-20 06:50:23 +0000 |
| commit | 386c7e9f4e18fce3d1d94fc3b1cfcb63b86ac4d8 (patch) | |
| tree | 946aaf6dc5a35ea60f3967d5dd6e7842093e8c19 | |
| parent | f336d4cd953a3452ff3db17296e8343915c5136a (diff) | |
Notes
| -rw-r--r-- | bin/csh/nls/Makefile | 8 | ||||
| -rw-r--r-- | bin/csh/nls/Makefile.inc | 11 | ||||
| -rw-r--r-- | bin/csh/nls/finnish/Makefile | 24 | ||||
| -rw-r--r-- | bin/csh/nls/french/Makefile | 25 | ||||
| -rw-r--r-- | bin/csh/nls/german/Makefile | 25 | ||||
| -rw-r--r-- | bin/csh/nls/greek/Makefile | 24 | ||||
| -rw-r--r-- | bin/csh/nls/italian/Makefile | 25 | ||||
| -rw-r--r-- | bin/csh/nls/ja/Makefile | 24 | ||||
| -rw-r--r-- | bin/csh/nls/spanish/Makefile | 24 |
9 files changed, 190 insertions, 0 deletions
diff --git a/bin/csh/nls/Makefile b/bin/csh/nls/Makefile new file mode 100644 index 0000000000000..74a41f7a463e1 --- /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 0000000000000..ff21f2fd24f68 --- /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 0000000000000..eb261b6696bda --- /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 0000000000000..06b3d8590d0c4 --- /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 0000000000000..f10961123af0b --- /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 0000000000000..af20ee2188b1d --- /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 0000000000000..5cf35642e995d --- /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 0000000000000..2b29fa296280c --- /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 0000000000000..c0bc15458e9ce --- /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> |
