From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dg5Zr-0003I3-1B for qemu-devel@nongnu.org; Wed, 08 Jun 2005 14:46:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dg5Zq-0003HV-A5 for Qemu-devel@nongnu.org; Wed, 08 Jun 2005 14:46:58 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dg5ZB-0002t6-Nc for Qemu-devel@nongnu.org; Wed, 08 Jun 2005 14:46:17 -0400 Received: from [195.129.94.252] (helo=srv94-252.ip-tech.ch) by monty-python.gnu.org with esmtp (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA:24) (Exim 4.34) id 1Dg5Ps-0007XK-G6 for Qemu-devel@nongnu.org; Wed, 08 Jun 2005 14:36:40 -0400 Message-ID: <42A739D4.4090805@kberg.ch> Date: Wed, 08 Jun 2005 20:32:52 +0200 From: Mike Kronenberg MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020206090908090501060400" Subject: [Qemu-devel] OS X Package Maintainer Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------020206090908090501060400 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Pierre has asked me to maintain the OS X package. I will glady take this task. To keep things simple for enduser, I plan to make packages for the cocoa flavour of qemu. If You think there should also a sdl package, please inform me. Layout of the Package: Container: QEMU-0.7.x.dmg (compressed with attached License) Application: QEMU.app +-Contents/ +--info.plist +--PkgInfo +--MacOS/ +---qemu +---qemu-img +--share/ +---doc/ +----qemu/ +----man/ +----qemu/ I patch the cocoa.m to make the package path-independent. (Patch attached). There will be nightlies everytime Fabrice announces changes to the list. You will find the packages at: http://www.freeoszoo.org/download.html http://www.kberg.ch/qemu/ have fun Mike --------------020206090908090501060400 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="cocoa.m_1.4_pathindependent.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cocoa.m_1.4_pathindependent.diff" Index: cocoa.m =================================================================== RCS file: /cvsroot/qemu/qemu/cocoa.m,v retrieving revision 1.4 diff -u -r1.4 cocoa.m --- cocoa.m 7 Apr 2005 20:36:50 -0000 1.4 +++ cocoa.m 8 Jun 2005 18:21:23 -0000 @@ -579,6 +579,9 @@ QemuCocoaGUIController *gui_controller; CPSProcessSerNum PSN; + /* overrun defaults for bios_dir, so we can run qemu everywhere */ + bios_dir = [ [ NSString stringWithFormat:@"%@/share/qemu", [ [ [ NSBundle mainBundle ] resourcePath ] stringByDeletingLastPathComponent ] ] cString ]; + [NSApplication sharedApplication]; if (!CPSGetCurrentProcess(&PSN)) --------------020206090908090501060400--