pkgsrc/graphics/tiff/INSTALL.OpenWindows
reed d4d8ee5999 Update to tiff-3.6.1. This is many changes and fixes.
The main changes include:
new utility tiff2pdf for converting a TIFF image to a PDF document
new utility raw2tiff for converting raw rasters into TIFF files
new tiff2ps options
new fax2tiff options
bug fixes for LZW, JPEG and OJPEG compression.
more documentation
and upgrade to libtiff.so.3.6
other changes at http://www.libtiff.org/v3.6.0.html

Removed patch-ab because
html/Makefile.in: added missing images per bug 92
Removed patch-ag because
http://bugzilla.remotesensing.org/show_bug.cgi?id=315

Other changes:
HOMEPAGE changed due to libtiff.org has been hijacked
INSTALL.OpenWindows updated (thank you to dieter)

tiff is backward compatible with older version,
but buildlink2.mk version is increased because libtiff
was broken for amd64 support.
2004-01-03 18:33:24 +00:00

25 lines
497 B
Text

# $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