diff options
Diffstat (limited to 'lang/sbcl/patches')
-rw-r--r-- | lang/sbcl/patches/patch-aa | 13 | ||||
-rw-r--r-- | lang/sbcl/patches/patch-ab | 22 | ||||
-rw-r--r-- | lang/sbcl/patches/patch-ac | 18 |
3 files changed, 53 insertions, 0 deletions
diff --git a/lang/sbcl/patches/patch-aa b/lang/sbcl/patches/patch-aa new file mode 100644 index 00000000000..72292597bec --- /dev/null +++ b/lang/sbcl/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/06/23 03:00:20 jonb Exp $ + +--- src/runtime/runtime.c.orig 2005-05-05 21:07:13.000000000 +0000 ++++ src/runtime/runtime.c +@@ -62,7 +62,7 @@ + #endif + + #ifndef SBCL_HOME +-#define SBCL_HOME "/usr/local/lib/sbcl/" ++#define SBCL_HOME "@PREFIX@/lib/sbcl/" + #endif + + diff --git a/lang/sbcl/patches/patch-ab b/lang/sbcl/patches/patch-ab new file mode 100644 index 00000000000..7927f3fd8bf --- /dev/null +++ b/lang/sbcl/patches/patch-ab @@ -0,0 +1,22 @@ +$NetBSD: patch-ab,v 1.1.1.1 2005/06/23 03:00:20 jonb Exp $ + +--- doc/sbcl.1.orig 2005-05-05 21:08:44.000000000 +0000 ++++ doc/sbcl.1 +@@ -472,7 +472,7 @@ place to look for support. + This variable controls where files like "sbclrc", "sbcl.core", and the + add-on "contrib" systems are searched for. If it is not set, then + sbcl sets it from a compile-time default location which is usually +-/usr/local/lib/sbcl/ but may have been changed e.g. by a third-party ++@PREFIX@/lib/sbcl/ but may have been changed e.g. by a third-party + packager. + + .SH FILES +@@ -512,7 +512,7 @@ been installed, the command + should give you access to the complete manual. Depending on your + installation it may also be available in HTML and PDF formats in eg. + .IP +-.B /usr/local/share/doc/sbcl/ ++.B @PREFIX@/share/doc/sbcl/ + .PP + See the SBCL homepage + .IP diff --git a/lang/sbcl/patches/patch-ac b/lang/sbcl/patches/patch-ac new file mode 100644 index 00000000000..c6147319766 --- /dev/null +++ b/lang/sbcl/patches/patch-ac @@ -0,0 +1,18 @@ +$NetBSD: patch-ac,v 1.1.1.1 2005/06/23 03:00:20 jonb Exp $ + +--- install.sh.orig 2004-10-21 13:00:23.000000000 +0000 ++++ install.sh +@@ -9,7 +9,7 @@ ensure_dirs () + done; + } + +-INSTALL_ROOT=${INSTALL_ROOT-/usr/local} +-MAN_DIR=${MAN_DIR-$INSTALL_ROOT/share/man} +-INFO_DIR=${INFO_DIR-$INSTALL_ROOT/share/info} ++INSTALL_ROOT=${INSTALL_ROOT-@PREFIX@} ++MAN_DIR=${MAN_DIR-$INSTALL_ROOT/man} ++INFO_DIR=${INFO_DIR-$INSTALL_ROOT/info} + DOC_DIR=${DOC_DIR-$INSTALL_ROOT/share/doc/sbcl} + + SBCL_SOURCE=`pwd` + if [ -n "$SBCL_HOME" -a "$INSTALL_ROOT/lib/sbcl" != "$SBCL_HOME" ];then |