Webkitgtk-svn installed great, but midori has weird error

I'm installing the midori web browser just to test it out and one of its dependencies was webkitgtk-svn and that installed fine, but when it came to installing midori i get this strange error.
==> Building and installing package
==> Making package: midori 0.0.16-1  (Wed Jan 30 10:36:36 CST 2008)
==> Checking Runtime Dependencies...
==> Installing missing dependencies...
error: 'webkitgtk-svn': not found in sync db
==> ERROR: Pacman failed to install missing dependencies.
Error: Makepkg was unable to build midori package.
and just to prove that webkitgtk-svn was installed correctly, here you go...
[jeff@gnome-box ~]$ tupac -Qi webkitgtk-svn
Name           : webkitgtk-svn
Version        : 29869-1
URL            : http://webkit.org/
Licenses       : custom 
Groups         : None
Provides       : webkitgtk  webkitgdk  webkitgdk-svn 
Depends On     : libxslt  curl  sqlite3  gtk2  icu 
Optional Deps  : None
Required By    : None
Conflicts With : webkitgtk  webkitgdk  webkitgdk-svn 
Replaces       : None
Installed Size : 5502.47 K
Packager       : Unknown Packager
Architecture   : i686
Build Date     : Wed 30 Jan 2008 10:32:07 AM CST
Install Date   : Wed 30 Jan 2008 10:32:35 AM CST
Install Reason : Installed as a dependency for another package
Install Script : No
Description    : An open source web browser engine
Last edited by theringmaster (2008-01-30 16:50:39)

byte wrote:
http://aur.archlinux.org/packages.php?d … 1&ID=11779
Read the comments.
http://aur.archlinux.org/packages/webki … n/PKGBUILD
Pacman 3.1.1 fix: provides=("webkitgtk=$pkgver" "webkitgdk=$pkgver" "webkitgdk-svn=$pkgver")
On that webkitgtk-svn pkgbuild, it says that "source=(LICENCE)" which gives back an error.
[jeff@gnome-box ~]$ cd ~/webkitgtk-svn
[jeff@gnome-box webkitgtk-svn]$ makepkg
==> Determining latest svn revision...
-> Version found: 29869
==> Making package: webkitgtk-svn 29869-1 (Wed Jan 30 10:55:16 CST 2008)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
==> ERROR: There is no agent set up to handle LICENSE URLs. Check /etc/makepkg.conf.
Aborting...
-> Downloading LICENSE...
/usr/bin/makepkg: line 473: LICENSE: command not found
==> ERROR: Failure while downloading LICENSE
Aborting...

