Bin32-wine with srgbtexture patch

Hey there,
it would nice to have a PKGBUILD for bin32-wine with srg texture patch (http://bugs.winehq.org/show_bug.cgi?id=12453)
S.b. could provide it?
thanks

I see.......thank you for the response.  I wondered if I had to compile for the chroot or simply use pacman -Syu.  That is indeed a large advantage. 
I went ahead and completely wiped bin32-wine, all of the dot files, and reinstalled Office 2007, Starcraft, and Deus Ex.  That fixed a bug in Office (files with space in file path not opening correctly from dolphin/konqueror/etc).
I also discovered that one of my problems with my games was that I somehow missed a few packages related to opengl.  I stll wasn't able to get Deus Ex working just yet.....
I may go ahead and do the chroot, as that seems like an easier way of doing things after the initial setup. 
If anyone has anymore input I would be grateful to hear it.

Similar Messages

  • [request] Wine with DX9 patches

    Can someone please, make a PKGBUILD for wine 0.9.52 with DX 9 Patches,
    Thanks in advance

    I made a PKGBUILD for wine 0.9.52, but i still don't know if it includes the direct x patches
    #canistra [email protected]
    _pkgsourcename=wine
    pkgname=wine
    pkgver=0.9.52
    pkgrel=1
    pkgrel32=1
    pkgdesc="Interperenter for the Windows 3.x and Win32 APIs"
    arch=('i686')
    url="http://www.winehq.com/"
    license=('LGPL')
    depends=('freetype2' 'fontconfig' 'libjpeg' 'libungif' 'alsa-lib' 'glut' 'libldap' 'libxslt' 'lcms' 'libxxf86dga'
    'freeglut' 'libxinerama' 'libxcursor' 'libxrandr' 'libxrender' 'libxdamage' )
    provides=('wine')
    conflicts=('wine')
    install=()
    source=(http://easynews.dl.sourceforge.net/sourceforge/wine/wine-$pkgver.tar.bz2)
    #md5sums=('b0fd553e2f11fe7553ac1717797befe6' 'f9a03e920ae59c9cb1d7f7175e9f7755')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr --sysconfdir=/etc --enable-opengl --with-x
    make depend || return 1
    make || return 1
    make prefix=$startdir/pkg/usr install || return 1
    # expand conflicts with textutils ( doesn't exist anymore ? )
    # mv $startdir/pkg/usr/bin/expand $startdir/pkg/usr/bin/wine-expand || return 1
    mkdir -p $startdir/pkg/etc/wine
    # mkdir -p $startdir/pkg/etc/profile.d
    # cp -r $startdir/src/$pkgname-$pkgver/documentation/samples $startdir/pkg/etc/wine

  • Wine with wglShareLists?

    Could someone make a PKGBUILD for wine with the patch provided on this page: http://opensimulator.org/wiki/RealXtend_Viewer_Linux

    punkrockguy318 wrote:Which works more effeciantly:  Wine with windows, or wine without windows?
    I have the latest wine installed.  I do not use the "Wine with Windows Installation".  I believe that part of the install script branch will just use some of your ".dll" and ".exe" files from the Windows partition.
    In my case, I just download the ".dll" files from http://www.dll-files.com/dllindex/index.shtml as I need them.  I set the debug environment variable when fine tuning apps, and it will spit out the ".dll" files it's looking for.  Then, I just download that ".dll" from that website and throw it in the "c:/windows/system" path.  It removes those warnings from the debug output next time I run that app.
    As far as efficiency, that question is a "catch 22".  When you use the actual ".dll" files and such from Windows itself, naturally, they should work more efficiently than a reverse engineered emulation lib.  However, you run the risk of breaking the Wine API by using the native Window ".dll" files.  So, breaking the Wine emulator for "efficiency" is hardly efficient.   But, even then, you can specify for each individual app whether or not to use native or built-in ".dll" files and such in your config file.
    The moral of that story is...keep a fresh Wine only installation, and tinker with adding native ".dll" files and such as you see fit.  Then, when it breaks, you can pinpoint the problem to using one specific file.  That's what I do and it gives me the flexibility/performance I need, and it's much simpler IMHO.

  • [SOLVED]Wow in bin32-wine-wow-hardware-cursor need help with patching

    Hi all.
    I have installed bin32-wine-wow-hardware-cursor from AUR and it's working pretty fine I must say. I still have one important issue. That is, that the cursor acts strange when holding the button pressed down, as you do when turning etc. The cursor then moves to the middle of the screen and shakes, until you release the button.
    There is a fix for this posted on the Ubuntuforums, but I don't know how to implement this in Arch. Trust me, I have tried in so many ways possible, but I don't have the knowledge to do this. Please help me, or point me in the right direction.
    http://ubuntuforums.org/showpost.php?p= … tcount=172
    I have managed to fix this problem myself. If any of you are wanting the same functionality as what i mentioned above, navigate to your mouse.c find the function update_mouse_state, and then make the changes below...
    static void update_mouse_state( HWND hwnd, Window window, int x, int y, unsigned int state, POINT *pt )
    struct x11drv_thread_data *data = x11drv_thread_data();
    char *hwgl;
    get_coords( hwnd, window, x, y, pt );
    hwgl = getenv("WINE_CURSOR");
    /* update the cursor */
    if (hwgl == NULL){
    if (data->cursor_window != window)
    data->cursor_window = window;
    wine_tsx11_lock();
    if (data->cursor) XDefineCursor( data->display, window, data->cursor );
    wine_tsx11_unlock();
    Thank you in advance.
    EDIT: To clear things out a bit. I am using 64-bit Arch.
    Last edited by n4h0j (2010-05-03 20:55:26)

    n4h0j wrote:
    itsbrad212 wrote:
    n4h0j wrote:
    Thx for the reply.
    However, I don't think that one includes the right patch either. That just looks like the 32-bit version of the bin32-wine-wow-hardware-cursor. And I cannot install that on my system.
    When talking about cursor issues there are 2.
    1. Getting hardware cursor in OpenGL.
    2. Irritating cursor-behavior when pressing down the buttons to turn etc.
    The package you refer to solves problem #1, so does the bin32-wine-wow-hardware-cursor. It's problem #2 that need fixing. I would assume, since it is just a cosmetic defect, no one else has bothered before me.
    But still, it's solvable in Ubuntu, and I am kind of a perfectionist.
    EDIT: Yes, I can see now that the mouse.c is in the archive. I would be able to edit myself. But (silly question) I won't be able to run the PKGBUILD with that source, right?
    Well, you could always edit the file then re-tar/bzip it.
    The PKGBUILD wiki article states:
    Note: If you need to supply files which are not downloadable on the fly, e.g. self-made patches, you simply put those into the same directory where your PKGBUILD file is in and add the filename to this array. Any paths you add here are resolved relative to the directory where the PKGBUILD lies. Before the actual build process is started, all of the files referenced in this array will be downloaded or checked for existence, and makepkg will not proceed if any are missing.
    So basically, edit the PKGBUILD and set the source to the location of the newly bziped file you have after applying the patch. Then it should use that one instead
    But, that won't be possible on a 64-bit system, right? I can't use the 32-bit source.
    Or am I missing some piece of the puzzle here?
    I think I'm missing part of the puzzle....
    Ok, title of thread: "bin32-wine-wow-hardware-cursor"
    That makes me assume 32-bit
    Next, source file you downloaded:
    wine-wow-hardware-cursor-1.1.43-1-i686.pkg.tar.gz
    Again, 32-bit...
    I'm confused with what you want now
    Last edited by itsbrad212 (2010-05-03 07:17:47)

  • Wine 1.0 for 64 bit with CoD4 patch.

    If anyone wants the new wine with the CoD4 patch. (So you can play Call of Duty 4 with this.)
    Version: 1.0 rc1-1
    Architecture: x86_64
    pacman -U http://download249.mediafire.com/yue2jvbxom9g/m4qtpxjabap/wine-1.0_rc1-1-i686.pkg.tar.gz
    That ought to do it....
    Hope this helps someone.

    Moved to "Multimedia and Games".
    And since nobody has told you yet, thanks for your help (even though I will not be using the package)

  • Wine with d3d command stream patches

    hello,
    i created pkgbuild for those who want to try it out
    aur: https://aur.archlinux.org/packages/wine-d3dstream
    git:https://github.com/xpander69/xpander-ar … -d3dstream
    aur git build:https://aur.archlinux.org/packages/wine-d3dstream-git/
    read about it:
    http://www.winehq.org/pipermail/wine-de … 01106.html
    also dont forget to add the registry key
    HKCU/Software/Wine/Direct3D/CSMT =
    "enabled"
    benchmarks:
    CSMT=enabled: https://dl.dropboxusercontent.com/u/287 … nabled.png
    CSMT=disabled: https://dl.dropboxusercontent.com/u/287 … sabled.png
    more benchmarks (with my 660TI this time):
    https://www.youtube.com/watch?v=NPlJi9uLPs0
    and new video with SimpleScreenRecorder: https://www.youtube.com/watch?v=8r_dSJ6uwms
    Last edited by xpander (2014-01-13 13:15:22)

    progandy wrote:Why that?
    It is just as easy as your method, so I don't see a problem (since everything is being done by hand; updating the sums from a script would be another story).
    progandy wrote:And use a loop with ls to applay the patches, it will be shorter.
    Why *that*?
    http://mywiki.wooledge.org/ParsingLs
    What you want is globs:
    for f in "$srcdir"/*.patch; do
    patch -p1 <"$f"
    done
    @topic
    I tested it with Starcraft II a couple of days ago and unfortunately I didn't notice any differences. I had a replay with a lot of units on the screen at the end of the game, and I just watched this one scene with various Wine configurations. Vanilla gave me ~20 fps on two cores and ~24 with one (using taskset), and it was the same with these patches applied. With the older patch for Nvidia and __GL_THREADED_OPTIMIZATIONS=1 it jumped to 30-35 fps.
    Maybe it's because of my CPU; it would be great to see other people reporting their experiences. I'll try to test my config today/tomorrow (more extensively this time).

  • Rebel XT and Win 7 compatability patch.

    Has anyone come out with a patch so it will work with Win 7 or later? I have tried Virtual window and it fails to recognize the camera. I am looking for software, 3rd party or otherwise to fix the incompatability.
    Thanks,
    Tony

    Found this.
    http://community.usa.canon.com/t5/EOS-Rebel/Windows-7-64-bit-driver-for-Canon-Digital-Rebel-XT/td-p/...
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • [SOLVED]bin32-wine 1.1.1 opengl error

    Trying to start counter-strike 1.6 on arch64 I get the error
    Error initializing gl driver, check that the file 'opengl32.dll' exists
    Using xf86-video-intel driver, direct rendering enabled. Used to work with older versions of wine, but no longer...
    Last edited by low (2008-07-20 11:58:43)

    ok fixed, i installed perfect world to see if it a steam specific error, and it was not, but i got a lot more readable output from the perfect world launcher. turns out lib32xdamage was not installed and is a dependency.... not listed in bin32-wine or the bin32-wine-suse PKGBUILD....

  • Native Direct3D 9 in wine with mesa 10.4

    Since mesa was just updated to 10.4 and the news told me it now comes with the DX9 state tracker from gallium-nine incorporated in it (!!!)  I decided to give it a try in wine with some games to see if the performance is really that much better.
    So, I compiled the needed patched version of wine from https://github.com/iXit/wine/ , without enabling native Direct3D 9 it worked fine, when I enabled it, it didn't work since it was looking for the 32 bit d3d libs in /usr/lib instead of in /usr/lib32 (!!) , since I din't really wan't to mess with too much stuff right then I just did a temporary copy paste of the 32bit libs into /usr/lib.
    After "fixing" that the red error message was gone, promising, but I still only got a black screen instead of glorious native DX9 on linux (kinda)... :C
    Some error messages caught my attention:
    err:d3dadapter:dri3_create_adapter9 DRI3Open failed (fd=1114132)
    err:d3d9:d3dadapter9_new No available native adapters in system.
    It looks like I'm missing something... no idea what, isn't mesa supposed to contain everything that's needed now ?, I haven't tried the AUR packages, which seem a little outdated anyway, I was only trying this since it's now in the official mesa release.
    Well, since I don't know what is it that I'm missing and the internet did nothing but confuse me when I searched for it I require your assistance, any help will be appreciated.
    Last edited by LucetLux (2015-01-24 17:15:43)

    First of all thanks for your suggestions.
    @ackalker I already have that enabled, I kind of said it in the first post , I might end up in the IRC channel if I can't get it working, but I thought looking here first was a better starting point, since I'm looking to get the thing to work on arch anyway.
    About the IRC log, I already checked that out, the thing is, that is about gallium-nine and some patching around quite some time before it was integrated into mainstream mesa, I could look into getting the unofficial version to run, but since d3d9 support is now in mesa I thought it wouldn't be necessary.
    @smirky I don't know how that would be that much different from just making it without installing and running it from that same folder which is what I did, I tried it anyway, compilation took like 10 times as long for some reason, I still get the same messages after that.
    I've gotta say that I'm rather impressed, getting d3d9 to work natively on linux is no easy feat, for what is essentially an initial release this is quite promising, even if there still are a lot of bugs in it and performance is still not as good as on windows and if it is realistically only useful for wine, we are likely going to be stuck with crappy ports (the fact that the first release of this is already surpassing a lot of "native" ports in performance is just telling of how much work really goes into linux ports) and tons of windows-exclusive releases for a while, that's without mentioning legacy support for thousands of d3dx9 games and applications in general.
    Anyway, thank you both again for your help, but I'm kid of back to square one, I don't think this is an issue with wine, but rather with mesa, apparently I should install xf86-video-ati with d3dx9 patches (it also mentions ati-dri, isn't that discontinued ?), the aur script isn't working, it fails to compile, so I assume the source has changed a bit since it was updated back in august.
    Last edited by LucetLux (2014-12-26 18:18:50)

  • Bin32-wine vs 32-bit chroot environment

    I run Arch x86_64 with bin32-wine for all of my windows applications, however I was wondering if there are any advantages (compatibility, speed, etc.) to running a 32-bit chroot environment for all of my 32 bit apps (which would only be wine). 
    Currently I only use wine for Office 2007, however I would like to run Deus Ex and Starcraft (maybe others in the future), and I'm currently unable to get Starcraft running.  Deus Ex runs in windowed mode with safe mode on, but very poorly.
    System specs:
    ASUS UL30A U7300 dual core 1.3 GHz
    4 GB DDR3
    Intel GMA4500 MHD graphics
    Any thoughts on this?  Thanks in advance

    I see.......thank you for the response.  I wondered if I had to compile for the chroot or simply use pacman -Syu.  That is indeed a large advantage. 
    I went ahead and completely wiped bin32-wine, all of the dot files, and reinstalled Office 2007, Starcraft, and Deus Ex.  That fixed a bug in Office (files with space in file path not opening correctly from dolphin/konqueror/etc).
    I also discovered that one of my problems with my games was that I somehow missed a few packages related to opengl.  I stll wasn't able to get Deus Ex working just yet.....
    I may go ahead and do the chroot, as that seems like an easier way of doing things after the initial setup. 
    If anyone has anymore input I would be grateful to hear it.

  • Looking for a site that shows problems with windows patches or updates.

    Looking for a site that shows problems with windows patches or updates...so I know what not to install.
    Plenty of sites list and summarize individual patches, I want one that consolidates problems and complaints so I can better assess the risk. Currently I'm waiting to install patches several days and doing google searches. That works, but I'd rather find a place
    that does it with expertise.
    Which forums would be best to look for such problems.
    Thanks in and advance for suggestions

    Hi,
    I agreed with Cyber and Rick.
    Windows update helps to keep your PC safer—and your software current—by fetching the latest security and feature updates from Microsoft via the Internet.
    Although there might be some problems when installing it, Windows update is not the one to blame.
    For troubleshooting Windows updates, if needed:
    Fix Microsoft Windows Update Issues
    http://support2.microsoft.com/gp/windows-update-issues
    Best regards
    Michael Shao
    TechNet Community Support

  • Exporting audio with a patch?

    I have been using Logic Pro X to record some musical tracks in my studio. The sound quality of the program is phenomenal. I haven't ever had the idea to switch programs, it's just this one thing that gets me. So my question is, How do you export one of the audio tracks you lay down WITH the patch you added to it? I have put patches on the tracks before and tried exporting the track as an audio file, but it does not export it with the patch I put on it in Logic Pro X (it only exports the audio that was recorded originally). Please Help! I have struggled with this one area for so long, I have even gotten "I Don't Know" from Apple support members, given that this is a very complex program with all of the possibilities, i understand that they don't. Therefore, I am asking you guys. Thank you so much!
    I am using Logic Pro X 10.1.1
    iMac with OS X Yosemite 10.10.2

    Use the word "Bounce" as a search term.
    http://help.apple.com/logicpro/mac/10/

  • Reading the EDI X12 file not working with the patch 8233048

    Hi
    I have installed the latest path 8233048 on my windowsXP system, now I am not able to see the File being polled and processed.
    In b2b.log I can see the last message as "oracle.tip.adapter.b2b.data.MsgListener:run start listening on message" after that no log.
    In b2b_dc_transport.log, I can see only
    2009.02.07 at 20:35:45:236: B2BStarter thread: (DEBUG) TransportProperties.TransportProperties():http.receiver.registry_port=5110;smtp.receiver.protocol=imap;PROTOCOL_ENDPOINT=null;file.receiver.polling_interval=30;polling_interval=30;http.receiver.instance_name=IP;
    2009.02.07 at 20:35:45:266: B2BStarter thread: (DEBUG) initialize TransportReceiver: [IRIS_Transport_Server < file > < IRIS >]
    2009.02.07 at 20:35:45:266: B2BStarter thread: (DEBUG) FileReceiver.init() started ....
    2009.02.07 at 20:35:45:287: B2BStarter thread: (DEBUG) FileReceiver.init() completed.
    Could you please tell me if I need to do any changes.
    This is working on b2b with only patch: 5907304 which is installed in another windows XP system.
    The same configuration with the latest patch is not working.
    Edited by: Praveena Paruchuru on Mar 7, 2009 7:56 AM

    Hi Dheeraj,
    I have restarted my system many times, not only B2B.
    I have taken the print out of both the tip.properties and compared line by line and wanted to check out which line was making it not to function.
    I added the mismatching lines one by one by one, it was working for all teh updates. Finally I changed it to my new tip.properties.
    Then surprisingly it is working.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Xorg pathed with IR patch

    Anyone want to make PKGBUILD for xorg patched with IR patch which can be found on http://forum.compiz-fusion.org/showpost … ostcount=1 .. ?
    I would do it, but I don't want to make mistake in PKGBUILD ....

    Yup This is arch.
    Did a pacman -syu today
    [geniesis@skynet ~]$ pacman -Qi xorg
    Name           : xorg
    Version        : 11R7.0-1
    Yes, i know its a dummy package. But it references the versions.
    [geniesis@skynet ~]$ pacman -Qi xorg-server
    Name           : xorg-server
    Version        : 1.5.3-4
    [geniesis@skynet ~]$ pacman -Qi nvidia
    Name           : nvidia
    Version        : 180.22-1
    [geniesis@skynet ~]$ pacman -Qi nvidia-utils
    Name           : nvidia-utils
    Version        : 180.22-1
    [geniesis@skynet ~]$ uname -a
    Linux skynet 2.6.28-ARCH #1 SMP PREEMPT Sun Jan 25 09:43:53 UTC 2009 x86_64 Dual Core AMD Opteron(tm) Processor 280 AuthenticAMD GNU/Linux
    Its still happening. And its the same error as before.

Maybe you are looking for

  • Why do we use java.io.serializable

    i was studing javabeans. i found out we implements java.io.serializable. can anyone explain why do we use it? S

  • Code java sections

    Hi All, Can we right code in Initialization section of Java Sections of Java sections? Thanks in advance Best Regards, Harleen Kaur Chadha

  • Loading .avi from database?

    I have a database with the paths to .avi's. I would like to now how can i load them in java defining height and width. Thanks

  • How to get specific interim release?

    hey... Advisory ID: cisco-sa-20090408-asa describes a vulnerability that applies to an ASA 5520 I administer. The advisory page, http://www.cisco.com/warp/public/707/cisco-sa-20090408-asa.shtml, says this: 8.0(4)25: earliest fixed version, 8.0(4)28:

  • Video(Graphic) Problem

    Hello there. I just bought a lenovo ideaPad n580.Everything looks great till i open youtube and play some video. Than even on the highest  resolution 1080px the video is not good i can see squears(pixels) and the video is not smooth is pixelate. Also