sthen 25f0e460f2 Add COMPILER lines to c++ ports which currently use the default. Adjust
some existing COMPILER lines with arch restrictions etc. In the usual
case this is now using "COMPILER = base-clang ports-gcc base-gcc" on
ports with c++ libraries in WANTLIB.

This is basically intended to be a noop on architectures using clang
as the system compiler, but help with other architectures where we
currently have many ports knocked out due to building with an unsuitable
compiler -

- some ports require c++11/newer so the GCC version in base that is used
on these archirtectures is too old.

- some ports have conflicts where an executable is built with one compiler
(e.g. gcc from base) but a library dependency is built with a different
one (e.g. gcc from ports), resulted in mixing incompatible libraries in the
same address space.

devel/gmp is intentionally skipped as it's on the path to building gcc -
the c++ library there is unused in ports (and not built by default upstream)
so intending to disable building gmpcxx in a future commit.
2018-10-24 14:27:57 +00:00

64 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.72 2018/10/24 14:28:01 sthen Exp $
COMMENT= x86 machine simulator
DISTNAME= bochs-2.6.9
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/}
REVISION= 1
HOMEPAGE= http://bochs.sourceforge.net/
# LGPLv2.1+ and MIT
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= c m pthread ${COMPILER_LIBCXX} termlib
COMPILER = base-clang ports-gcc base-gcc
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-all-optimizations \
--enable-avx \
--enable-e1000 \
--enable-es1370 \
--enable-large-ramfile \
--enable-ne2000 \
--enable-pnic \
--enable-smp \
--enable-svm \
--enable-x86-64 \
--enable-usb \
--enable-usb-ohci \
--enable-vmx=2 \
--with-term
FLAVORS= debug no_x11
FLAVOR?=
.if ${FLAVOR:Mdebug}
CONFIGURE_ARGS+=--disable-debugger-gui \
--enable-debugger \
--enable-x86-debugger \
--enable-readline
WANTLIB+= curses readline
.endif
.if ${FLAVOR:Mno_x11}
CONFIGURE_ARGS+=--with-nogui
.else
LIB_DEPENDS+= converters/libiconv \
devel/sdl
CONFIGURE_ARGS+=--with-sdl \
--with-x11
WANTLIB+= SDL X11 Xext Xpm Xrandr Xrender iconv sndio usbhid xcb
.endif
NO_TEST= Yes
post-install:
${INSTALL_DATA} ${WRKSRC}/docs-html/*.html ${PREFIX}/share/doc/bochs
@mv ${PREFIX}/share/doc/bochs/bochsrc-sample.txt \
${PREFIX}/share/bochs/bochsrc
.include <bsd.port.mk>