diff options
author | max <max@FreeBSD.org> | 2003-04-14 12:18:44 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 2003-04-14 12:18:44 +0800 |
commit | ec683a45160fbcdf19a798349964771dfef2200f (patch) | |
tree | 91afc6845b9161f79145cc834d8469686726bc62 /japanese/ptex-sjis/pkg-deinstall | |
parent | 86d14a2ee976e718e2ec7597ed7744242d4da17d (diff) | |
download | freebsd-ports-gnome-ec683a45160fbcdf19a798349964771dfef2200f.tar.gz freebsd-ports-gnome-ec683a45160fbcdf19a798349964771dfef2200f.tar.zst freebsd-ports-gnome-ec683a45160fbcdf19a798349964771dfef2200f.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.
Diffstat (limited to 'japanese/ptex-sjis/pkg-deinstall')
-rw-r--r-- | japanese/ptex-sjis/pkg-deinstall | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/japanese/ptex-sjis/pkg-deinstall b/japanese/ptex-sjis/pkg-deinstall deleted file mode 100644 index c432da27777a..000000000000 --- a/japanese/ptex-sjis/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 |