Similar Messages

  • My printer works great but I keep getting error messages from HP Solutions Center

    I'm using an HP Officejet J6480 All in One Printer on a Windows 7 64 Bit machine.  The printer works great but I kept getting error messages from the HP Solutions Center every 15 seconds that popped up making it impossible to do work on my laptop so I uninstalled the Solutions Center to try to fix the problem.  Now the printer won't print. Is there a way to re-install the Solutions Center and get rid of the pop up error messages?

    hello Danagriz, unfortunately the plugin check page lags behind. adobe has released a critical patch for a vulnerability in its flash plugin, which is reportedly already exploited in the wild. therefore firefox will block insecure versions from running by default on websites for your protection.
    https://helpx.adobe.com/security/products/flash-player/apsb14-27.html https://addons.mozilla.org/firefox/blocked/p794
    please update to Adobe Flash Player version 16.0.0.235 as soon as possible, which you can download from http://www.adobe.com/products/flashplayer/distribution3.html (use the windows-exe for plugin-based browsers).
    in order to update java, go to java.com (or if you don't need the plugin you can also uninstall it though the windows control panel)

  • I just purchased a Creative Cloud subscription and I was trying to install Photoshop, but I receive the error message 'Error Starting Creative Cloud - cookies dir: cannot make folder /cookies Permission denied (error 13)'

    I just purchased a Creative Cloud subscription and I was trying to install Photoshop, but I receive the error message 'Error Starting Creative Cloud - cookies dir: cannot make folder /cookies Permission denied (error 13)'

    Hi Arjun and tphc,
    try the solution I found and tested at this other thread:
    http://forums.adobe.com/message/5628798
    I think it could be helpful for you too!
    Cheers,
    Marco

  • Script Task Builds Successfully But Still Has Compile Error (SQL 2012)

    This is repost in a way but the problem has not gone away and I really need to find a solution.
    I have some script from SSIS 2008 that uses the ReportExecution2005
    web service to execute SSRS reports and save the results to Excel. There were some initial problems with confusion between Web Service Reference (legacy?) and Service Reference (WCF) but I think that I have that sorted out
    now.
    The remaining problem is that, while the VB script (which I have pasted in from a working SSIS 2008 Script Task) builds/complies without error, I get a compile error when I close the Script Task and it has the dreaded "Red X" in the Control
    Flow. If I attempt to run the package I get a message box saying that there is a compile error.
    How can I identify the problem and fix the error? The script itself has no errors in SSIS 2008.
    R Campbell

    This is the code by the way (see below) as pasted into the Main sub.
    I have added
    http://localhost/reportserver/reportexecution2005.asmx as a Web Service
    Reference (under the  "Advanced" button) not just a Service Reference (WCF).
    I can build the code without error but I get an error, saying that there is compile error, when I close the Script Task.
    ReportExecutionService definitely shows up in Object Explorer, not the
    WCF "equivalent" of ReportExecutionServiceSoapClient.
    I have always had the impression, that when you close a Script Task, a compiler kicks in to auto-generate some internal script. Could it be (as seems likely) that this compiler is picking up errors that "Build" doesn't (when the script is open)?
    I think that there was once an explicit Compile rather than just Build option in the Script editing environment but I can't find it in SQL 2012 Database Tools (nee BIDS).
    Dim objRSExec As New localhost.ReportExecutionService
    Dim objParam0 As New localhost.ParameterValue
    Dim objParam1 As New localhost.ParameterValue
    Dim objParam2 As New localhost.ParameterValu
    Dim objParam3 As New localhost.ParameterValue
    Dim objParam4 As New localhost.ParameterValue
    Dim objParam5 As New localhost.ParameterValue
    Dim objParam6 As New localhost.ParameterValue
    Dim objParams() As localhost.ParameterValue
    Dim objResult() As Byte
    Dim objStream As FileStream
    Dim FileType As String
    Dim FileExtension As String
    Dim FilePath As String
    Dim NumberOfParameters As Integer
    Dim ReportName As String
    Dim TaskSuccess As Boolean = True
    FileType = Dts.Variables("FileType").Value.ToString()
    FileExtension = Dts.Variables("FileExtension").Value.ToString()
    FilePath = Dts.Variables("FilePathNameExt").Value.ToString()
    ReportName = Dts.Variables("ReportPathName").Value.ToString()
    NumberOfParameters = CInt(Dts.Variables("NumberOfParameters").Value) - 1
    ReDim objParams(NumberOfParameters)
    If NumberOfParameters >= 0 Then
    objParam0.Name = Dts.Variables("P0Name").Value.ToString()
    objParam0.Value = Dts.Variables("P0Value").Value.ToString()
    objParams(0) = objParam0
    End If
    If NumberOfParameters >= 1 Then
    objParam1.Name = Dts.Variables("P1Name").Value.ToString()
    objParam1.Value = Dts.Variables("P1Value").Value.ToString()
    objParams(1) = objParam1
    End If
    If NumberOfParameters >= 2 Then
    objParam2.Name = Dts.Variables("P2Name").Value.ToString()
    objParam2.Value = Dts.Variables("P2Value").Value.ToString()
    objParams(2) = objParam2
    End If
    If NumberOfParameters >= 3 Then
    objParam3.Name = Dts.Variables("P3Name").Value.ToString()
    objParam3.Value = Dts.Variables("P3Value").Value.ToString()
    objParams(3) = objParam3
    End If
    If NumberOfParameters >= 4 Then
    objParam4.Name = Dts.Variables("P4Name").Value.ToString()
    objParam4.Value = Dts.Variables("P4Value").Value.ToString()
    objParams(4) = objParam4
    End If
    If NumberOfParameters >= 5 Then
    objParam5.Name = Dts.Variables("P5Name").Value.ToString()
    objParam5.Value = Dts.Variables("P5Value").Value.ToString()
    objParams(5) = objParam5
    End If
    If NumberOfParameters >= 6 Then
    objParam6.Name = Dts.Variables("P6Name").Value.ToString()
    objParam6.Value = Dts.Variables("P6Value").Value.ToString()
    objParams(6) = objParam6
    End If
    Try
    With objRSExec
    .Credentials = System.Net.CredentialCache.DefaultNetworkCredentials
    .Url = "http://localhost/reportserver/reportexecution2005.asmx"
    .LoadReport(ReportName, Nothing)
    .SetExecutionParameters(objParams, "en-us")
    objResult = .Render(FileType, Nothing, FileExtension, Nothing, Nothing, Nothing, Nothing)
    End With
    objStream = File.Create(FilePath, objResult.Length)
    With objStream
    .Write(objResult, 0, objResult.Length)
    .Close()
    End With
    Catch e As Exception
    Dts.Log("ERROR - RSExec - " & e.Message.ToString(), 100, Nothing)
    TaskSuccess = False
    End Try
    If TaskSuccess Then
    Dts.TaskResult = ScriptResults.Success
    Else
    Dts.TaskResult = ScriptResults.Failure
    End If
    R Campbell

  • Subvi is not executable error, but it has no error

    Hey I hope you can help me with a weird error.
    I got the error "SubVi  'name' : SubVi is not executable" but when I click on the SubVi and open it it does not show me any description of an error. If I open the main vi or the SubVi alone it shows no error. Could it be a problem of a library or something else?
    I am using Labview 2012 and Labview 2012 Mindstorms NXT.
    If you neew more screenshots or the rest of the SubVis please tell me so :-)
    Thank you!
    Jan
    Attachments:
    automatischer Modus - ohne Wait - ohne Array - global.vi ‏80 KB
    Solar.vi ‏15 KB
    project.png ‏262 KB

    SmartCity-Project wrote:
    Thanks for all your replies!
    I found the error, the NXT does not support global variables in Target on NXT- Mode so I changed to Target on Computer - Mode and now it works.
    Unfortunately the program crashes after 15 minutes more or less. Could you imagine why? Is it because of to many bluetooth connections or a bad programm structure?
    After a very quick look at the code I would say that it is probably bad code. Your overuse of global variables, sequence structures and silly things like a For loop set to run once with everything inside the loop wrapped in a sequence frame is a goo dindication that you need to learn much more about data flow programming techniques. With the amount of global variables you are using your program is probably ripe with race conditions. In addition, you did not include any of the subVIs so we cannot see what is happening in them.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • I'm trying to install PSE but I get a error : not a genuine copy. how can I Solve it and complete the installation?

    This is a purchased copy but I get an error saying the copy is not and the installation is terminated.
    Please help...

    download a valid copy and activate with your serial number.
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • WeTransfer isn't working Yosemite, says I need to install Flash, but Chrome has latest flash?

    Since InstallIng Yosemite on my Macbook I cannot use weTransfer, it says I need to install latest flash but using chrome, already has flash? Looked this topic up, and the same question appears, but with no answer?
    Can anyone help solve this riddle?
    Thanks

    Try un-installing and then re-installing.
    Adobe Flash Uninstaller
    Adobe Flash Player

  • How do I re-install Photoshop CS6 after doing a Windows 8.1 REFRESH?  Lightroom and Topaz installed great but not Photoshop

    I have my Photoshop CS6 Serial number and thought it would be easy to re-install software. Message says my serial number is VALID but not for this version of software.
    Any help with re-installing Adobe Photoshop CS6 on same computer after doing a Windows 8.1 REFRESH would be appreciated!
    Phillip Wattles - Bedford, TX

    The best for this would be Contact Customer Care  Chat or phone.
    While we as volunteers handle technical questions, we can't make a serial number work.
    I hope you have registered your software with Adobe, it should make this easier.
    Gene

  • HT2688 trying to go into windows movie maker to make a photo disc with songs but it will not let me use the songs i bought in i tunes.it says i need to install codec but it has not worked

    i am trying to go into windows movie maker to make a photo disc with songs from my i tunes but it tells me i can not do it because codec is not installed.i have tried to get codec but does not seem to have worked.

    Go into your system profiler and tell us your Machine Identifier that says:
    iMac x,y (give us the x and y values)
    That will tell us whether you are Mavericks compatible or not.
    Also tell us how much RAM you have installed.

  • When i am on youtube there's no sound i have tried uninstalling and re-installing firefox but it has made no difference

    i have windows vista and my i have firefox 3.6.12.

    Hi,
    Please refer to the help documents below:
    Crash when you start InDesign or select the Type tool
    https://helpx.adobe.com/illustrator/kb/illustrator-indesign-crash-sync-settings.html
    Hope this helps!
    Regards,
    Sheena

  • Installing Measurement Studio 2010 has caused error PRJ00003 errors in VC Projects

    After installing MS 2010, I tried opening and even creating a basic project from existing code and when compiling, I am now getting the following error:
    error PRJ00003: Error spawning 'rc.exe'
    which seems related to not being able to find kernel32.lib
    Anyone know any insight about this?  I've found lots of other people having this issue and it seems some path or something got messed up.  Just wanted to check to see if anyone else had this happen.
    Some system info
    C:\Program Files\Microsoft SDKs\Windows has v5.0 folder with Include and Lib\IA64 folders (kernel32.lib is in there) and a v6.0A folder which has an empty bin folder and Bootstrapper with bunches of stuff
    And my MVS folder is such: C:\Program Files\Microsoft Visual Studio 9.0
    And regedit sdk key has CurrentIA64Folder and Version as the two keys pointing to v5.0

    Hi ngay588,
    I have a couple of questions about what you are experiencing:
    1. Is this happening  with all projects or do projects not using Measurement Studio functions compile successfully?
    2. I'm assuming you are building Visual C++ projects, but have you tried compiling other projects in Visual Studio?
    3. What version of Visual Studio are you using?
    Also, some things to check:
    1.  Some people who have ahd this problem found that their virus scanner thought rc.exe was an infected file and was isolating it.
    2. Check to see if rc.exe is located in the following:
        C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin
        C:\Program Files\Microsoft Visual Studio\VB98\Wizards
        C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\Bin
        C:\Program Files\Microsoft Visual Studio 8\VC\bin 
    Regards,
    Hassan Atassi
    NI Community Project Engineer

  • I purchased Modern Combat3 from I tunes Store and tried installing it but it shows an error message 'App sync failed'. Please help me out. Can it be installed or my $9.00 are wasted ?

    I tried this on my windows machine and then connected my IPAD 2 to install it. The app was shown in the Itunes library but when i checked it and clicked sync, the sync failed.

    Is this the Version you purchased...
    http://itunes.apple.com/us/app/ultimate-mortal-kombat-3-for/id417787179?mt=8

  • I am trying to install iTunes, but keep getting this error message.  Help!!

    Cannot access network path
    \\Arollins\c$\Program Files\Mozilla Firefox\defaults\prof.
    Anyone ever come across anything like this?
    I've had iTunes on this computer before, but tried to update and this happened.

    Are you saving the installer first and then installing, or are you running the installer directly from Apple's website? Also save first.
    If you're saving first and still having issues, try and use Microsoft's Cleanup Utility and then reinstall Quicktime/iTunes:
    http://support.microsoft.com/kb/290301
    Make sure it's a new and fresh download from:
    http://www.apple.com/itunes/download/
    If not mentioned in the articles, make a new user account in Windows and see if iTunes opens. That will tell you if there's something funky in your main account (if the new user works), or if you have a system-wide issue.

  • Installing MiniSAP but JVM setup giving error

    Hi all...
    I am facing a problem in installing MiniSAP. During the installation process of minisap, the error message gets generated stating "JVM not found". But when I tried to install JVM there is another error stating that "try installing in -console mode ". Please help me in this regards.
    Thanx in advance
    Edited by: vinay reddy on Dec 1, 2008 9:14 AM

    Hi,
    Probably you are not using an accepted version of the JDK.
    Please check the requirements for miniSAP. If the requirements are acceptable - then you need to check the "Environment Variables" in Windows to see if the Paths to your JDK are correctly setup.
    Hope that helps.
    Thanks.
    p256960.

  • SSUS 2012 Script Component (VB) Build But Still Has Compile Error

    The title says it all really.
    The Script Component builds without error but when I close the editor (and when I execute the package), I get a message saying that there is a compile error. There is of course a big red "X on the script component. No errors are indicated in the edit
    window or when building the script. Can anyone help? this is really holding me up.
    The script has been copied from a working SSIS 2008 package. It uses the report execution web method. I have successfully changed the web reference to ReportExcution2010, there doesn't seem to be a RepprtExcution2012.
    R Campbell

    It's probably best to close thread and that I start a new one. I think that I have gone off on a tangent here. Yes SSIS isn't doing much of a job in reporting errors but my main concern is the error itself.
    I am trying to port an SSIS Script Task from SQL 2008 to SQL 2012. Is uses the ReportExecution2005 web service to run SSRS reports. The really strange thing is that, even though the same web reference is used, different methods seem
    to be available in SQL 2008 and SQL 2012. This doesn't sound right to me, if you refer to the same Web Service you should see the same metros or am I wrong about that.
    For example in SQL 2008 there is ReportExecutionService
    object but on the SQL 2012 to service there only seems to be
    ReportExecutionServiceSOAPClient.
    R Campbell

