2009-08-10 02:29:51 -04:00
|
|
|
# $OpenBSD: Makefile,v 1.45 2009/08/10 06:31:09 kili Exp $
|
1998-05-20 03:11:31 -04:00
|
|
|
|
2007-09-15 20:45:13 -04:00
|
|
|
COMMENT= x86 machine simulator
|
2002-06-09 12:24:57 -04:00
|
|
|
|
2009-06-23 12:03:58 -04:00
|
|
|
DISTNAME= bochs-2.4.1
|
2009-08-10 02:29:51 -04:00
|
|
|
PKGNAME= ${DISTNAME}p0
|
1999-10-31 15:22:37 -05:00
|
|
|
CATEGORIES= emulators
|
2002-06-09 12:24:57 -04:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bochs/}
|
1998-10-15 00:33:25 -04:00
|
|
|
|
2001-05-26 01:52:55 -04:00
|
|
|
HOMEPAGE= http://bochs.sourceforge.net/
|
1999-10-31 15:22:37 -05:00
|
|
|
|
2008-07-16 16:31:33 -04:00
|
|
|
# LGPLv2.1+
|
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
|
2008-04-09 23:39:54 -04: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
|
2002-06-09 12:24:57 -04:00
|
|
|
CONFIGURE_STYLE= gnu
|
2008-04-09 23:39:54 -04:00
|
|
|
CONFIGURE_ARGS+= --enable-acpi \
|
|
|
|
--enable-all-optimizations \
|
|
|
|
--enable-fpu \
|
|
|
|
--enable-ne2000 \
|
|
|
|
--enable-pci \
|
|
|
|
--enable-smp \
|
|
|
|
--enable-x86-64 \
|
2009-06-23 12:03:58 -04:00
|
|
|
--enable-usb \
|
|
|
|
--enable-usb-ohci \
|
2008-04-09 23:39:54 -04:00
|
|
|
--with-term
|
|
|
|
|
|
|
|
FLAVORS= debug no_x11
|
2001-03-02 09:51:35 -05:00
|
|
|
FLAVOR?=
|
2000-07-18 01:16:58 -04:00
|
|
|
|
o take over maintainership
o too many changes to mention specifically, but amongst them:
- better error reporting
- openbsd boots, freebsd boots
- new 'term' flavor, I added a textmode interface, the only drawback
is that control-c is intercepted, and you must kill -9 it from
another tty if it doesn't exit normally
- new flavors:
- debugger -> debug (for shortness)
- i386
- pci
- smp
- net (compiles, does not yet provide networking, if anyone
wants to help, I'd be ELATED to have this fixed!)
- no_x11 (made it actually work)
- term (make sure to use 'log: /dev/null' or something else
on the cmdline, otherwise, debugging and the screen will
start getting quite confusing!)
- better error reporting (and no error reporting where it is not
necessary; a typicall boot of cdrom28.fs is a screenful of output now)
- in general, if the hardware reaches an unknown state, fail
gracefully instead of calling exit(1) .. are we trying to work or
are we trying to .. fail? I like working myself.
2001-02-02 11:59:05 -05:00
|
|
|
.if ${FLAVOR:L:Mdebug}
|
2009-06-23 12:03:58 -04:00
|
|
|
CONFIGURE_ARGS+= --disable-debugger-gui \
|
|
|
|
--enable-debugger \
|
2008-04-09 23:39:54 -04:00
|
|
|
--enable-x86-debugger \
|
|
|
|
--enable-readline
|
|
|
|
WANTLIB+= curses readline
|
o take over maintainership
o too many changes to mention specifically, but amongst them:
- better error reporting
- openbsd boots, freebsd boots
- new 'term' flavor, I added a textmode interface, the only drawback
is that control-c is intercepted, and you must kill -9 it from
another tty if it doesn't exit normally
- new flavors:
- debugger -> debug (for shortness)
- i386
- pci
- smp
- net (compiles, does not yet provide networking, if anyone
wants to help, I'd be ELATED to have this fixed!)
- no_x11 (made it actually work)
- term (make sure to use 'log: /dev/null' or something else
on the cmdline, otherwise, debugging and the screen will
start getting quite confusing!)
- better error reporting (and no error reporting where it is not
necessary; a typicall boot of cdrom28.fs is a screenful of output now)
- in general, if the hardware reaches an unknown state, fail
gracefully instead of calling exit(1) .. are we trying to work or
are we trying to .. fail? I like working myself.
2001-02-02 11:59:05 -05:00
|
|
|
.endif
|
|
|
|
|
2008-04-09 23:39:54 -04:00
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
|
|
CONFIGURE_ARGS+= --with-nogui
|
|
|
|
.else
|
2004-01-09 11:15:04 -05:00
|
|
|
USE_X11= Yes
|
o take over maintainership
o too many changes to mention specifically, but amongst them:
- better error reporting
- openbsd boots, freebsd boots
- new 'term' flavor, I added a textmode interface, the only drawback
is that control-c is intercepted, and you must kill -9 it from
another tty if it doesn't exit normally
- new flavors:
- debugger -> debug (for shortness)
- i386
- pci
- smp
- net (compiles, does not yet provide networking, if anyone
wants to help, I'd be ELATED to have this fixed!)
- no_x11 (made it actually work)
- term (make sure to use 'log: /dev/null' or something else
on the cmdline, otherwise, debugging and the screen will
start getting quite confusing!)
- better error reporting (and no error reporting where it is not
necessary; a typicall boot of cdrom28.fs is a screenful of output now)
- in general, if the hardware reaches an unknown state, fail
gracefully instead of calling exit(1) .. are we trying to work or
are we trying to .. fail? I like working myself.
2001-02-02 11:59:05 -05:00
|
|
|
CONFIGURE_ARGS+= --with-x11
|
2009-08-10 02:29:51 -04:00
|
|
|
WANTLIB+= ICE SM X11 Xau Xdmcp pthread-stubs xcb
|
o take over maintainership
o too many changes to mention specifically, but amongst them:
- better error reporting
- openbsd boots, freebsd boots
- new 'term' flavor, I added a textmode interface, the only drawback
is that control-c is intercepted, and you must kill -9 it from
another tty if it doesn't exit normally
- new flavors:
- debugger -> debug (for shortness)
- i386
- pci
- smp
- net (compiles, does not yet provide networking, if anyone
wants to help, I'd be ELATED to have this fixed!)
- no_x11 (made it actually work)
- term (make sure to use 'log: /dev/null' or something else
on the cmdline, otherwise, debugging and the screen will
start getting quite confusing!)
- better error reporting (and no error reporting where it is not
necessary; a typicall boot of cdrom28.fs is a screenful of output now)
- in general, if the hardware reaches an unknown state, fail
gracefully instead of calling exit(1) .. are we trying to work or
are we trying to .. fail? I like working myself.
2001-02-02 11:59:05 -05:00
|
|
|
.endif
|
|
|
|
|
2002-10-26 08:52:48 -04:00
|
|
|
NO_REGRESS= Yes
|
|
|
|
|
2009-06-23 12:03:58 -04:00
|
|
|
post-install:
|
1999-10-31 15:22:37 -05:00
|
|
|
${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>
|