head	1.3;
access;
symbols
	RELEASE_5_2_1:1.2
	RELEASE_5_2_0:1.2
	RELEASE_4_9_0:1.2
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1
	RELEASE_4_3_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2004.01.08.03.44.21;	author linimon;	state dead;
branches;
next	1.2;

1.2
date	2002.12.21.18.48.37;	author ijliao;	state Exp;
branches;
next	1.1;

1.1
date	2001.03.11.09.41.55;	author keith;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Remove port chinese/abiword.  From the PR: it doesn't support Chinese and
doesn't have any patch now.  Maintainer keith@@FreeBSD.org had disappeared
for a long time.

PR:			ports/57183
Submitted by:		Statue <statue@@freebsd.sinica.edu.tw>
Not objected to within:	2 months
@
text
@#!/bin/sh

if [ "$2" = "PRE-INSTALL" ]; then
  exit 0
fi

PKGNAME=$1
PREFIX=${PKG_PREFIX}
TTFM=${PREFIX}/bin/ttfm.sh

FONTDIR=${PREFIX}/share/fonts/TrueType
FONTS="bkai00mp.ttf bsmi00lp.ttf gbsn00lp.ttf gkai00mp.ttf"

if [ ! -x $TTFM ]; then
    echo "$TTFM not found!"
    exit 1
fi

for f in $FONTS; do
    $TTFM --add gscjk $FONTDIR/$f
done

for f in $FONTS; do
    $TTFM --add abiword $FONTDIR/$f
done
@


1.2
log
@due to ttfm module ghostscript6 change to gscjk

PR:		42330
Submitted by:	Statue <statue@@freebsd.sinica.edu.tw>
@
text
@@


1.1
log
@New port:	zh-abiword

This meta version of AbiWord sets up the correct environment for BIG5/GB
users(though most works are done in chinese/ttfm).  Users can import a
Chinese Word97 document(just not too complex :p), edit it with an XIM
(eg. xcin25), then print it using Ghostscript.
@
text
@d20 1
a20 1
    $TTFM --add ghostscript6 $FONTDIR/$f
@

