diff options
Diffstat (limited to 'net/tinyfugue/patches')
-rw-r--r-- | net/tinyfugue/patches/patch-ab | 29 | ||||
-rw-r--r-- | net/tinyfugue/patches/patch-ac | 31 |
2 files changed, 60 insertions, 0 deletions
diff --git a/net/tinyfugue/patches/patch-ab b/net/tinyfugue/patches/patch-ab new file mode 100644 index 00000000000..399ac4cf508 --- /dev/null +++ b/net/tinyfugue/patches/patch-ab @@ -0,0 +1,29 @@ +--- unix/Config.orig Fri Apr 4 11:51:58 1997 ++++ unix/Config Mon Jun 16 18:18:29 1997 +@@ -33,9 +33,12 @@ + # even if an old version is currently in use. You can remove + # the old version manually later when it is no longer in use. + +-# TF="/usr/local/bin/tf-${TFVER}" +-# LIBDIR="/usr/local/lib/tf-${TFVER}-lib" +-# SYMLINK="/usr/local/bin/tf" ++if [ -z "${PREFIX}" ]; then ++ PREFIX="/usr/local" ++fi ++TF="${PREFIX}/bin/tf-${TFVER}" ++LIBDIR="${PREFIX}/lib/tf-${TFVER}-lib" ++SYMLINK="${PREFIX}/bin/tf" + + + ### Manual Page. +@@ -44,8 +47,8 @@ + # uses nroff format; set MANTYPE=cat if your man uses pre-formatted + # vt100 "catman" pages. Default is "cat". + +-# MANTYPE="nroff" +-# MANPAGE="/usr/local/man/man1/tf.1" ++MANTYPE="nroff" ++MANPAGE="${PREFIX}/man/man1/tf.1" + + + ### Flags. diff --git a/net/tinyfugue/patches/patch-ac b/net/tinyfugue/patches/patch-ac new file mode 100644 index 00000000000..45945169ba6 --- /dev/null +++ b/net/tinyfugue/patches/patch-ac @@ -0,0 +1,31 @@ +--- unix/tfconfig.orig Fri Apr 4 11:51:58 1997 ++++ unix/tfconfig Mon Jun 16 18:00:45 1997 +@@ -211,17 +211,17 @@ + echo + + echo 'To change these locations type "n" now and edit the unix/Config file.' +-while [ -z "$ans" ]; do +- echo 'Continue? (y/n)' +- read ans; +- case "$ans" in +- y|Y) break ;; +- n|N) exit 1 ;; +- *) ans= +- echo 'Please answer "y" or "n".' +- ;; +- esac +-done ++# while [ -z "$ans" ]; do ++# echo 'Continue? (y/n)' ++# read ans; ++# case "$ans" in ++# y|Y) break ;; ++# n|N) exit 1 ;; ++# *) ans= ++# echo 'Please answer "y" or "n".' ++# ;; ++# esac ++# done + echo; echo + + echo "#define LIBDIR \"${LIBDIR}\"" >&4 |