1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/japanese/pgp.language/scripts/pgp.config.l10n.sh
Steve Price 6c77e2cb88 Japanese languagee module for PGP.
PR:           3928
Submitted by: Hironori Ikura <hikura@kaisei.org>
1998-02-23 20:19:55 +00:00

38 lines
806 B
Bash

#!/bin/sh
#
# pgp.config.l10n.sh - modify PGP configuration file to localization.
#
# Copyright(C) 1997 Hironori Ikura <hikura@tcc.co.jp>
#
# usage: pgp.config.l10n.sh <srcdir> <lang> <charset>
# ex. pgp.config.l10n.sh /usr/ports/japanese/pgp/work ja noconv
#
if [ $# -ne 3 ]; then
echo "usage: $0 <srcdir> <lang> <charset>" 1>&2
echo " ex. $0 /usr/ports/japanese/pgp/work ja noconv" 1>&2
exit 1
fi
wrkdir=$1
lang=$2
charset=$3
config=$wrkdir/config.txt
if [ ! -f "$config" ]; then
echo "No original config.txt is found." 1>&2
echo "Abort processing." 1>&2
exit 1
fi
mv $config $config.bak
sed -e 's/^[Ll]anguage *= *[a-z][a-z]$/Language = '$lang'/' \
-e 's/^[ #]*CharSet *= *[A-Za-z0-9]*$/CharSet = '$charset'/' \
$config.bak > $config
chown bin.bin $config
chmod 444 $config
exit 0