head	1.3;
access;
symbols
	RELEASE_4_3_0:1.2
	RELEASE_4_2_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2001.06.22.13.04.49;	author keith;	state dead;
branches;
next	1.2;

1.2
date	2001.02.09.20.34.28;	author keith;	state Exp;
branches;
next	1.1;

1.1
date	2000.11.02.06.59.33;	author foxfair;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Nuke chinese/XFree86-aoutlibs port.  Since x11/XFree86-aoutlibs is now
3.3.6 and supports BIG5 Chinese, this port is no longer needed.
@
text
@#!/bin/sh

if [ -n "${BATCH}" -o -n "${PACKAGE_BUILDING}" ]; then
  exit 0
fi

env=/usr/bin/env
fgrep=/usr/bin/fgrep
ldconfig=/sbin/ldconfig
ld_so=/usr/libexec/ld.so
if [ x$2 = xINSTALL ]; then
	$env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lc.3'
	if [ $? -ne 0 -o ! -x $ld_so ]; then
		cat <<END
*********************************************************************

    There do not appear to be any a.out libraries on this
    machine.  Please install the compat22 distribution (via
    /stand/sysinstall) or build it as part of your 'make world'
    (see /etc/make.conf).

*********************************************************************
END
		exit 1
	fi
fi
exit 0;
@


1.2
log
@Fix install problems when zh-XFree86-aoutlibs is installed from
sysinstall at early install stage.

Submitted by:	Jimmy Olgeni <olgeni@@FreeBSD.org>
@
text
@@


1.1
log
@PR:		22479
Submitted by:	Jing-Tang Keith Jang <keith@@freebsd.sinica.edu.tw>
Introduce zh-XFree86-aoutlibs port.
From the description of the originator:

x11/XFree86-aoutlibs doesn't support Big5 encoding, so Big5 users
can't input Chinese using XIM in aout applications like Netscape.
This port installs 3.3.6 aout library binaries distributed by XFree86,
which solves the problem.
@
text
@d2 5
@

