Date: Mon, 9 Dec 2013 15:32:46 +0000 (UTC) From: Max Brazhnikov <makc@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335998 - in head/emulators/aqemu: . files Message-ID: <201312091532.rB9FWkP4064478@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: makc Date: Mon Dec 9 15:32:46 2013 New Revision: 335998 URL: http://svnweb.freebsd.org/changeset/ports/335998 Log: - Update to 0.8.2 - Add patches to fix build on head Added: head/emulators/aqemu/files/patch-System_Info.cpp - copied unchanged from r335832, head/emulators/aqemu/files/patch-System__Info.cpp head/emulators/aqemu/files/patch-VM.cpp (contents, props changed) Deleted: head/emulators/aqemu/files/patch-System__Info.cpp Modified: head/emulators/aqemu/Makefile head/emulators/aqemu/distinfo (contents, props changed) head/emulators/aqemu/pkg-plist Modified: head/emulators/aqemu/Makefile ============================================================================== --- head/emulators/aqemu/Makefile Mon Dec 9 15:12:08 2013 (r335997) +++ head/emulators/aqemu/Makefile Mon Dec 9 15:32:46 2013 (r335998) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= aqemu -PORTVERSION= 0.8.1 -PORTREVISION= 1 +PORTVERSION= 0.8.2 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:S,.0$,,}/ Modified: head/emulators/aqemu/distinfo ============================================================================== --- head/emulators/aqemu/distinfo Mon Dec 9 15:12:08 2013 (r335997) +++ head/emulators/aqemu/distinfo Mon Dec 9 15:32:46 2013 (r335998) @@ -1,2 +1,2 @@ -SHA256 (aqemu-0.8.1.tar.bz2) = 0fab894e5f49f688122ad15065bbdf278def1425a5d43ad2d64a21caf8dec41a -SIZE (aqemu-0.8.1.tar.bz2) = 963345 +SHA256 (aqemu-0.8.2.tar.bz2) = 03c4a95328f78238021168ca4887f9735641f10eb4eb1eff58b08c15b748bf03 +SIZE (aqemu-0.8.2.tar.bz2) = 1025129 Copied: head/emulators/aqemu/files/patch-System_Info.cpp (from r335832, head/emulators/aqemu/files/patch-System__Info.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/aqemu/files/patch-System_Info.cpp Mon Dec 9 15:32:46 2013 (r335998, copy of r335832, head/emulators/aqemu/files/patch-System__Info.cpp) @@ -0,0 +1,10 @@ +--- System_Info.cpp.orig 2010-12-09 15:59:16.000000000 +0000 ++++ System_Info.cpp +@@ -20,6 +20,7 @@ + ** + ****************************************************************************/ + ++#include <unistd.h> + #include <QSettings> + #include <QRegExp> + #include <QProcess> Added: head/emulators/aqemu/files/patch-VM.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/aqemu/files/patch-VM.cpp Mon Dec 9 15:32:46 2013 (r335998) @@ -0,0 +1,20 @@ +--- ./VM.cpp.orig 2011-07-26 19:36:32.000000000 +0000 ++++ ./VM.cpp 2013-12-07 17:23:12.244540117 +0000 +@@ -4563,7 +4563,7 @@ + else + AQError( "bool Virtual_Machine::Load_VM( const QString &file_name )", "SPICE image compression type invalid!" ); + +- SPICE.Use_Video_Stream_Compression( Second_Element.firstChildElement( ! "Use_Video_Stream_Compression" ).text() == "false" ); ++ SPICE.Use_Video_Stream_Compression( ! (Second_Element.firstChildElement( "Use_Video_Stream_Compression" ).text() == "false") ); + + SPICE.Use_Renderer( Second_Element.firstChildElement( "Use_Renderer" ).text() == "true" ); + +@@ -4595,7 +4595,7 @@ + SPICE.Set_Renderer_List( rendererList ); + } + +- SPICE.Use_Playback_Compression( Second_Element.firstChildElement( ! "Use_Playback_Compression" ).text() == "false" ); ++ SPICE.Use_Playback_Compression( ! (Second_Element.firstChildElement( "Use_Playback_Compression" ).text() == "false") ); + + SPICE.Use_Password( Second_Element.firstChildElement( "Use_Password" ).text() == "true" ); + Modified: head/emulators/aqemu/pkg-plist ============================================================================== --- head/emulators/aqemu/pkg-plist Mon Dec 9 15:12:08 2013 (r335997) +++ head/emulators/aqemu/pkg-plist Mon Dec 9 15:32:46 2013 (r335998) @@ -1,8 +1,11 @@ bin/aqemu man/man1/aqemu.1.gz share/applications/aqemu.desktop +share/aqemu/English.qm +share/aqemu/French.qm share/aqemu/German.qm share/aqemu/Russian.qm +share/aqemu/Ukrainian.qm share/aqemu/aqemu_links.html share/aqemu/crystalsvg_icons.rcc share/aqemu/os_icons/alt.png
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312091532.rB9FWkP4064478>