diff --git a/bin/csh/nls/Makefile b/bin/csh/nls/Makefile new file mode 100644 index 000000000000..74a41f7a463e --- /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 diff --git a/bin/csh/nls/Makefile.inc b/bin/csh/nls/Makefile.inc new file mode 100644 index 000000000000..ff21f2fd24f6 --- /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 000000000000..eb261b6696bd --- /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 diff --git a/bin/csh/nls/french/Makefile b/bin/csh/nls/french/Makefile new file mode 100644 index 000000000000..06b3d8590d0c --- /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 diff --git a/bin/csh/nls/german/Makefile b/bin/csh/nls/german/Makefile new file mode 100644 index 000000000000..f10961123af0 --- /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 diff --git a/bin/csh/nls/greek/Makefile b/bin/csh/nls/greek/Makefile new file mode 100644 index 000000000000..af20ee2188b1 --- /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 diff --git a/bin/csh/nls/italian/Makefile b/bin/csh/nls/italian/Makefile new file mode 100644 index 000000000000..5cf35642e995 --- /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 diff --git a/bin/csh/nls/ja/Makefile b/bin/csh/nls/ja/Makefile new file mode 100644 index 000000000000..2b29fa296280 --- /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 diff --git a/bin/csh/nls/spanish/Makefile b/bin/csh/nls/spanish/Makefile new file mode 100644 index 000000000000..c0bc15458e9c --- /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