From tkato@prontomail.com  Mon Feb 10 07:31:08 2003
Return-Path: <tkato@prontomail.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id AD82237B401
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 10 Feb 2003 07:31:08 -0800 (PST)
Received: from socigeog.hmt.toyama-u.ac.jp (socigeog.hmt.toyama-u.ac.jp [160.26.63.48])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9859843FDD
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 10 Feb 2003 07:31:04 -0800 (PST)
	(envelope-from tkato@prontomail.com)
Received: from localhost (localhost [127.0.0.1])
	by socigeog.hmt.toyama-u.ac.jp (Postfix) with SMTP id 0B47B1C4
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 11 Feb 2003 00:31:01 +0900 (JST)
Message-Id: <20030211003025.0ba1a6e8.tkato@prontomail.com>
Date: Tue, 11 Feb 2003 00:30:25 +0900
From: KATO Tsuguru <tkato@prontomail.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: Update port: emulators/bochs to 2.0.2

>Number:         48143
>Category:       ports
>Synopsis:       Update port: emulators/bochs to 2.0.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    anholt
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 10 07:40:06 PST 2003
>Closed-Date:    Mon Feb 10 17:14:56 PST 2003
>Last-Modified:  Mon Feb 10 17:14:56 PST 2003
>Originator:     KATO Tsuguru
>Release:        FreeBSD 4.7-RELEASE-p4 i386
>Organization:
>Environment:
>Description:
- Update to version 2.0.2

Remove file:
files/patch-cdrom.cc
files/patch-font::fonts.dir

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/emulators/bochs/Makefile emulators/bochs/Makefile
--- /usr/ports/emulators/bochs/Makefile	Sat Jan 11 13:57:46 2003
+++ emulators/bochs/Makefile	Sat Feb  8 01:05:51 2003
@@ -7,7 +7,7 @@
 #
 
 PORTNAME=	bochs
-PORTVERSION=	2.0.1
+PORTVERSION=	2.0.2
 PORTEPOCH=	1
 CATEGORIES=	emulators
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:S/$/:bochs/} \
diff -urN /usr/ports/emulators/bochs/distinfo emulators/bochs/distinfo
--- /usr/ports/emulators/bochs/distinfo	Sat Jan 11 13:57:46 2003
+++ emulators/bochs/distinfo	Sat Feb  8 02:40:08 2003
@@ -1,2 +1,2 @@
-MD5 (bochs-2.0.1.tar.gz) = 8af4a88a2f58b86f3764b4375371be29
+MD5 (bochs-2.0.2.tar.gz) = 11bb4e7804f9fef3cda3822f03641b55
 MD5 (BIOS-bochs-1.4.1.gz) = b2d89ca9d3eb0f3bbb81e7202bd42076
diff -urN /usr/ports/emulators/bochs/files/patch-cdrom.cc emulators/bochs/files/patch-cdrom.cc
--- /usr/ports/emulators/bochs/files/patch-cdrom.cc	Sat Jan 11 08:59:22 2003
+++ emulators/bochs/files/patch-cdrom.cc	Thu Jan  1 09:00:00 1970
@@ -1,41 +0,0 @@
---- iodev/cdrom.cc	Sat Dec 14 21:29:42 2002
-+++ iodev/cdrom.cc	Fri Jan  3 13:21:31 2003
-@@ -101,6 +101,8 @@
- #include <sys/cdio.h>
- #include <sys/ioctl.h>
- #include <sys/disklabel.h>
-+// ntohl(x) et al have been moved out of sys/param.h in FreeBSD 5
-+#include <netinet/in.h>
- 
- // XXX
- #define BX_CD_FRAMESIZE 2048
-@@ -881,7 +883,7 @@
-     t.data_len = sizeof(tocentry);
-     t.data = &tocentry;
- 
--    if (ioctl (fd, CDIOREADTOCENTRYS, &tocentry) < 0)
-+    if (ioctl (fd, CDIOREADTOCENTRYS, &t) < 0)
-       BX_PANIC(("cdrom: read_toc: READTOCENTRY failed."));
- 
-     buf[len++] = 0; // Reserved
-@@ -910,7 +912,7 @@
-   t.data_len = sizeof(tocentry);
-   t.data = &tocentry;
- 
--  if (ioctl (fd, CDIOREADTOCENTRYS, &tocentry) < 0)
-+  if (ioctl (fd, CDIOREADTOCENTRYS, &t) < 0)
-     BX_PANIC(("cdrom: read_toc: READTOCENTRY lead-out failed."));
- 
-   buf[len++] = 0; // Reserved
-@@ -1123,9 +1125,8 @@
-   }
- #elif defined(__FreeBSD__)
-   {
--  // Read the TOC to get the data size, since disklabel doesn't appear
--  // to work, sadly.
--  // Keith Jones, 16 January 2000
-+  // Read the TOC to get the size of the data track.
-+  // Keith Jones <freebsd.dev@blueyonder.co.uk>, 16 January 2000
- 
- #define MAX_TRACKS 100
- 
diff -urN /usr/ports/emulators/bochs/files/patch-font::fonts.dir emulators/bochs/files/patch-font::fonts.dir
--- /usr/ports/emulators/bochs/files/patch-font::fonts.dir	Sun Jun  3 01:42:57 2001
+++ emulators/bochs/files/patch-font::fonts.dir	Thu Jan  1 09:00:00 1970
@@ -1,8 +0,0 @@
-
-$FreeBSD: ports/emulators/bochs/files/patch-font::fonts.dir,v 1.1 2001/06/02 16:42:57 sobomax Exp $
-
---- /dev/null	Wed May 30 02:21:05 2001
-+++ font/fonts.dir	Wed May 30 02:24:10 2001
-@@ -0,0 +1,2 @@
-+1
-+vga.pcf.gz vga
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->anholt 
Responsible-Changed-By: pat 
Responsible-Changed-When: Mon Feb 10 13:34:44 PST 2003 
Responsible-Changed-Why:  
Over to maintainer 

http://www.freebsd.org/cgi/query-pr.cgi?pr=48143 
State-Changed-From-To: open->closed 
State-Changed-By: anholt 
State-Changed-When: Mon Feb 10 17:01:04 PST 2003 
State-Changed-Why:  
Committed, thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=48143 
>Unformatted:
