*** Makefile.orig	Wed Jul 14 14:54:22 2010
--- Makefile	Wed Jul 14 15:04:32 2010
***************
*** 6,13 ****
  #
  
  PORTNAME=	bochs
! PORTVERSION=	2.4
! PORTEPOCH=	2
  CATEGORIES=	emulators
  MASTER_SITES=	SF
  
--- 6,13 ----
  #
  
  PORTNAME=	bochs
! PORTVERSION=	2.4.5
! #PORTEPOCH=	2
  CATEGORIES=	emulators
  MASTER_SITES=	SF
  
***************
*** 19,35 ****
  CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
  CONFIGURE_ARGS=	--disable-docbook
  
! OPTIONS=	1G_PAGES "Enable support for 1G pages in long mode" off \
! 		A20_PIN "Enable support for A20 pin" on \
  		ACPI "Enable ACPI emulation" off \
- 		AES "Enable support of AES CPU extensions" off \
  		ALIGN_CHECK "Enable alignment check support" on \
- 		APIC "Enable APIC support" off \
  		ASSERT_CHECK "Enable BX_ASSERT checks" off \
  		CDROM "Enable CDROM support" on \
  		CLGD54XX "Enable Cirrus Logic GD54xx video card" off \
  		CONF_MSRS "Enable configurable MSR registers support" on \
- 		DAZ "Enable demornals-are-zeros support" off \
  		DEBUGGER "Enable debugger support" off \
  		DEBUGGER_X86 "Enable x86 hardware debugger" off \
  		DISASM "Enable disassemler support " on \
--- 19,31 ----
  CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
  CONFIGURE_ARGS=	--disable-docbook
  
! OPTIONS=	A20_PIN "Enable support for A20 pin" on \
  		ACPI "Enable ACPI emulation" off \
  		ALIGN_CHECK "Enable alignment check support" on \
  		ASSERT_CHECK "Enable BX_ASSERT checks" off \
  		CDROM "Enable CDROM support" on \
  		CLGD54XX "Enable Cirrus Logic GD54xx video card" off \
  		CONF_MSRS "Enable configurable MSR registers support" on \
  		DEBUGGER "Enable debugger support" off \
  		DEBUGGER_X86 "Enable x86 hardware debugger" off \
  		DISASM "Enable disassemler support " on \
***************
*** 37,60 ****
  		FPU "Enable FPU emulator" on \
  		GAMEPORT "Enable standard PC gameport support" off \
  		GDB_STUB "Enable GDB stub support" off \
- 		GLOBAL_PAGES "Enable support for global pages in PDE/PTE" off \
  		IDLE_HACK "Keep Bochs from using all CPU time" off \
- 		IGNORE_BADMSR "Ignore unknown MSR references (don't panic)" on \
  		INSTRUMENT "Enable support for instrumentation" off \
  		IODEBUG "Enable I/O interface to debugger" off \
- 		LARGE_PAGES "Enable support for large (2M/4M) pages" on \
  		LOGGING "Enable logging" on \
  		LONG_PHY_ADDR "Enable support for physical address >= 32bit" off \
- 		MTRR "Enable MTRR emulation (CPU level >= 6)" off \
  		MISALIGNEDSSE "Enable misaligned SSE support" off \
- 		MOVBE "Enable MOVBE intel Atom(R) instruction support" off \
  		MWAIT "Enable experimental MONITOR/MWAIT support" off \
  		NE2000 "Enable limited ne2000 support" on \
  		NEW_PIT "Enable use of the new PIT model" on \
  		OPTIMIZATIONS "Enable all safe speeed optimizations" on \
- 		PAE "Enable support for Physical Address Extensions" off \
  		PCI "Enable limited i440FX PCI support" on \
- 		POPCNT "Enable support for POPCNT instruction" off \
  		PLUGINS "Enable building dynamic loadable plugins" off \
  		PNIC "Enable PCI pseudo NIC (network card) support" off \
  		RAW_SERIAL "Use raw serial port access" off \
--- 33,49 ----
***************
*** 63,69 ****
  		RFB "Enable VNC server support in display" off \
  		SB16 "Enable Sound Blaster 16 emulation" on \
  		SDL "Enable SDL display interface" off \