Maybe you are looking for

  • I dropped my iPhone 5S in water

    It happened about a week ago.  I shut down and did what I could to dry the phone (ziplock bag and rice for 36 hours).  The phone seems to work fine except it will inexplicably shut down.  I will not be able to power it back on without plugging it in.

  • HT3775 Quicktime component to open .mpg using OS 10.7.5

    I have a OS 10.7.5 and am not able to open an .mpg file. I have looked at the components info and only have quicktimeMpeg4 and quicktimeMpeg. Isn't this format supposed to be supported?

  • KCLP - can someone give me the big picture?

    In a project I have to review I stumbled into some log files displayed with Tx KCLP. It's some "external data transfer" logs. Unfortunately I miss the big picture and I did not find much on KCLP. Can someone give me a hint what's the big picture, e.g

  • SE97 and table TCDCOUPLES in plain english please....

    Guys... can anybody please explain to me in plain english what SE97 and table TCDCOUPLES shows me! I read the "called transaction" thing, but can't comprehend the meaning. E.g. if I enter PFCG in SE97 there is a long list of funny transactions. Is th

  • Rogue process : Translator

    I have a process that shows in Activity Monitor called Translator that is eating 20% CPU. It started after I installed iWork '09 trial which required 10.5.6. Anyone know what this process is? If I kill it, it comes back within minutes and I experienc