mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
e0c097a049
default configuration (VESA enabled, which is very popular, and the config file has the clock synchronizing to the host as default). Simplify the Makefile greatly.
154 lines
4.3 KiB
Makefile
154 lines
4.3 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: bochs
|
|
# Date created: 16 December 1997
|
|
# Whom: alex
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bochs
|
|
PORTVERSION= 2.1
|
|
PORTEPOCH= 2
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= anholt@FreeBSD.org
|
|
COMMENT= An IA-32 (x86) PC emulator that runs DOS, Win 95, and more
|
|
|
|
# Global variables
|
|
#
|
|
|
|
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 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_VESA)
|
|
@${ECHO_MSG} "If you want to enable the VESA BIOS video extensions of bochs,"
|
|
@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_VESA=yes\""
|
|
@${ECHO_MSG}
|
|
.else
|
|
@${ECHO_MSG} "Remember that with the VESA option you must also use VGABIOS-lgpl-latest"
|
|
@${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|file=${DATADIR}/VGABIOS|; \
|
|
' ${WRKSRC}/.bochsrc
|
|
@${REINPLACE_CMD} -e ' \
|
|
s|/usr/local/share/doc/bochs|${DOCSDIR}|; \
|
|
' ${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>
|