#!/bin/sh
# url: http://pank.org/scripts/
# description: newcj3cin install script for gcin
# comment: csh bash
# platform: linux

TABLE=NewCJ3.txt.in
NO_DOT_COMMA=1
NO_PTT=1
CIN_URL=http://cle.linux.org.tw/candyz/NewCJ3/004/NewCJ3.cin

if [ ! -f NewCJ3.cin ] ; then
    echo NewCJ3.cin not found, try to get from cle.linux.org.tw
    echo
    wget $CIN_URL
fi

if [ -f NewCJ3.cin ] ; then
    if [ $NO_DOT_COMMA = 1 ] ; then
        sed -i "7,8d" NewCJ3.cin
        sed -i -re "/\.|,/d" NewCJ3.cin
    fi
    [ $NO_PTT = 1 ] && sed -i "/^ptt;/d" NewCJ3.cin
    gcin2tab NewCJ3.cin
    mv NewCJ3.gtab /usr/share/gcin/table/
    [ -f /usr/share/gcin/table/NewCJ3.gtab ] && echo OK
fi