summaryrefslogtreecommitdiff
path: root/graphics/tiff/INSTALL.OpenWindows
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/tiff/INSTALL.OpenWindows')
-rw-r--r--graphics/tiff/INSTALL.OpenWindows25
1 files changed, 0 insertions, 25 deletions
diff --git a/graphics/tiff/INSTALL.OpenWindows b/graphics/tiff/INSTALL.OpenWindows
deleted file mode 100644
index 8efe20d9988..00000000000
--- a/graphics/tiff/INSTALL.OpenWindows
+++ /dev/null
@@ -1,25 +0,0 @@
-# $NetBSD: INSTALL.OpenWindows,v 1.4 2004/01/03 18:33:24 reed Exp $
-
-LIBTIFF="libtiff.so.3 libtiff.so"
-
-case ${STAGE} in
-POST-INSTALL)
- for lib in ${LIBTIFF}; do
- src="${PKG_PREFIX}/lib/${lib}"
- dest="${X11BASE}/lib/${lib}"
- if [ -f ${dest} ]; then
- ${MV} -f ${dest} ${dest}.openwin
- ${LN} -sf ${src} ${dest}
- fi
- done
- ;;
-
-POST-DEINSTALL)
- for lib in ${LIBTIFF}; do
- file="${X11BASE}/lib/${lib}"
- if [ -f ${file}.openwin ]; then
- ${MV} -f ${file}.openwin ${file}
- fi
- done
- ;;
-esac