pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

sbcl: Rename to sbcl-git



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sat Jun 11 17:31:36 2016 +0200
Changeset:	11b4d799bad7622e9972082711ff3226dffc4c78

Added Files:
	sbcl-git/DESCR
	sbcl-git/Makefile
	sbcl-git/PLIST
	sbcl-git/distinfo
	sbcl-git/patches/patch-ab
	sbcl-git/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8
Removed Files:
	sbcl/DESCR
	sbcl/Makefile
	sbcl/PLIST
	sbcl/distinfo
	sbcl/patches/patch-ab
	sbcl/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8

Log Message:
sbcl: Rename to sbcl-git

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=11b4d799bad7622e9972082711ff3226dffc4c78

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 sbcl-git/DESCR                                     |   4 +
 sbcl-git/Makefile                                  | 101 +++++++++++++++++++++
 sbcl-git/PLIST                                     |  41 +++++++++
 sbcl-git/distinfo                                  |   7 ++
 sbcl-git/patches/patch-ab                          |  22 +++++
 ...revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8 |  15 +++
 sbcl/DESCR                                         |   4 -
 sbcl/Makefile                                      | 101 ---------------------
 sbcl/PLIST                                         |  41 ---------
 sbcl/distinfo                                      |   7 --
 sbcl/patches/patch-ab                              |  22 -----
 ...revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8 |  15 ---
 12 files changed, 190 insertions(+), 190 deletions(-)

