summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authordholland <dholland>2016-07-03 19:08:22 +0000
committerdholland <dholland>2016-07-03 19:08:22 +0000
commit9667e6905e2b2ce01f15cfeb9f31c6226c7f741a (patch)
tree136a94e8f14c142d728fef1e1cd459fa60607950 /lang
parent18c7af4a4c7d6199052e1b4f13f84ed09dcdb294 (diff)
downloadpkgsrc-9667e6905e2b2ce01f15cfeb9f31c6226c7f741a.tar.gz
Generate the base/ copy of the runtime from the src/ copy after
patching, instead of extracting twice.
Diffstat (limited to 'lang')
-rw-r--r--lang/smlnj/Makefile31
1 files changed, 23 insertions, 8 deletions
diff --git a/lang/smlnj/Makefile b/lang/smlnj/Makefile
index 6956e711984..ed27f85c49c 100644
--- a/lang/smlnj/Makefile
+++ b/lang/smlnj/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2016/04/14 22:10:06 dholland Exp $
+# $NetBSD: Makefile,v 1.27 2016/07/03 19:08:22 dholland Exp $
#
DISTNAME= boot.${BOX}-unix
@@ -47,22 +47,37 @@ SML_SCRIPTS= _link-sml _run-sml _ml-build _ml-makedepend
.include "../../lang/smlnj/Makefile.common"
-# create parent directory for the runtime system
+#
+# For smlnj reasons the runtime system needs to be unpacked twice, once
+# in work/src and once in work/base.
+#
+# As of 20160624, instead of inconsistently patching one copy or the
+# other and hoping, or patching both and duplicating all the patches,
+# we'll patch only work/src, and then *after* patching clone work/src
+# into work/base.
+#
+
+# create parent directories for the runtime system
pre-extract:
${MKDIR} ${WRKDIR}/src || ${TRUE}
+ ${MKDIR} ${WRKDIR}/base || ${TRUE}
# make it easier to patch the runtime system
do-extract:
- ${RUN} extract_file="${_DISTDIR}/config.tgz"; export extract_file; \
+ ${RUN} extract_file="${_DISTDIR}/config.tgz"; \
+ export extract_file; \
cd ${WRKDIR}; ${EXTRACT_CMD}
- ${RUN} extract_file="${_DISTDIR}/runtime.tgz"; export extract_file; \
+ ${RUN} extract_file="${_DISTDIR}/runtime.tgz"; \
+ export extract_file; \
cd ${WRKDIR}/src; ${EXTRACT_CMD}
- ${RUN} extract_file="${_DISTDIR}/runtime.tgz"; export extract_file; \
- mkdir ${WRKDIR}/base; cd ${WRKDIR}/base; ${EXTRACT_CMD}
-# make symlinks to the dist files
+# symlink the rest of the distfiles
post-extract:
- cd ${WRKDIR} && ${LN} -sf ${_DISTDIR}/* .
+ cd ${WRKDIR} && ${LN} -sf ${_DISTDIR}/* .
+
+# make the necessary copy of the runtime, _after_ patching src
+post-patch:
+ cd ${WRKDIR}/src && pax -rw runtime ${WRKDIR}/base/
# resolve definition of SML_BASE, CFLAGS in patched files
do-configure: