From owner-svn-ports-all@freebsd.org Mon Nov 27 17:33:30 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F045DBA758; Mon, 27 Nov 2017 17:33:30 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 405EC7CAC5; Mon, 27 Nov 2017 17:33:30 +0000 (UTC) (envelope-from mmokhi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vARHXTRt066695; Mon, 27 Nov 2017 17:33:29 GMT (envelope-from mmokhi@FreeBSD.org) Received: (from mmokhi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vARHXT64066690; Mon, 27 Nov 2017 17:33:29 GMT (envelope-from mmokhi@FreeBSD.org) Message-Id: <201711271733.vARHXT64066690@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmokhi set sender to mmokhi@FreeBSD.org using -f From: Mahdi Mokhtari Date: Mon, 27 Nov 2017 17:33:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454975 - in head/emulators/bochs: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mmokhi X-SVN-Commit-Paths: in head/emulators/bochs: . files X-SVN-Commit-Revision: 454975 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Nov 2017 17:33:30 -0000 Author: mmokhi Date: Mon Nov 27 17:33:28 2017 New Revision: 454975 URL: https://svnweb.freebsd.org/changeset/ports/454975 Log: emulators/bochs: Update the port to the latest release Update the port to the latest release. take maintership as well Reviewed by: mat Differential Revision: https://reviews.freebsd.org/D13104 Added: head/emulators/bochs/files/patch-iodev_network_eth__socket.cc (contents, props changed) Modified: head/emulators/bochs/Makefile head/emulators/bochs/distinfo head/emulators/bochs/pkg-plist Modified: head/emulators/bochs/Makefile ============================================================================== --- head/emulators/bochs/Makefile Mon Nov 27 17:27:32 2017 (r454974) +++ head/emulators/bochs/Makefile Mon Nov 27 17:33:28 2017 (r454975) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= bochs -PORTVERSION= 2.6.8 -PORTREVISION= 4 +PORTVERSION= 2.6.9 PORTEPOCH= 2 CATEGORIES= emulators MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mmokhi@FreeBSD.org COMMENT= IA-32 (x86) PC emulator that runs DOS, Win 95, and more LICENSE= LGPL21 @@ -16,6 +15,7 @@ LICENSE= LGPL21 BROKEN_i386= does not build on i386 (../cpu.h:4513:117: error: 'regparm' parameter must be between 0 and 3 inclusive) USES= gmake libtool:keepla pkgconfig +USE_XORG= x11 GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_alsa_asoundlib_h=no \ ac_cv_header_ltdl_h=no @@ -269,7 +269,7 @@ post-build: @${LN} -sf .bochsrc ${WRKSRC}/bochsrc-sample.txt post-install: -.for f in bochs bximage +.for f in bochs bxhub bximage ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${f} .endfor Modified: head/emulators/bochs/distinfo ============================================================================== --- head/emulators/bochs/distinfo Mon Nov 27 17:27:32 2017 (r454974) +++ head/emulators/bochs/distinfo Mon Nov 27 17:33:28 2017 (r454975) @@ -1,2 +1,3 @@ -SHA256 (bochs-2.6.8.tar.gz) = 79700ef0914a0973f62d9908ff700ef7def62d4a28ed5de418ef61f3576585ce -SIZE (bochs-2.6.8.tar.gz) = 5075617 +TIMESTAMP = 1510759198 +SHA256 (bochs-2.6.9.tar.gz) = ee5b677fd9b1b9f484b5aeb4614f43df21993088c0c0571187f93acb0866e98c +SIZE (bochs-2.6.9.tar.gz) = 5169187 Added: head/emulators/bochs/files/patch-iodev_network_eth__socket.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/bochs/files/patch-iodev_network_eth__socket.cc Mon Nov 27 17:33:28 2017 (r454975) @@ -0,0 +1,25 @@ +--- iodev/network/eth_socket.cc.orig 2017-11-15 14:29:17 UTC ++++ iodev/network/eth_socket.cc +@@ -78,16 +78,21 @@ extern "C" { + #ifdef WIN32 + #include + #else ++#include + #include + #include + #include + #include + #include +-#include + #include + #include + #include ++#if defined(__FreeBSD__) ++#include ++#else ++#include + #include ++#endif + #include + #define closesocket(s) close(s) + typedef int SOCKET; Modified: head/emulators/bochs/pkg-plist ============================================================================== --- head/emulators/bochs/pkg-plist Mon Nov 27 17:27:32 2017 (r454974) +++ head/emulators/bochs/pkg-plist Mon Nov 27 17:33:28 2017 (r454975) @@ -1,4 +1,5 @@ bin/bochs +bin/bxhub bin/bximage man/man1/bochs.1.gz man/man1/bochs-dlx.1.gz