aboutsummaryrefslogtreecommitdiff
path: root/japanese/ptex-jis/pkg-deinstall
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>2003-04-14 04:18:44 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>2003-04-14 04:18:44 +0000
commit5c8b35e4e62ecb5bcc46e63e893b829638712fb4 (patch)
treea49399ba293475316998292fd4497d1442c6fe22 /japanese/ptex-jis/pkg-deinstall
parentddb8bdf7a4d4e86f4015646c5dcc4dde815a6684 (diff)
downloadports-5c8b35e4e62ecb5bcc46e63e893b829638712fb4.tar.gz
ports-5c8b35e4e62ecb5bcc46e63e893b829638712fb4.zip
Upgrade to 3.1.2.
Now charset to be used can be specified at runtime, instead of compile time. Due to this change, charset specific ports are being removed, and pTeX now consists of two ports: ptex-base and ptex. Ptex-base is what used to be ptex-common, which installs non-Japanese portion of the system, and ptex is what used to be the charset specific portion, which installs Japanese specific files. Thus, ptex-common and ptex-euc are renamed to ptex-base and ptex respectively, and ptex-jis and ptex-sjis are being removed.
Notes
Notes: svn path=/head/; revision=78929
Diffstat (limited to 'japanese/ptex-jis/pkg-deinstall')
-rw-r--r--japanese/ptex-jis/pkg-deinstall14
1 files changed, 0 insertions, 14 deletions
diff --git a/japanese/ptex-jis/pkg-deinstall b/japanese/ptex-jis/pkg-deinstall
deleted file mode 100644
index c432da27777a..000000000000
--- a/japanese/ptex-jis/pkg-deinstall
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-# Preserve files installed by ptex-common, or other package/application.
-#
-files="${PKG_PREFIX}/bin/pltotf ${PKG_PREFIX}/bin/tftopl ${PKG_PREFIX}/share/texmf/web2c/texmf.cnf ${PKG_PREFIX}/share/texmf/ls-R"
-
-if [ "$2" != "POST-DEINSTALL" ]; then
- exit;
-fi
-
-for f in ${files}; do
- if [ -f $f.old ]; then
- mv $f.old $f
- fi
-done