summaryrefslogtreecommitdiff
path: root/emulators/pcemu/scripts/configure
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/pcemu/scripts/configure')
-rw-r--r--emulators/pcemu/scripts/configure27
1 files changed, 27 insertions, 0 deletions
diff --git a/emulators/pcemu/scripts/configure b/emulators/pcemu/scripts/configure
new file mode 100644
index 000000000000..8815b83b9f0c
--- /dev/null
+++ b/emulators/pcemu/scripts/configure
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# $Id: configure,v 1.1.1.1 1995/03/26 18:08:54 joerg Exp $
+#
+# Author: Jörg Wunsch <joerg@FreeBSD.org>
+# Date of creation: Mar 27, 1995
+#
+
+cd ${WRKSRC}
+mkdir ${WRKSRC}/bootstrap
+sh < ${FILESDIR}/bootstrap.shar
+
+# create a Makefile.inc to pass the local prefix down to
+# the build stage:
+
+cat > ${WRKSRC}/Makefile.inc <<*EOF*
+#
+# Makefile.inc
+#
+# This file has been created by the "configure" script; DO NOT EDIT.
+#
+# Edit the port's Makefile \${PREFIX} variable should you wish to
+# override this, and reconfigure.
+#
+
+LOCALPREFIX = ${PREFIX}
+*EOF*