Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Nov 2019 09:43:08 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r518393 - in head/emulators: . qemu31
Message-ID:  <201911250943.xAP9h8B5008387@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bofh
Date: Mon Nov 25 09:43:08 2019
New Revision: 518393
URL: https://svnweb.freebsd.org/changeset/ports/518393

Log:
  [NEW] emulators/qemu31: QEMU CPU Emulator - 3.1.X version
  
  QEMU is a FAST! processor emulator using dynamic translation to achieve
  good emulation speed.
  QEMU has two operating modes:
  
  * Full system emulation. In this mode, QEMU emulates a full system
    (for example a PC), including a processor and various peripherials.
    It can be used to launch different Operating Systems without rebooting
    the PC or to debug system code.
  * User mode emulation (Linux host only). In this mode, QEMU can launch
    Linux processes compiled for one CPU on another CPU. It can be used to
    launch the Wine Windows API emulator or to ease cross-compilation and
    cross-debugging.
  
    As QEMU requires no host kernel patches to run, it is very safe and easy to use.
  
    See also the preconfigured system images on http://oszoo.org/
    Many live cd isos also work.
  
  WWW: http://wiki.qemu.org/Main_Page
  
  This is a repocopy of emulators/qemu as qemu will be updated to latest
  STABLE 4.1.X branch

Added:
  head/emulators/qemu31/
     - copied from r515613, head/emulators/qemu/
Modified:
  head/emulators/Makefile
  head/emulators/qemu31/Makefile

Modified: head/emulators/Makefile
==============================================================================
--- head/emulators/Makefile	Mon Nov 25 09:39:59 2019	(r518392)
+++ head/emulators/Makefile	Mon Nov 25 09:43:08 2019	(r518393)
@@ -116,6 +116,7 @@
     SUBDIR += qemu-user-static
     SUBDIR += qemu-utils
     SUBDIR += qemu30
+    SUBDIR += qemu31
     SUBDIR += qemu40
     SUBDIR += qmc2
     SUBDIR += quasi88

Modified: head/emulators/qemu31/Makefile
==============================================================================
--- head/emulators/qemu/Makefile	Fri Oct 25 14:03:31 2019	(r515613)
+++ head/emulators/qemu31/Makefile	Mon Nov 25 09:43:08 2019	(r518393)
@@ -5,10 +5,11 @@ PORTNAME=	qemu
 PORTVERSION=	3.1.1.1
 CATEGORIES=	emulators
 MASTER_SITES=	https://download.qemu.org/
+PKGNAMESUFFIX=	31
 DIST_SUBDIR=	qemu/${PORTVERSION}
 
 MAINTAINER?=	bofh@FreeBSD.org
-COMMENT?=	QEMU CPU Emulator
+COMMENT?=	QEMU CPU Emulator - 3.1.X version
 
 LICENSE=	GPLv2
 
@@ -16,18 +17,11 @@ LIB_DEPENDS?=	libnettle.so:security/nettle \
 		libfontconfig.so:x11-fonts/fontconfig \
 		libfreetype.so:print/freetype2
 
-.if !defined(PKGNAMESUFFIX) || (${PKGNAMESUFFIX} != "-utils" && ${PKGNAMESUFFIX} != "-guest-agent")
-ONLY_FOR_ARCHS=	amd64 i386 powerpc powerpc64
-USES?+=		xorg
-USE_XORG=	pixman
-USE_GNOME+=	cairo glib20 libxml2
-.endif
-
 USES?=		compiler:c11 cpe gmake gnome pkgconfig bison perl5 \
 		python:build tar:xz
 USE_PERL5=	build
 
-PORTSCOUT=	limit:^3\.0\.
+PORTSCOUT=	limit:^3\.1\.
 
 HAS_CONFIGURE=	yes
 MAKE_ENV+=	BSD_MAKE="${MAKE}" V=1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911250943.xAP9h8B5008387>