diff options
author | Joerg Wunsch <joerg@FreeBSD.org> | 1995-03-27 21:35:21 +0000 |
---|---|---|
committer | Joerg Wunsch <joerg@FreeBSD.org> | 1995-03-27 21:35:21 +0000 |
commit | 869622ad387690d0689907e61b2eadd0cedaf7bc (patch) | |
tree | c63434170244083265d9ddf8c447e2a75c961f26 /emulators/pcemu/scripts/configure | |
parent | Add MAINTAINER. Yes, I know I screwed up the Submitted by: line on the (diff) |
This is David Hedley's pcemu 8086 PC emulator.
Technically, i consider this an excellent work.
I've made some efforts to make it easier for people get it actually up
& running. This would have required an image of a DOS boot floppy,
which we cannot provide. Instead, i wrote a small bootstrap loader
(basically a small more(1) clone with builtin text) that can be
``booted'' from. It instructs the user how to get the image of a
bootable DOS floppy, and where to find the various files.
(The bootstrap loader requires bcc to be recompiled, but i'm providing
a gzip'ed/uuencoded version in the files directory as well.)
The pkg directory is not yet done. Will follow RSN. :)
Notes
Notes:
svn path=/head/; revision=1211
Diffstat (limited to 'emulators/pcemu/scripts/configure')
-rw-r--r-- | emulators/pcemu/scripts/configure | 27 |
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* |