diffs:
diff --git a/sbcl-git/DESCR b/sbcl-git/DESCR
new file mode 100644
index 0000000..dd38ebe
--- /dev/null
+++ b/sbcl-git/DESCR
@@ -0,0 +1,4 @@
+Steel Bank Common Lisp (SBCL) is an Open Source complier and runtime
+system for ANSI Common Lisp.  It provides an interactive environment
+including an integrated native compiler, a debugger, and many
+extensions.
diff --git a/sbcl-git/Makefile b/sbcl-git/Makefile
new file mode 100644
index 0000000..d251e1c
--- /dev/null
+++ b/sbcl-git/Makefile
@@ -0,0 +1,101 @@
+# $NetBSD: Makefile,v 1.43 2014/10/09 14:06:30 thomasklausner Exp $
+
+DISTNAME=		${PKGNAME_NOREV}-source
+PKGNAME=		sbcl-1.0.55
+CATEGORIES=		lang
+MASTER_SITES=		${MASTER_SITE_SOURCEFORGE:=sbcl/}
+EXTRACT_SUFX=		.tar.bz2
+
+MAINTAINER=		asau%users.sourceforge.net@localhost
+HOMEPAGE=		http://www.sbcl.org/
+COMMENT=		SBCL, a Common Lisp implementation
+
+# SBCL creates a new release with minor updates and fixes every
+# month.  The maintainer of this package does not have the time
+# to build, test, update, etc. this package that often.  If you
+# would like a newer (or older) version, this works very often:
+# 1) change the PKGNAME variable above as desired
+# 2) make fetch && make makesum && make package
+
+USE_TOOLS+=		gmake gtar:run patch
+
+WRKSRC=			${WRKDIR}/${PKGNAME_NOREV}
+
+.include "../../mk/bsd.prefs.mk"
+
+#
+# Bootstrap section.
+#
+# SBCL needs an existing Common Lisp system to build it...
+# Currently allowed systems are CLISP, CMUCL, OpenMCL, and SBCL itself.
+#
+#  If SBCL is installed in an unusual place when trying to build this
+#  package, you may need to set the full path in SBCL_BOOT_SYSTEM and
+#  build the package with "SBCL_HOME=/path/to/SBCL/core/image/ make"
+
+#SBCL_BOOT_SYSTEM=	clisp			# CLisp
+#SBCL_BOOT_SYSTEM=	"lisp -batch"		# CMUCL
+#SBCL_BOOT_SYSTEM=	"openmcl --batch"	# OpenMCL
+#SBCL_BOOT_SYSTEM=	sbcl			# SBCL
+
+.if !defined(SBCL_BOOT_SYSTEM)
+# Use "clisp -ansi -on-error abort" to make the build more reproducible,
+# per Christophe Rhodes:
+SBCL_BOOT_SYSTEM=	clisp -norc -ansi -on-error abort
+BUILD_DEPENDS+=		clisp-[0-9]*:../../lang/clisp
+UNLIMIT_RESOURCES=	datasize
+.elif ${SBCL_BOOT_SYSTEM} == clisp
+BUILD_DEPENDS+=		clisp-[0-9]*:../../lang/clisp
+UNLIMIT_RESOURCES=	datasize
+.elif ${SBCL_BOOT_SYSTEM} == sbcl
+# Get bootstrap version:
+BUILD_DEPENDS+=		sbcl-[0-9]*:../../lang/sbcl
+.endif
+
+SUBST_CLASSES+=			fix-paths
+SUBST_STAGE.fix-paths=		pre-configure
+SUBST_MESSAGE.fix-paths=	Fixing absolute paths.
+SUBST_FILES.fix-paths=		install.sh src/runtime/runtime.c doc/sbcl.1
+SUBST_SED.fix-paths=		-e 's,@PREFIX@,${PREFIX},g'
+#SUBST_SED.fix-paths+=           -e 's,/var/log,${VARBASE}/log,g'
+
+SUBST_CLASSES+=			fix-gtar
+SUBST_STAGE.fix-gtar=		pre-configure
+SUBST_MESSAGE.fix-gtar=		Fixing GNU tar references.
+SUBST_FILES.fix-gtar=		contrib/asdf-install/installer.lisp
+SUBST_SED.fix-gtar=		-e 's,@GTAR@,${GTAR},'
+
+pre-build:
+	cd ${WRKSRC} && ${ECHO} '"1.0.99"' > version.lisp-expr
+do-build:
+	cd ${WRKSRC} && ${SH} make.sh --prefix=${PREFIX} --xc-host=${SBCL_BOOT_SYSTEM:Q}
+post-build:
+	cd ${WRKSRC} && ${RM} -f contrib/sb-cover/test-output/*
+
+do-install:
+	cd ${WRKSRC} && BUILD_ROOT=${DESTDIR:Q} INSTALL_ROOT=${PREFIX:Q} MAN_DIR=${PREFIX:Q}/${PKGMANDIR} ${SH} install.sh
+	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/asdf-install/installer.lisp.orig
+	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/posix-tests.lisp.orig
+	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/write-test.txt
+	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/read-test.txt
+	find $(DESTDIR)$(PREFIX)/lib/sbcl -type d -name CVS -exec rm -rf {} \+
+	find $(DESTDIR)$(PREFIX)/lib/sbcl -type f -name .cvsignore -exec rm -f {} \+
+
+do-test:
+	cd ${WRKSRC}/tests && ${SH} ./run-tests.sh
+
+.if ${MACHINE_ARCH} == "x86_64"
+PLIST_SUBST+=	SUFX64=-64
+.else
+PLIST_SUBST+=	SUFX64=
+.endif
+
+GIT_REPOSITORIES=	sbcl
+GIT_REPO.sbcl=		git://git.code.sf.net/p/sbcl/sbcl
+WRKSRC=			${WRKDIR}/sbcl
+DISTNAME=
+PKGNAME=		sbcl-1.99
+
+.include "../mk/git-package.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/sbcl-git/PLIST b/sbcl-git/PLIST
new file mode 100644
index 0000000..62b8fa1
--- /dev/null
+++ b/sbcl-git/PLIST
@@ -0,0 +1,41 @@
+@comment $NetBSD: PLIST,v 1.19 2014/03/30 12:20:02 asau Exp $
+bin/sbcl
+lib/sbcl/contrib/asdf.fasl
+lib/sbcl/contrib/sb-aclrepl.asd
+lib/sbcl/contrib/sb-aclrepl.fasl
+lib/sbcl/contrib/sb-bsd-sockets.asd
+lib/sbcl/contrib/sb-bsd-sockets.fasl
+lib/sbcl/contrib/sb-cltl2.asd
+lib/sbcl/contrib/sb-cltl2.fasl
+lib/sbcl/contrib/sb-concurrency.asd
+lib/sbcl/contrib/sb-concurrency.fasl
+lib/sbcl/contrib/sb-cover.asd
+lib/sbcl/contrib/sb-cover.fasl
+lib/sbcl/contrib/sb-executable.asd
+lib/sbcl/contrib/sb-executable.fasl
+lib/sbcl/contrib/sb-gmp.asd
+lib/sbcl/contrib/sb-gmp.fasl
+lib/sbcl/contrib/sb-grovel.asd
+lib/sbcl/contrib/sb-grovel.fasl
+lib/sbcl/contrib/sb-introspect.asd
+lib/sbcl/contrib/sb-introspect.fasl
+lib/sbcl/contrib/sb-md5.asd
+lib/sbcl/contrib/sb-md5.fasl
+lib/sbcl/contrib/sb-posix.asd
+lib/sbcl/contrib/sb-posix.fasl
+lib/sbcl/contrib/sb-queue.asd
+lib/sbcl/contrib/sb-queue.fasl
+lib/sbcl/contrib/sb-rotate-byte.asd
+lib/sbcl/contrib/sb-rotate-byte.fasl
+lib/sbcl/contrib/sb-rt.asd
+lib/sbcl/contrib/sb-rt.fasl
+lib/sbcl/contrib/sb-simple-streams.asd
+lib/sbcl/contrib/sb-simple-streams.fasl
+lib/sbcl/contrib/sb-sprof.asd
+lib/sbcl/contrib/sb-sprof.fasl
+lib/sbcl/sbcl.core
+man/man1/sbcl.1
+share/doc/sbcl/BUGS
+share/doc/sbcl/COPYING
+share/doc/sbcl/CREDITS
+share/doc/sbcl/NEWS
diff --git a/sbcl-git/distinfo b/sbcl-git/distinfo
new file mode 100644
index 0000000..722aed9
--- /dev/null
+++ b/sbcl-git/distinfo
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.33 2014/09/30 19:06:31 asau Exp $
+
+SHA1 (sbcl-1.0.55-source.tar.bz2) = 1c9bd995da1c1a43d5ac670b340ff43840ad8217
+RMD160 (sbcl-1.0.55-source.tar.bz2) = d97ac8d23787940c2042a40b0bd43c30e4a052e1
+Size (sbcl-1.0.55-source.tar.bz2) = 3611026 bytes
+SHA1 (patch-ab) = 33006bdafec9af75c409fad63151242b3ce2092a
+SHA1 (patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8) = 62f604ca244ef7b5b4ba43f9d4af62048988e336
diff --git a/sbcl-git/patches/patch-ab b/sbcl-git/patches/patch-ab
new file mode 100644
index 0000000..a0adbbe
--- /dev/null
+++ b/sbcl-git/patches/patch-ab
@@ -0,0 +1,22 @@
+$NetBSD: patch-ab,v 1.3 2013/08/22 19:16:14 asau Exp $
+
+--- doc/sbcl.1.orig	2013-01-24 04:22:45.000000000 +0400
++++ doc/sbcl.1	2013-01-24 04:25:09.000000000 +0400
+@@ -427,7 +427,7 @@
+ 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 \fIe.g.\fR by a third-party
++@PREFIX@/lib/sbcl/ but may have been changed \fIe.g.\fR by a third-party
+ packager.
+ 
+ .SH FILES
+@@ -461,7 +461,7 @@
+ should give you access to the complete manual. Depending on your
+ installation it may also be available in HTML and PDF formats in e.g.
+ .IP
+-.B /usr/local/share/doc/sbcl/
++.B @PREFIX@/share/doc/sbcl/
+ .PP
+ See the SBCL homepage 
+ .IP
diff --git a/sbcl-git/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8 b/sbcl-git/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8
new file mode 100644
index 0000000..1943b72
--- /dev/null
+++ b/sbcl-git/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8
@@ -0,0 +1,15 @@
+$NetBSD: patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8,v 1.2 2013/08/22 19:16:14 asau Exp $
+
+Revert revision 37d3828773e2f847bb1ed7522b0af4fb8e736fc8
+which breaks build on NetBSD.
+
+diff --git a/contrib/sb-sprof/Makefile contrib/sb-sprof/Makefile
+index 7373c72..463ae52 100644
+--- contrib/sb-sprof/Makefile
++++ contrib/sb-sprof/Makefile
+@@ -2,4 +2,4 @@ MODULE=sb-sprof
+ include ../vanilla-module.mk
+ 
+ test::
+-	$(SBCL) --eval '(load (format nil "SYS:CONTRIB;~:@(~A~);TEST.LISP" "$(MODULE)"))' </dev/null
++	        true
diff --git a/sbcl/DESCR b/sbcl/DESCR
deleted file mode 100644
index dd38ebe..0000000
--- a/sbcl/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-Steel Bank Common Lisp (SBCL) is an Open Source complier and runtime
-system for ANSI Common Lisp.  It provides an interactive environment
-including an integrated native compiler, a debugger, and many
-extensions.
diff --git a/sbcl/Makefile b/sbcl/Makefile
deleted file mode 100644
index d251e1c..0000000
--- a/sbcl/Makefile
+++ /dev/null
@@ -1,101 +0,0 @@
-# $NetBSD: Makefile,v 1.43 2014/10/09 14:06:30 thomasklausner Exp $
-
-DISTNAME=		${PKGNAME_NOREV}-source
-PKGNAME=		sbcl-1.0.55
-CATEGORIES=		lang
-MASTER_SITES=		${MASTER_SITE_SOURCEFORGE:=sbcl/}
-EXTRACT_SUFX=		.tar.bz2
-
-MAINTAINER=		asau%users.sourceforge.net@localhost
-HOMEPAGE=		http://www.sbcl.org/
-COMMENT=		SBCL, a Common Lisp implementation
-
-# SBCL creates a new release with minor updates and fixes every
-# month.  The maintainer of this package does not have the time
-# to build, test, update, etc. this package that often.  If you
-# would like a newer (or older) version, this works very often:
-# 1) change the PKGNAME variable above as desired
-# 2) make fetch && make makesum && make package
-
-USE_TOOLS+=		gmake gtar:run patch
-
-WRKSRC=			${WRKDIR}/${PKGNAME_NOREV}
-
-.include "../../mk/bsd.prefs.mk"
-
-#
-# Bootstrap section.
-#
-# SBCL needs an existing Common Lisp system to build it...
-# Currently allowed systems are CLISP, CMUCL, OpenMCL, and SBCL itself.
-#
-#  If SBCL is installed in an unusual place when trying to build this
-#  package, you may need to set the full path in SBCL_BOOT_SYSTEM and
-#  build the package with "SBCL_HOME=/path/to/SBCL/core/image/ make"
-
-#SBCL_BOOT_SYSTEM=	clisp			# CLisp
-#SBCL_BOOT_SYSTEM=	"lisp -batch"		# CMUCL
-#SBCL_BOOT_SYSTEM=	"openmcl --batch"	# OpenMCL
-#SBCL_BOOT_SYSTEM=	sbcl			# SBCL
-
-.if !defined(SBCL_BOOT_SYSTEM)
-# Use "clisp -ansi -on-error abort" to make the build more reproducible,
-# per Christophe Rhodes:
-SBCL_BOOT_SYSTEM=	clisp -norc -ansi -on-error abort
-BUILD_DEPENDS+=		clisp-[0-9]*:../../lang/clisp
-UNLIMIT_RESOURCES=	datasize
-.elif ${SBCL_BOOT_SYSTEM} == clisp
-BUILD_DEPENDS+=		clisp-[0-9]*:../../lang/clisp
-UNLIMIT_RESOURCES=	datasize
-.elif ${SBCL_BOOT_SYSTEM} == sbcl
-# Get bootstrap version:
-BUILD_DEPENDS+=		sbcl-[0-9]*:../../lang/sbcl
-.endif
-
-SUBST_CLASSES+=			fix-paths
-SUBST_STAGE.fix-paths=		pre-configure
-SUBST_MESSAGE.fix-paths=	Fixing absolute paths.
-SUBST_FILES.fix-paths=		install.sh src/runtime/runtime.c doc/sbcl.1
-SUBST_SED.fix-paths=		-e 's,@PREFIX@,${PREFIX},g'
-#SUBST_SED.fix-paths+=           -e 's,/var/log,${VARBASE}/log,g'
-
-SUBST_CLASSES+=			fix-gtar
-SUBST_STAGE.fix-gtar=		pre-configure
-SUBST_MESSAGE.fix-gtar=		Fixing GNU tar references.
-SUBST_FILES.fix-gtar=		contrib/asdf-install/installer.lisp
-SUBST_SED.fix-gtar=		-e 's,@GTAR@,${GTAR},'
-
-pre-build:
-	cd ${WRKSRC} && ${ECHO} '"1.0.99"' > version.lisp-expr
-do-build:
-	cd ${WRKSRC} && ${SH} make.sh --prefix=${PREFIX} --xc-host=${SBCL_BOOT_SYSTEM:Q}
-post-build:
-	cd ${WRKSRC} && ${RM} -f contrib/sb-cover/test-output/*
-
-do-install:
-	cd ${WRKSRC} && BUILD_ROOT=${DESTDIR:Q} INSTALL_ROOT=${PREFIX:Q} MAN_DIR=${PREFIX:Q}/${PKGMANDIR} ${SH} install.sh
-	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/asdf-install/installer.lisp.orig
-	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/posix-tests.lisp.orig
-	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/write-test.txt
-	rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/read-test.txt
-	find $(DESTDIR)$(PREFIX)/lib/sbcl -type d -name CVS -exec rm -rf {} \+
-	find $(DESTDIR)$(PREFIX)/lib/sbcl -type f -name .cvsignore -exec rm -f {} \+
-
-do-test:
-	cd ${WRKSRC}/tests && ${SH} ./run-tests.sh
-
-.if ${MACHINE_ARCH} == "x86_64"
-PLIST_SUBST+=	SUFX64=-64
-.else
-PLIST_SUBST+=	SUFX64=
-.endif
-
-GIT_REPOSITORIES=	sbcl
-GIT_REPO.sbcl=		git://git.code.sf.net/p/sbcl/sbcl
-WRKSRC=			${WRKDIR}/sbcl
-DISTNAME=
-PKGNAME=		sbcl-1.99
-
-.include "../mk/git-package.mk"
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/sbcl/PLIST b/sbcl/PLIST
deleted file mode 100644
index 62b8fa1..0000000
--- a/sbcl/PLIST
+++ /dev/null
@@ -1,41 +0,0 @@
-@comment $NetBSD: PLIST,v 1.19 2014/03/30 12:20:02 asau Exp $
-bin/sbcl
-lib/sbcl/contrib/asdf.fasl
-lib/sbcl/contrib/sb-aclrepl.asd
-lib/sbcl/contrib/sb-aclrepl.fasl
-lib/sbcl/contrib/sb-bsd-sockets.asd
-lib/sbcl/contrib/sb-bsd-sockets.fasl
-lib/sbcl/contrib/sb-cltl2.asd
-lib/sbcl/contrib/sb-cltl2.fasl
-lib/sbcl/contrib/sb-concurrency.asd
-lib/sbcl/contrib/sb-concurrency.fasl
-lib/sbcl/contrib/sb-cover.asd
-lib/sbcl/contrib/sb-cover.fasl
-lib/sbcl/contrib/sb-executable.asd
-lib/sbcl/contrib/sb-executable.fasl
-lib/sbcl/contrib/sb-gmp.asd
-lib/sbcl/contrib/sb-gmp.fasl
-lib/sbcl/contrib/sb-grovel.asd
-lib/sbcl/contrib/sb-grovel.fasl
-lib/sbcl/contrib/sb-introspect.asd
-lib/sbcl/contrib/sb-introspect.fasl
-lib/sbcl/contrib/sb-md5.asd
-lib/sbcl/contrib/sb-md5.fasl
-lib/sbcl/contrib/sb-posix.asd
-lib/sbcl/contrib/sb-posix.fasl
-lib/sbcl/contrib/sb-queue.asd
-lib/sbcl/contrib/sb-queue.fasl
-lib/sbcl/contrib/sb-rotate-byte.asd
-lib/sbcl/contrib/sb-rotate-byte.fasl
-lib/sbcl/contrib/sb-rt.asd
-lib/sbcl/contrib/sb-rt.fasl
-lib/sbcl/contrib/sb-simple-streams.asd
-lib/sbcl/contrib/sb-simple-streams.fasl
-lib/sbcl/contrib/sb-sprof.asd
-lib/sbcl/contrib/sb-sprof.fasl
-lib/sbcl/sbcl.core
-man/man1/sbcl.1
-share/doc/sbcl/BUGS
-share/doc/sbcl/COPYING
-share/doc/sbcl/CREDITS
-share/doc/sbcl/NEWS
diff --git a/sbcl/distinfo b/sbcl/distinfo
deleted file mode 100644
index 722aed9..0000000
--- a/sbcl/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.33 2014/09/30 19:06:31 asau Exp $
-
-SHA1 (sbcl-1.0.55-source.tar.bz2) = 1c9bd995da1c1a43d5ac670b340ff43840ad8217
-RMD160 (sbcl-1.0.55-source.tar.bz2) = d97ac8d23787940c2042a40b0bd43c30e4a052e1
-Size (sbcl-1.0.55-source.tar.bz2) = 3611026 bytes
-SHA1 (patch-ab) = 33006bdafec9af75c409fad63151242b3ce2092a
-SHA1 (patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8) = 62f604ca244ef7b5b4ba43f9d4af62048988e336
diff --git a/sbcl/patches/patch-ab b/sbcl/patches/patch-ab
deleted file mode 100644
index a0adbbe..0000000
--- a/sbcl/patches/patch-ab
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2013/08/22 19:16:14 asau Exp $
-
---- doc/sbcl.1.orig	2013-01-24 04:22:45.000000000 +0400
-+++ doc/sbcl.1	2013-01-24 04:25:09.000000000 +0400
-@@ -427,7 +427,7 @@
- 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 \fIe.g.\fR by a third-party
-+@PREFIX@/lib/sbcl/ but may have been changed \fIe.g.\fR by a third-party
- packager.
- 
- .SH FILES
-@@ -461,7 +461,7 @@
- should give you access to the complete manual. Depending on your
- installation it may also be available in HTML and PDF formats in e.g.
- .IP
--.B /usr/local/share/doc/sbcl/
-+.B @PREFIX@/share/doc/sbcl/
- .PP
- See the SBCL homepage 
- .IP
diff --git a/sbcl/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8 b/sbcl/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8
deleted file mode 100644
index 1943b72..0000000
--- a/sbcl/patches/patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-revert-37d3828773e2f847bb1ed7522b0af4fb8e736fc8,v 1.2 2013/08/22 19:16:14 asau Exp $
-
-Revert revision 37d3828773e2f847bb1ed7522b0af4fb8e736fc8
-which breaks build on NetBSD.
-
-diff --git a/contrib/sb-sprof/Makefile contrib/sb-sprof/Makefile
-index 7373c72..463ae52 100644
---- contrib/sb-sprof/Makefile
-+++ contrib/sb-sprof/Makefile
-@@ -2,4 +2,4 @@ MODULE=sb-sprof
- include ../vanilla-module.mk
- 
- test::
--	$(SBCL) --eval '(load (format nil "SYS:CONTRIB;~:@(~A~);TEST.LISP" "$(MODULE)"))' </dev/null
-+	        true


Home | Main Index | Thread Index | Old Index