diff options
author | kei <kei> | 2003-02-24 15:29:22 +0000 |
---|---|---|
committer | kei <kei> | 2003-02-24 15:29:22 +0000 |
commit | 0817223900e28494b72e0f954972a2deabeef7dd (patch) | |
tree | 7c4ec227f18deaf825d2e5dcd94ba41f3a3967fa /print/dvipdfmx/DEINSTALL | |
parent | ed97abfe37915dfdc64a287dda6b4ff837b93319 (diff) | |
download | pkgsrc-0817223900e28494b72e0f954972a2deabeef7dd.tar.gz |
Initial import of dvipdfmx-20021230 to the NetBSD packages collection.
It depends on newly imported teTeX2 package.
The dvipdfmx (formerly dvipdfm-cjk) project provides an eXtended version
of the dvipdfm, a DVI to PDF translator developed by Mark A. Wicks. The
primary goal of this project is to support multi-byte character
encodings and large character sets for East Asian languages by CID-keyed
font technology. The secondary goal is to support as many features as
pdfTeX developed by Han The Thanh. This project is a combined work of
the dvipdfm-jpn project by Shunsaku Hirata and its modified one,
dvipdfm-kor, by Jin-Hwan Cho.
It has many other features. For further info, visit the projects' web
site:
http://project.ktug.or.kr/dvipdfmx/
Diffstat (limited to 'print/dvipdfmx/DEINSTALL')
-rw-r--r-- | print/dvipdfmx/DEINSTALL | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/print/dvipdfmx/DEINSTALL b/print/dvipdfmx/DEINSTALL new file mode 100644 index 00000000000..5b802d4fbdd --- /dev/null +++ b/print/dvipdfmx/DEINSTALL @@ -0,0 +1,24 @@ +#!/bin/sh +# +# $NetBSD: DEINSTALL,v 1.1.1.1 2003/02/24 15:29:25 kei Exp $ + +TEXMF=@PREFIX@/share/texmf + +case ${STAGE} in +PRE-DEINSTALL) + ;; + +DEINSTALL) + ;; + +POST-DEINSTALL) + ${MV} $TEXMF/dvipdfm/config.orig $TEXMF/dvipdfm/config + @PREFIX@/bin/mktexlsr + ;; + +*) + ${ECHO} "Unexpected argument: ${STAGE}" + exit 1 + ;; + +esac |