Sophie

Sophie

distrib > Mandriva > 7.1 > i586 > by-pkgid > e6e26e510a5ac42258ef8d6718f9c912 > scriptlet

indexhtml-7.1-2mdk.noarch.rpm

POSTIN

/bin/sh
if [ -r /etc/sysconfig/i18n ] ; then
	. /etc/sysconfig/i18n
	if [ -n "$LANGUAGE" ]; then
		LISTLANG="`echo $LANGUAGE | tr ':' ' '`" ;
	else
		if [ -n "$LANG" ]; then
			LISTLANG="$LANG"
		else
			LISTLANG=en
		fi
	fi
	for i in $LISTLANG
	do
		if [ -r /usr/doc/HTML/index-$i.html ]; then
			cat /usr/doc/HTML/index-$i.html > \
				/usr/doc/HTML/index.html
			break
		else
			lang=`echo $i | cut -b-2`
			if [ -r /usr/doc/HTML/index-$lang.html ]; then
				cat /usr/doc/HTML/index-$lang.html > \
					/usr/doc/HTML/index.html
				break;
		
			fi
		fi
	done
fi