- 		SEP "Enable SYSENTER/SYSEXIT support" off \
  		SHOW_IPS "Enable logging of measured IPS" off \
  		SMP "Enable SMP simulation support (CPU level 6)" off \
  		SSE4 "Enable emulation of SSE4.2 instruction set" off \
--- 52,57 ----
***************
*** 73,85 ****
  		USB "Enable limited USB UHCI support" off \
  		USB_OHCI "Enable limited USB OHCI support" off \
  		VBE "Enable VGA BIOS Extensions" on \
- 		VME "Enable Virtual 8086 mode extensions" on \
  		VMX "Enable Virtialization extensions" off \
  		WX "Use WxWidgets display interface" off \
  		X11 "Use X11 display interface" on \
  		X86_64 "Enable AMD x86-64 support" off \
  		XPM "Enable XPM library support" off \
- 		XSAVE "Enable support of XSAVE/XRSTOR CPU extensions" off
  
  CFLAGS+=	-fno-exceptions -fomit-frame-pointer
  CXXFLAGS+=	-fno-rtti
--- 61,71 ----
***************
*** 98,109 ****
  CONFIGURE_ARGS+=--with-nogui
  .endif
  
- .if defined(WITH_1G_PAGES) && defined(WITH_X86_64)
- CONFIGURE_ARGS+=--enable-1g-pages
- .else
- CONFIGURE_ARGS+=--disable-1g-pages
- .endif
- 
  .if !defined(WITH_A20_PIN)
  CONFIGURE_ARGS+=--disable-a20-pin
  .else
--- 84,89 ----
***************
*** 116,139 ****
  CONFIGURE_ARGS+=--disable-acpi
  .endif
  
- .if defined(WITH_AES)
- CONFIGURE_ARGS+=--enable-aes
- .else
- CONFIGURE_ARGS+=--disable-aes
- .endif
- 
  .if !defined(WITH_ALIGN_CHECK)
  CONFIGURE_ARGS+=--disable-alignment-check
  .else
  CONFIGURE_ARGS+=--enable-alignment-check
  .endif
  
- .if defined(WITH_APIC)
- CONFIGURE_ARGS+=--enable-apic
- .else
- CONFIGURE_ARGS+=--disable-apic
- .endif
- 
  .if defined(WITH_ASSERT_CHECK)
  CONFIGURE_ARGS+=--enable-assert-checks
  .else
--- 96,107 ----
***************
*** 158,169 ****
  CONFIGURE_ARGS+=--enable-configurable-msrs
  .endif
  
- .if defined(WITH_DAZ)
- CONFIGURE_ARGS+=--enable-daz
- .else
- CONFIGURE_ARGS+=--disable-daz
- .endif
- 
  .if defined(WITH_DEBUGGER)
  CONFIGURE_ARGS+=--enable-debugger
  .else
--- 126,131 ----
***************
*** 206,229 ****
  CONFIGURE_ARGS+=--disable-gdb-stub
  .endif
  
- .if defined(WITH_GLOBAL_PAGES)
- CONFIGURE_ARGS+=--enable-global-pages
- .else
- CONFIGURE_ARGS+=--disable-global-pages
- .endif
- 
  .if defined(WITH_IDLE_HACK)
  CONFIGURE_ARGS+=--enable-idle-hack
  .else
  CONFIGURE_ARGS+=--disable-idle-hack
  .endif
  
- .if !defined(WITH_IGNORE_BADMSR)
- CONFIGURE_ARGS+=--disable-ignore-bad-msr
- .else
- CONFIGURE_ARGS+=--enable-ignore-bad-msr
- .endif
- 
  .if defined(WITH_INSTRUMENT)
  CONFIGURE_ARGS+=--enable-instrumentation
  .else
--- 168,179 ----
***************
*** 236,247 ****
  CONFIGURE_ARGS+=--disable-iodebug
  .endif
  
- .if !defined(WITH_LARGE_PAGES)
- CONFIGURE_ARGS+=--disable-large-pages
- .else
- CONFIGURE_ARGS+=--enable-large-pages
- .endif
- 
  .if !defined(WITH_LOGGING)
  CONFIGURE_ARGS+=--disable-logging
  .else
--- 186,191 ----
***************
*** 254,277 ****
  CONFIGURE_ARGS+=--disable-long-phy-address
  .endif
  
