Someone else confirm build problems with this package [handbrakegtk]

I've tried unsuccessfully to build the handbrakegtk package in the AUR which is the only one in the AUR that gives the stable build of the GUI for this software (the official repo contains the CLI version).  Can someone else confirm that it doesn't build on their system as a sanity check for me?  I'm running Arch 2009.2/x86_64 and the system is up-to-date.
I posted the last few lines and resulting error as a comment on the handbrakegtk's page referenced above.
Thanks!
Last edited by graysky (2009-04-19 19:23:03)

Update: I think the problem is a missing dep. I looked at some deps from the other handbrake packages here and ended-up installing the following ones which led to a successful package build:
subversion yasm iso-codes intltool gstreamer0.10-base gtkhtml cairo phonon ftjam
Since the package in question depends on: gtkhtml ftjam yasm and intltool, it must be one or more of the following that are required to successfully build:
subversion iso-codes gstreamer0.10-base cairo phonon
Anyway, just wanted to pass the info along in case someone else runs into this.

Similar Messages

  • Unable to update itunes. help. error message when trying to update to latest version of itunes. "the installer has encountered an unexpected error installing this package. this may indicate a problem with this package. error code 2721"

    unable to update itunes. help. error message when trying to update to latest version of itunes. "the installer has encountered an unexpected error installing this package. this may indicate a problem with this package. error code 2721"

    Hello chae84swangin,
    I recommend following the steps in the article below when getting an error message trying to install iTunes:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I can't install wmpfirefoxplugin at Firefox 4, It show "The installer has encountered an unexpected error installing theis package. This may indicate a problem with this package. The error code is 2755.

    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2755.

    Although you're getting a different error message, perhaps try the procedure from the following user tip:
    "The administrator has set policies to prevent this installation" error messages when installing iTunes for Windows on Windows Vista and Windows 7 systems

  • The installer has encountered an unexpected error installing this package.This may indicate a problem with this package. The error code is 2869

    Hi,
    I am getting error "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2869." while installing SAP B1DE.
    Note:
    Downloaded the B1DE from B1DE:SAP Business One Development Environment Tools
    Using Window XP , .Net 2008, SAP B1 8.81 Version
    Company Name, Contact Person, Namespace all were given while installing. All of its length is less than 8
    Any help is appreciated.
    Thanks in advance.
    Parvatha Solai.N

    Hi,
    Try post a comment in B1DE 2.0.1 new version! blog.
    Beni.

  • I get this error when I try to install iTunes 10.7: "The installer has encountered an unexpected error installing this package. This may indocate a problem with this package. The error code is 2203."

    I am running Windows 7 64bit. I downloaded the latest version of iTunes and ran the installer. This message pops up, I click OK and the installation continues. Then, when I try to launch iTunes I get this: "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 5)". I have also received this error message even when the installation hasn't had any problems. I have uninstalled, reinstalled, restarted, repaired my .net framework,  uninstalled all components following the steps in Article: HT1923 http://support.apple.com/kb/HT1923 all to no avail. It still won't run. It was working perfectly before I updated it to 10.7. After that it all went to crap. I even tried installing the previous version and still get this error message. Any suggestions?

    Okay ... so it's not one of the cases of bodged up ACLs on the Apple folder in Common Files. (That's been underlying a few of the recalcitrant E7W5s.
    Just in case, let's try the fixit from the following document:
    Fix problems with programs that can't be installed or uninstalled

  • The installer has encountere​d an unexpected error installing this package. This may indicate the problem with this package. The error code is 2705.

    When I creat setup project in Visual Studio 2005 with only cvirte.msm merge module installer finish the unstallation successfully, however the program asks for MESA.DLL. When the NImesa.msm is added to the installation package the installer fails witht the error code 2705. The exact message is indicated as the "Subject".
    How can I overcome the problem?
    Solved!
    Go to Solution.

    Hi nikki7,
    Are you using a non-english operating system? If you are, then the KnowledgeBase article I included below should be helpful. I hope this helps!
    Error -2705 from the MSI Installer Built with the Visual Studio .NET Installation Builder: http://digital.ni.com/public.nsf/allkb/19CA3B8F15B​4FB9386256DDA006DFED8?OpenDocument
    Regards,
    Jason D
    Applications Engineer
    National Instruments

  • HT1338 There's not enough contrast in my 2012 MacBook Air display. Does anyone else have a problem with this? Can I fix it?

    When I watch streaming shows or movies on my Air the contrast is lousy. If it's a dark scene you can hardly see anything. Does anyone else have this issue? I've got it as bright as it lets me go.

    It seems that my pioneer DVD drive ate my disc and no matter what I do, I can't get it out.
    What have you done so far?  Provide details on what you have done to date in the way of troubleshooting and the results.  In doing so, the helpers here will avoid the "been there done that" response scenerio. 
    Have you tried any of the suggestions mentioned in this thread:  The Stuck CD/DVD Thread
    how hard is it to take the iMac apart?
    If your model iMac is not user repairable, do a Google search for DIY instructions.  Two places to start is iFixit and YouTube's tutorials.
    What is a good replacement for it?
    External CD/DVD burners.  Check out OWC & Lacie websites for CD/DVD drives.  Make sure you read the system requirements for the drives.
    Good luck!

  • Someone else has a problem with volume button getting stuck?

    My volume button gets stuck when I keep pressing it, it's software or hardware issue?

    Restore as new, if that fixes the problem it is something in your settings or backup that was causing the issue.
    If it does not fix the problem, you have a hardware issue.

  • Can someone tell me the problem with this (very basic) code

    I know it's very basic but here goes
    public class MilesAndFurlongs
    // the constructor
    public MilesAndFurlongs (int Furlongs, int Miles)
    amountFurlongs = Furlongs;
    amountMiles = Miles;
    // method to add one to furlong
    public void increment()
    amount = (amount + 1);
    // method to print out total number of furlongs and miles
    public void displayLength()
    system.out.println("Furlongs: " + amountFurlongs);
    system.out.println("Miles: " + amountMiles);
    bluej says theres an illegal start of expression in displaylength()
    i know its going to be something stupid :D

    this is all of it updated...
    public class MilesAndFurlongs
    // the constructor
    public MilesAndFurlongs (int Furlongs, int Miles)
    amountFurlongs = Furlongs;
    amountMiles = Miles;
    // method to add one to furlong
    public void increment()
    amount = (amount + 1);
    // method to print out total number of furlongs and miles
    public void displayLength()
    system.out.println("Furlongs: " + amountFurlongs);
    system.out.println("Miles: " + amountMiles);
    Message was edited by:
    jaytabbmeister

  • Error code 2318 (problem with installation package) HELP

    Ok so I tried to download itunes earlier today, and it went fine until the very end, I got this message...
    ''The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2318''
    So I went through and tried to repair the itunes to no avail. So I removed everything and ran the microsoft installer cleanup utility, then re-installed itunes and quicktime. Again everything went fine until the end, got the same ''2318'' error message. Itunes shows up on my desktop, as does quicktime. When I click itunes I get a pop up window telling me the application must close due to error, would I like to send an error report.
    So I went back and uninstalled everything AGAIN, and now its downloading again. I'm getting kidn of peeved... can anyone help me?

    ok I got it. Had to end up doing a small overhaul on the computer to remove the corrupted ''sample.mov'' file out of the quicktime folder, but its working now.

  • "There is a problem with this installer package - script is required to complete install," - please can someone clarify script supplied.

    I have downloaded EMET 4.1 but it will not install -
    "There is a problem with this Windows installer package. A script required for this install to complete. Contact your support personnel or package vendor."
    I have seen the same problem answered in the support section with a script posted as follows, and wondered if it would solve my problem - only  there is no explanation with it and I have no idea what to do with it! Forgive my ignorance but could someone
    please explain what to do with it please? Many thanks.
    (I looked up the other thread but I was no wiser.)
    This thread is probably a dublet of http://social.technet.microsoft.com/Forums/pt-BR/ab0ee94b-ce61-4a62-8478-41a1e8ac39e2/emet-40-installation-fails-with-error-code-1720?forum=emet
    Please create and check a verbose Installer logfile: msiexec.exe /?
    _FA2E7A16_A819_4F3A_AB7E_0A039BE81BD7 refers the Custom Install Action Blob _6A58D16B437E5B268B3B9D09B8746240 which conatins this vb script in EMET 4.1:
    ' Begin
    REM kill the old EMET 3.0 Notifier process if running (upgrade scenario)
    strAppName = "emet_notifier.exe"
    Set objProcesses = GetObject("winmgmts://" & strMachine).ExecQuery("SELECT * FROM Win32_Process WHERE Caption LIKE '" & strAppName & "'")
    For Each objProcess In objProcesses
        intRetVal = objProcess.Terminate(0)
    Next
    REM kill EMET Agent 4.0 process if running (re-installing scenario)
    strAppName = "emet_agent.exe"
    Set objProcesses = GetObject("winmgmts://" & strMachine).ExecQuery("SELECT * FROM Win32_Process WHERE Caption LIKE '" & strAppName & "'")
    For Each objProcess In objProcesses
        intRetVal = objProcess.Terminate(0)
    Next
    ' End

    Managed to get the installation sorted. Go to Control Panel, and where you have a list of all installed programs, repair all the Apple/Itunes related programs. Installation worked fine after that. Hopefully it helps you out too!

  • HT1926 Itunes download problem. Message says "there is a problem with this windows installer package. A program run as part of the setup did not finish as expected." Any suggestions on what else to do??

    Message says "there is a problem with this windows installer package. A program run as part of the setup did not finish as expected."
    Any suggestions on what else to do??

    All - Thanks for the information.
    I am receiving the same error, "There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor." Thought I found the answer in your replies above. However, I cannot find the "Apple Software Update" program either from Start -> All Programs or the Control Panel.  I am running Windows XP, Service Pack 3. I would appreciate any additional guidance you have.

  • Itunes doen't install on my 64 bit machine "there is a problem with this windows installer package..."

    Ever since ITunes has come out with a dedicated 64 bit version, I have been unable to install Itunes. the first time I had the problem it suggested I unistall itunes which I did. Itunes still will not install however. I have cleared my temp files, moved my music off of my hard drive, everything I can think of and there is no change. Any help someone could provide would be appreciated as I am at the point where I have copied all of the files from the program directory of someone else's installed 64bit itunes and I am running a makeshift version. Should I see if I can get my hands on a disk version of the installer?
    Here is the message: "there is a problem with this windows installer package. a program required for this install could not be run. contact your support personnel or package vendor"
    thanks!

    Here is the message: "there is a problem with this windows installer package. a program required for this install could not be run. contact your support personnel or package vendor"
    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • How do I replace someone else's Mac ID with my own? Bought iPhone second hand. Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his macID on his new iPhone now?? Any ideas, as this issue is blocking my access to iTune

    How do I replace someone else's Mac ID with my own?
    Bought iPhone second hand on TradeMe.
    Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his AppleID on his new iPhone now and, understandably, does not want to give me his password. Any ideas?? Please.
    This issue is blocking my access to iTunes and any other file from my home computer. It keeps on telling me that I have to autorise my computer to pass on files, yet, it seems, for all this to happen, I need to get logged in through the phone's Apple ID. This of course is different to my one on my computer - and I have no password for it.
    This phone is not stolen!! I payed still a fair bit for it. Am still in contact with the previous owner. He doesn't know how to fix the problem either.
    Would appreciate any suggestion ????
    Thanks
    SamSings

    Settings>general>resets>erase all content and settings.
    That will put it back to its out of the box state. Set it up with your own apple Id.

  • How to re-install iTunes after receiving "There is a problem with this Windows Installer package ..." message?

    Hi,
    This is how it all started. When the new update for iTunes 11 came out, I tried to update it. After I had updated it I found nothing had changed. So i tried rebooting my computer and everything and found that still nothing had changed. So I tried uninstalling it. After that I tried to re-install it, but it came up with the
    "There is a problem with this Windows Installer package ..." message. So I looked around the internet and found a website that told me to uninstall all Apple products. So i did that. When i tried to uninstall Apple Software Update, it came up with the 'problem with windows' message again. So I used Revo to uninstall it. So I rebooted and tried to install it again. It installed Bonjour and all of the other programs but stopped halfway and gave me the 'proplem with windows' message again. I've looked around and most of the solutions have been to try and repair Apple Software Update, but the problem is, I've already deleted it. So can someone PLEASSEEEE help me fix this problem! (Sorry for droning on)

    http://support.microsoft.com/mats/Program_Install_and_Uninstall  try this an see if it fixes it.

Maybe you are looking for

  • Tried everything I can think of -- can't connect to Internet

    Please excuse me -- I should have posted this here, instead of another discussion. No one has even attempted a reply; I hope I can get some advise here. Thanks for ANY advice. I'm able to get onto the Internet by piggybacking on a nearby open LAN.( I

  • What's with the new version of numbers?

    I can't open any of my numbers spreadsheets, and Apple is telling me that to open them that I have to get the latest version for $19.99. What's with this? Is there another alternative?

  • Sql to convert mdsys.geometry to wkt or wkb

    I've been looking through the sdoapi for 10g (the only available now) for a way to convert a geometry column to wkt or wkb. There was a method with the old version (get_wkt and get_wkb). Does anyone know how to do it with the 10g sdoapi Mike Smith

  • CUACA Installation Error 1603

    Hi, i try to install the CUACA V10.5.1.10. During the installation I get always the error: Feature transfer error Error -1603 Fatal error during installation. Consult Windows Installer Help (Msi.chm) or MSDN for more informations. The Message appear

  • Canvas extention color in Canvas size

    When using camera size the Canvas extension color is grayed out  How do I get it to be active?