202e9c1e2f
LIB_DEPENDS placement correction and ok sthen@
67 lines
1.3 KiB
Makefile
67 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.56 2012/09/25 23:21:47 brad Exp $
|
|
|
|
COMMENT= x86 machine simulator
|
|
|
|
DISTNAME= bochs-2.6
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/}
|
|
|
|
HOMEPAGE= http://bochs.sourceforge.net/
|
|
|
|
# LGPLv2.1+ and MIT
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c m stdc++ termlib
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --enable-all-optimizations \
|
|
--enable-avx \
|
|
--enable-e1000 \
|
|
--enable-es1370 \
|
|
--enable-large-ramfile \
|
|
--enable-ne2000 \
|
|
--enable-pci \
|
|
--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
|
|
MODULES= converters/libiconv
|
|
LIB_DEPENDS+= devel/sdl
|
|
CONFIGURE_ARGS+=--with-sdl \
|
|
--with-x11
|
|
WANTLIB+= SDL X11 Xext Xpm Xrandr Xrender pthread sndio usbhid \
|
|
xcb
|
|
.endif
|
|
|
|
NO_REGRESS= 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>
|