openbsd-ports/emulators/bochs/Makefile

67 lines
1.3 KiB
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.56 2012/09/25 23:21:47 brad Exp $
1998-05-20 03:11:31 -04:00
COMMENT= x86 machine simulator
DISTNAME= bochs-2.6
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/}
1998-10-15 00:33:25 -04:00
HOMEPAGE= http://bochs.sourceforge.net/
# LGPLv2.1+ and MIT
2000-07-18 01:16:58 -04:00
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
2000-03-16 17:26:18 -05:00
PERMIT_DISTFILES_FTP= Yes
2011-11-29 12:22:01 -05:00
WANTLIB= c m stdc++ termlib
2000-03-16 17:26:18 -05:00
2007-03-31 08:58:13 -04:00
USE_LIBTOOL= Yes
CONFIGURE_STYLE= gnu
2011-11-29 12:22:01 -05:00
CONFIGURE_ARGS= --enable-all-optimizations \
--enable-avx \
--enable-e1000 \
--enable-es1370 \
2011-11-29 12:22:01 -05:00
--enable-large-ramfile \
--enable-ne2000 \
--enable-pci \
--enable-pnic \
2011-11-29 12:22:01 -05:00
--enable-smp \
--enable-svm \
2011-11-29 12:22:01 -05:00
--enable-x86-64 \
--enable-usb \
--enable-usb-ohci \
--enable-vmx=2 \
--with-term
FLAVORS= debug no_x11
FLAVOR?=
2000-07-18 01:16:58 -04:00
2011-12-02 09:36:13 -05:00
.if ${FLAVOR:Mdebug}
2011-11-29 12:22:01 -05:00
CONFIGURE_ARGS+=--disable-debugger-gui \
--enable-debugger \
--enable-x86-debugger \
--enable-readline
WANTLIB+= curses readline
.endif
2011-12-02 09:36:13 -05:00
.if ${FLAVOR:Mno_x11}
2011-11-29 12:22:01 -05:00
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
2002-10-26 08:52:48 -04:00
NO_REGRESS= Yes
2009-06-23 12:03:58 -04:00
post-install:
${INSTALL_DATA} ${WRKSRC}/docs-html/*.html ${PREFIX}/share/doc/bochs
2009-06-23 12:03:58 -04:00
@mv ${PREFIX}/share/doc/bochs/bochsrc-sample.txt \
${PREFIX}/share/bochs/bochsrc
1998-05-20 03:11:31 -04:00
.include <bsd.port.mk>