summaryrefslogtreecommitdiff
path: root/print/dvipdfmx/INSTALL
diff options
context:
space:
mode:
authorkei <kei@pkgsrc.org>2003-02-24 15:29:22 +0000
committerkei <kei@pkgsrc.org>2003-02-24 15:29:22 +0000
commitdc00ee1c91af64a91bf3cb4e0f5015774e2aace6 (patch)
tree7c4ec227f18deaf825d2e5dcd94ba41f3a3967fa /print/dvipdfmx/INSTALL
parentb28c04efc085c1ef3b6c56b1a576424663e57ed5 (diff)
downloadpkgsrc-dc00ee1c91af64a91bf3cb4e0f5015774e2aace6.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/INSTALL')
-rw-r--r--print/dvipdfmx/INSTALL26
1 files changed, 26 insertions, 0 deletions
diff --git a/print/dvipdfmx/INSTALL b/print/dvipdfmx/INSTALL
new file mode 100644
index 00000000000..7a1472765f0
--- /dev/null
+++ b/print/dvipdfmx/INSTALL
@@ -0,0 +1,26 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 2003/02/24 15:29:25 kei Exp $
+
+TEXMF=@PREFIX@/share/texmf
+
+case ${STAGE} in
+PRE-INSTALL)
+ ${MV} $TEXMF/dvipdfm/config $TEXMF/dvipdfm/config.orig
+ ;;
+
+POST-INSTALL)
+ cd $TEXMF/dvipdfm/CMap
+ # @PREFIX@/share/Adobe/Resource/CMap/*
+ for file in ../../../Adobe/Resource/CMap/*; do
+ ${LN} -s $file `${BASENAME} $file`
+ done
+ @PREFIX@/bin/mktexlsr
+ ;;
+
+*)
+ ${ECHO} "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+
+esac