# 1998 06 07 Mouse # Make sure $LOCALROOT is set : ${LOCALROOT:=/local}; export LOCALROOT # Unpack it gunzip < DIST/netpbm-1mar1994.p1.tar.gz | mtar xvfSFF - # Work in that directory cd netpbm-1mar94.p1 # Normalize permissions and check for weirdnesses mfind . ! -type d ! -type f -ls mfind . ! -perm 07000/0 -ls mfind . -type d -print | xargs chmod 755 mfind . -type f -print | xargs chmod rw.r-.r-. # Set up the Makefiles for i in . libtiff p?m do cp $i/Makefile.std $i/Makefile done # Apply some patches ../apply-patches . ../patches # Do the build make # Install it make install # Clean up cd .. rm -rf netpbm-1mar94.p1