- .if defined(WITH_MTRR)
- CONFIGURE_ARGS+=--enable-mtrr
- .else
- CONFIGURE_ARGS+=--disable-mtrr
- .endif
- 
  .if defined(WITH_MISALIGNDSSE)
  CONFIGURE_ARGS+=--enable-misaligned-sse
  .else
  CONFIGURE_ARGS+=--disable-misaligned-sse
  .endif
  
- .if defined(WITH_MOVBE)
- CONFIGURE_ARGS+=--enable-movbe
- .else
- CONFIGURE_ARGS+=--disable-movbe
- .endif
- 
  .if defined(WITH_MWAIT)
  CONFIGURE_ARGS+=--enable-monitor-mwait
  .else
--- 198,209 ----
***************
*** 296,319 ****
  CONFIGURE_ARGS+=--disable-all-optimizations
  .endif
  
- .if defined(WITH_PAE)
- CONFIGURE_ARGS+=--enable-pae
- .else
- CONFIGURE_ARGS+=--disable-pae
- .endif
- 
  .if defined(WITH_PCI)
  CONFIGURE_ARGS+=--enable-pci
  .else
  CONFIGURE_ARGS+=--disable-pci
  .endif
  
- .if defined(WITH_POPCNT)
- CONFIGURE_ARGS+=--enable-popcnt
- .else
- CONFIGURE_ARGS+=--disable-popcnt
- .endif
- 
  .if defined(WITH_PLUGINS)
  CONFIGURE_ARGS+=--enable-plugins
  .else
--- 228,239 ----
***************
*** 359,370 ****
  CONFIGURE_ARGS+=--with-sdl
  .endif
  
- .if defined(WITH_SEP)
- CONFIGURE_ARGS+=--enable-sep
- .else
- CONFIGURE_ARGS+=--disable-sep
- .endif
- 
  .if defined(WITH_SHOW_IPS)
  CONFIGURE_ARGS+=--enable-show-ips
  .else
--- 279,284 ----
***************
*** 376,382 ****
  WITH_CPU_LEVEL=	6
  .endif
  
! .if defined(WITH_SSE4) || defined(WITH_AES) || defined(WITH_XSAVE)
  CONFIGURE_ARGS+=--enable-sse=4 --enable-sse-extension
  WITH_CPU_LEVEL=	6
  .endif
--- 290,296 ----
  WITH_CPU_LEVEL=	6
  .endif
  
! .if defined(WITH_SSE4)
  CONFIGURE_ARGS+=--enable-sse=4 --enable-sse-extension
  WITH_CPU_LEVEL=	6
  .endif
***************
*** 414,425 ****
  CONFIGURE_ARGS+=--enable-vbe
  .endif
  
- .if !defined(WITH_VME)
- CONFIGURE_ARGS+=--disable-vme
- .else
- CONFIGURE_ARGS+=--enable-vme
- .endif
- 
  .if defined(WITH_VMX)
  CONFIGURE_ARGS+=--enable-vmx
  .else
--- 328,333 ----
***************
*** 451,462 ****
  CONFIGURE_ARGS+=--disable-xpm
  .endif
  
- .if defined(WITH_XSAVE)
- CONFIGURE_ARGS+=--enable-xsave
- .else
- CONFIGURE_ARGS+=--disable-xsave
- .endif
- 
  .if defined(WITH_CPU_LEVEL)
  .if ${WITH_CPU_LEVEL} < 3 || ${WITH_CPU_LEVEL} > 6
  IGNORE=		can not install: WITH_CPU_LEVEL must be an integer value between 3 and 6
--- 359,364 ----
*** distinfo.orig	Sat May 23 07:23:36 2009
--- distinfo	Wed Jul 14 15:10:42 2010
***************
*** 1,3 ****
! MD5 (bochs-2.4.tar.gz) = 45d19285bf68687772537c3eaeeb657f
! SHA256 (bochs-2.4.tar.gz) = 998d81c3cd8c022d2913c8d9d3bef4b9f171e2f685d5c8b5a5eb3b2cd92e4695
! SIZE (bochs-2.4.tar.gz) = 4041139
--- 1,3 ----
! MD5 (bochs-2.4.5.tar.gz) = fda7eadcd9590934d2901f8439631463
! SHA256 (bochs-2.4.5.tar.gz) = b948622a364c2e7da4221a6a4640ba2efa68422e1411ac377c69d37f46f67616
! SIZE (bochs-2.4.5.tar.gz) = 4059598
_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to