components/timezone/do_pofile.sh
author Nobutomo Nakano <nobutomo.nakano@oracle.com>
Fri, 10 Aug 2012 17:42:31 -0700
branchs11-sru
changeset 2324 41d24323d87b
parent 454 1ef5e4f29411
permissions -rw-r--r--
7185449 update zoneinfo timezones to 2012d (Morocco)

#! /bin/sh
#
# Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
#

#
# Create messages file for zone_sun.tab, country.tab, continent.tab
#
AWK=/usr/bin/nawk
ECHO=/usr/bin/echo

ZONE_SUN_FILE=zone_sun.tab
COUNTRY_FILE=country.tab
CONTINENT_FILE=continent.tab

DOMAIN=SUNW_OST_ZONEINFO

$ECHO "domain \"$DOMAIN\""

$ECHO "#"
$ECHO "# These files are located in components/timezone."
$ECHO "#"

$ECHO "#"
$ECHO "# continent.tab"
$ECHO "#"

# Get 2nd column of continent.tab file
$AWK -F'\t' \
	' 
	/^#/ { next }
	{ 
		printf "msgid \"%s\"\n", $2 
		printf "msgstr \"\"\n"
	}
	' < $CONTINENT_FILE

$ECHO "#"
$ECHO "# country.tab"
$ECHO "#"

# Get 2nd column of country.tab file
$AWK -F'\t' \
	' 
	/^#/ { next }
	{ 
		printf "msgid \"%s\"\n", $2 
		printf "msgstr \"\"\n"
	}
	' < $COUNTRY_FILE


$ECHO "#"
$ECHO "# zone.tab"
$ECHO "#"

# Get 5th column (if it exists) of zone_sun.tab file
$AWK -F'\t' \
	' 
	/^#/ { next }
	{ 
		if (NF > 4) {
			printf "msgid \"%s\"\n", $5 
			printf "msgstr \"\"\n"
		}
	}
	' < $ZONE_SUN_FILE