2232eddad7
- fix bug in int15h function 0xe820 (Christian Neubert) - fix vmware3 disk support on big-endian platforms (Christophe Bothamy) - fix conditions for NM exception on FWAIT instruction (Christophe) - fix symbol conflict in rfb and x display libraries (Volker Ruppert) - allow 16 bit writes to ne2k page 0 (Volker) - notify display libraries on change of bpp (Volker) - fix bug in int13h function 0x10 (Volker) - fix floppy dialog error on win2k (Volker) - fix adress check in TSS IO permission bitmap (Christophe) - fix buffer overflow vulnerability pointed out by SeSoX (Christophe) - updates for MacOS compile (Daniel Gimpelevich) - Fix the path arguments of the 'vgaromimage' options (i.e. don't prepend "file=") in the installed bochsrc-sample.txt. This was already wrong for at least 2.1. - Respect DATADIR/DOCSDIR, use DATADIR in pkg-plist. - Update pkg-descr (emulated CPUs etc.) based on the info on the homepage. - Reword pkg-message a bit so the line containing DOCSDIR does (normally) fit in 80 chars when expanded. Submitted by: Marius Strobl <marius@alchemy.franken.de>
148 lines
4.2 KiB
Makefile
148 lines
4.2 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: bochs
|
|
# Date created: 16 December 1997
|
|
# Whom: alex
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bochs
|
|
PORTVERSION= 2.1.1
|
|
PORTEPOCH= 2
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An IA-32 (x86) PC emulator that runs DOS, Win 95, and more
|
|
|
|
USE_XLIB= yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --disable-split-hd \
|
|
--enable-all-optimizations \
|
|
--with-x11 \
|
|
--enable-pci \
|
|
--enable-sb16=freebsd \
|
|
--enable-ne2000 \
|
|
--enable-vbe
|
|
|
|
CFLAGS+= -fno-rtti -fno-exceptions -fomit-frame-pointer
|
|
|
|
MANCOMPRESSED= yes
|
|
MAN1= bochs.1 bochs-dlx.1 bxcommit.1 bximage.1
|
|
MAN5= bochsrc.5
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${XFREE86_VERSION} == 4
|
|
BUILD_DEPENDS+= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients
|
|
RUN_DEPENDS+= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_PROCESSORS)
|
|
.if ${WITH_BOCHS_PROCESSORS} < 1 || ${WITH_BOCHS_PROCESSORS} > 15
|
|
.error "WITH_BOCHS_PROCESSORS must be an integer value between 1 and 15."
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-processors=${WITH_BOCHS_PROCESSORS}
|
|
WITH_BOCHS_CPU_LEVEL= 6
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_CPU_LEVEL)
|
|
.if ${WITH_BOCHS_CPU_LEVEL} < 3 || ${WITH_BOCHS_CPU_LEVEL} > 6
|
|
.error "WITH_BOCHS_CPU_LEVEL must be an integer value between 3 and 6."
|
|
.endif
|
|
CONFIGURE_ARGS+= --enable-cpu-level=${WITH_BOCHS_CPU_LEVEL}
|
|
.if ${WITH_BOCHS_CPU_LEVEL} < 5
|
|
CONFIGURE_ARGS+= --disable-mmx
|
|
.endif
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_TERM)
|
|
CONFIGURE_ARGS+= --with-term
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_AMD64)
|
|
CONFIGURE_ARGS+= --enable-x86-64
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_DEBUGGER)
|
|
CONFIGURE_ARGS+= --enable-debugger --enable-disasm
|
|
.endif
|
|
|
|
.if defined(WITH_BOCHS_X86_DEBUGGER)
|
|
CONFIGURE_ARGS+= --enable-x86-debugger
|
|
.endif
|
|
|
|
MSG_FILE= ${PKGDIR}/pkg-message
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
pre-patch::
|
|
@${ECHO_MSG}
|
|
.if !defined(WITH_BOCHS_CPU_LEVEL)
|
|
@${ECHO_MSG} "If you want to change the processor level to emulate (default is 5, aka Pentium)"
|
|
@${ECHO_MSG} "Choices are 3,4,5,6 which mean target 386, 486, Pentium or Pentium Pro emulation"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_CPU_LEVEL=<cpu level>\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
.if !defined(WITH_BOCHS_TERM)
|
|
@${ECHO_MSG} "If you want to enable the plain text, console-based bochs interface"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_GUI_TERM=yes\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
.if !defined(WITH_BOCHS_PROCESSORS)
|
|
@${ECHO_MSG} "If you want to compile with SMP support (implies WITH_BOCHS_CPU_LEVEL=6),"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_PROCESSORS=<number of processors>\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
.if !defined(WITH_BOCHS_DEBUGGER)
|
|
@${ECHO_MSG} "If you want to compile with builtin debugger and disassembler support,"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_DEBUGGER=yes\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
.if !defined(WITH_BOCHS_X86_DEBUGGER)
|
|
@${ECHO_MSG} "If you want to compile with x86 hardware debugger support,"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_X86_DEBUGGER=yes\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
.if !defined(WITH_BOCHS_AMD64)
|
|
@${ECHO_MSG} "If you want to compile with AMD x86-64 support,"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\""
|
|
@${ECHO_MSG}
|
|
.endif
|
|
@${ECHO_MSG}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E ' \
|
|
s|file=bios/|file=${DATADIR}/|; \
|
|
s|bios/VGABIOS|${DATADIR}/VGABIOS|; \
|
|
' ${WRKSRC}/.bochsrc
|
|
@${REINPLACE_CMD} -E ' \
|
|
s|(^sharedir.+=).+|\1 ${DATADIR}|; \
|
|
s|(^docdir.+=).+|\1 ${DOCSDIR}|; \
|
|
' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e ' \
|
|
s|/usr/local/share/bochs|${DATADIR}|; \
|
|
s|/usr/local/share/doc/bochs|${DOCSDIR}|; \
|
|
' ${WRKSRC}/doc/docbook/user/user.dbk ${WRKSRC}/doc/man/*.1 \
|
|
${WRKSRC}/doc/man/*.5
|
|
@${SED} 's|%%DOCSDIR%%|${DOCSDIR}|g' ${MSG_FILE} > ${PKGMESSAGE}
|
|
|
|
# Post-install
|
|
#
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/docs-html/*.txt ${DOCSDIR}
|
|
@${MKDIR} ${DOCSDIR}/html
|
|
@${INSTALL_DATA} ${WRKSRC}/docs-html/*.html ${DOCSDIR}/html
|
|
.endif
|
|
@${ECHO_MSG}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_MSG}
|
|
|
|
.include <bsd.port.post.mk>
|