7d8f797b72
MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
162 lines
4.6 KiB
Makefile
162 lines
4.6 KiB
Makefile
# $Id: Makefile,v 9.0 2012/10/19 15:13:11 zy Exp $
|
|
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
V= ${.CURDIR}/../../../contrib/nvi
|
|
|
|
CAT= dutch english french german polish ru_RU.KOI8-R spanish swedish \
|
|
uk_UA.KOI8-U zh_CN.GB2312
|
|
|
|
SCAN= ${V}/cl/*.c ${V}/common/*.c ${V}/ex/*.c ${V}/vi/*.c
|
|
|
|
.PATH: ${V}/catalog
|
|
|
|
all: dump
|
|
|
|
build-tools: dump
|
|
|
|
# Helper since iconv is non trivial to make a build tool
|
|
utf8convert:
|
|
.for c in dutch french german spanish swedish
|
|
iconv -f ISO8859-1 -t UTF-8 $V/catalog/$c.base > $c.UTF-8.base
|
|
.endfor
|
|
iconv -f ISO8859-2 -t UTF-8 $V/catalog/polish.base > polish.UTF-8.base
|
|
iconv -f GB2312 -t UTF-8 $V/catalog/zh_CN.GB2312.base > zh_CN.UTF-8.base
|
|
iconv -f KOI8-R -t UTF-8 $V/catalog/ru_RU.KOI8-R.base > ru_RU.UTF-8.base
|
|
iconv -f KOI8-U -t UTF-8 $V/catalog/uk_UA.KOI8-U.base > uk_UA.UTF-8.base
|
|
|
|
.for c in dutch french german polish spanish swedish zh_CN ru_RU uk_UA
|
|
CAT+= $c.UTF-8
|
|
.endfor
|
|
|
|
.for c in ${CAT}
|
|
${c}: ${c}.base
|
|
echo "... $c"; \
|
|
rm -f $c; \
|
|
env LANG=C sort -u ${.ALLSRC} | \
|
|
awk '{ \
|
|
if ($$1 == 1) { \
|
|
print "\nMESSAGE NUMBER 1 IS NOT LEGAL"; \
|
|
exit 1; \
|
|
} \
|
|
if (++nline > $$1) { \
|
|
print "DUPLICATE MESSAGE NUMBER " $$1; \
|
|
exit 1; \
|
|
} \
|
|
print $$0; \
|
|
}' | \
|
|
sed -e '1s/^/$$set 1~$$quote "~/; 1y/~/\n/' | \
|
|
gencat $c /dev/stdin; \
|
|
chmod 444 $c; \
|
|
if grep DUPLICATE $c > /dev/null; then \
|
|
grep DUPLICATE $@; \
|
|
fi; \
|
|
if grep 'NOT LEGAL' $c > /dev/null; then \
|
|
grep 'NOT LEGAL' $@; \
|
|
fi
|
|
.endfor
|
|
|
|
CHK= dutch.check english.check french.check german.check \
|
|
polish.check ru_RU.KOI8-R.check spanish.check swedish.check \
|
|
uk_UA.KOI8-U.check zh_CN.GB2312.check
|
|
check: ${CHK}
|
|
.for c in ${CAT}
|
|
${c}.check: ${c}.base
|
|
@echo "... $c"; \
|
|
f=${.ALLSRC:S;.base$;;}; \
|
|
(echo "Unused message id's (this is okay):"; \
|
|
awk '{ \
|
|
while (++nline < $$1) \
|
|
printf "%03d\n", nline; \
|
|
}' < $$f.base; \
|
|
echo =========================; \
|
|
echo "MISSING ERROR MESSAGES (Please add!):"; \
|
|
awk '{print $$1}' < $$f.base | sort -u > __ck1; \
|
|
awk '{print $$1}' < english.base | sort -u > __ck2; \
|
|
comm -13 __ck1 __ck2; \
|
|
echo =========================; \
|
|
echo "Extra error messages (just delete them):"; \
|
|
comm -23 __ck1 __ck2; \
|
|
echo =========================; \
|
|
echo "MESSAGES WITH THE SAME MESSAGE ID's (FIX!):"; \
|
|
for j in \
|
|
`sed '/^$$/d' < $$f.base | LANG=C sort -u | \
|
|
awk '{print $$1}' | uniq -d`; do \
|
|
egrep $$j $$f.base; \
|
|
done; \
|
|
echo =========================; \
|
|
echo "Duplicate messages, both id and message (this is okay):"; \
|
|
sed '/^$$/d' < $$f.base | LANG=C sort | uniq -c | \
|
|
awk '$$1 != 1 { print $$0 }' | sort -n; \
|
|
echo =========================) > $c
|
|
.endfor
|
|
|
|
english.base: dump ${SCAN} #Makefile
|
|
./dump ${SCAN} |\
|
|
sed -e '/|/!d' \
|
|
-e 's/|/ "/' \
|
|
-e 's/^"//' |\
|
|
sort -nu > $@
|
|
|
|
|
|
dump: dump.c
|
|
${CC} -o ${.TARGET} ${.ALLSRC}
|
|
|
|
CLEANFILES+= dump ${CAT} english.base *.check __ck1 __ck2
|
|
|
|
CATALOGS= ${CAT}
|
|
NLLINKS= nl_NL
|
|
ENLINKS= en_AU en_CA en_GB en_NZ en_US
|
|
FRLINKS= fr_BE fr_CA fr_CH fr_FR
|
|
DELINKS= de_AT de_CH de_DE
|
|
ESLINKS= es_ES
|
|
SVLINKS= sv_SE
|
|
PLLINKS= pl_PL
|
|
|
|
FILES= ${CATALOGS}
|
|
FILESDIR= ${SHAREDIR}/vi/catalog
|
|
SYMLINKS=
|
|
.for l in ${NLLINKS}
|
|
SYMLINKS+= dutch ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= dutch ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= dutch.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
.for l in ${ENLINKS}
|
|
SYMLINKS+= english ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= english ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= english ${FILESDIR}/$l.US-ASCII
|
|
SYMLINKS+= english ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
SYMLINKS+= english ${FILESDIR}/POSIX
|
|
SYMLINKS+= english ${FILESDIR}/C
|
|
.for l in ${FRLINKS}
|
|
SYMLINKS+= french ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= french ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= french.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
.for l in ${DELINKS}
|
|
SYMLINKS+= german ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= german ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= german.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
.for l in ${ESLINKS}
|
|
SYMLINKS+= spanish ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= spanish ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= spanish.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
.for l in ${SVLINKS}
|
|
SYMLINKS+= swedish ${FILESDIR}/$l.ISO8859-1
|
|
SYMLINKS+= swedish ${FILESDIR}/$l.ISO8859-15
|
|
SYMLINKS+= swedish.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
.for l in ${PLLINKS}
|
|
SYMLINKS+= polish ${FILESDIR}/$l.ISO8859-2
|
|
SYMLINKS+= polish.UTF-8 ${FILESDIR}/$l.UTF-8
|
|
.endfor
|
|
SYMLINKS+= zh_CN.GB2312 ${FILESDIR}/zh_CN.GB18030
|
|
SYMLINKS+= zh_CN.GB2312 ${FILESDIR}/zh_CN.GBK
|
|
SYMLINKS+= zh_CN.GB2312 ${FILESDIR}/zh_CN.eucCN
|
|
|
|
.include <bsd.prog.mk>
|