First PKGBUILD - Clisp with new-clx - please check

# Contributor: Theomachos <info[at]pindundin[dot]de>
pkgname=clisp-new-clx
pkgver=2.44
pkgrel=1
pkgdesc="ANSI Common Lisp interpreter, compiler and debugger (with NEW-CLX enabled)"
arch=('i686' 'x86_64')
license=('GPL')
url="http://clisp.cons.org/"
depends=('readline' 'libsigsegv')
replaces=('clisp')
source=(http://dl.sourceforge.net/sourceforge/clisp/clisp-${pkgver}.tar.gz)
md5sums=('3496535f1eebe8b9c8962a18305fdeed')
build() {
cd ${startdir}/src/clisp-${pkgver}
unset CFLAGS CXXFLAGS
./configure --prefix=/usr --with-module=clx/new-clx \
--with-module=rawsock --with-module=pcre --build build
cd build
make DESTDIR=${startdir}/pkg install || return 1
This is Clisp 2.44 with new-clx enabled - especially for StumpWM-users
Anything to add/remove ?

Add a:
conflicts=('clisp')
provides=('clisp')
and you can change
dl.sourceforge.net
to:
downloads.sourceforge.net

Similar Messages

  • New Users Please Check This Logic 7 Quick Tours Out, Its Pretty Good

    Please Before Asking Further Question Make Sure You Check This Out First
    http://www.apple.com/logicpro/quicktours/
    Its Not As Detailed As Martin Sitter's But For A Free Tours Its Great
    I hope Mike C The Moderator Will Keep A Link On The Top Just Like The Other Yellow Link
    $ta$h

    lol, yeah I heard great things aobut that video, but didn't get it yet. I am still weeding through the great Apple Pro Series books, and I am concentrating right now on getting the right sound out of my guitar and voice, since i am far enough in logic to be able to do that first. I think sometimes we lose focus in getting to know everything a tool can do, v/s composing and concentrating on the music and the sound.
    I'm hoping to post something to the other thread on forum music after this weekend, where I'll have the time to record with my new Rode K2 and my new Focusrite ISA 220. I have no more excuses to not get it right.
    R

  • None of my ipods work with new itunes, please help me!

    I have:
    • 3rd gen. nano
    • 5th gen. video
    • 2nd gen. nano
    Both nanos used to work on my macbook, I could add/delete music, sync.. every thing worked perfectly! Also, I just barely bought the classic from someone and it worked as well.
    -- TWO DAYS AGO... I updated to the 8.2.1 version of iTunes and since then, none of my iPods, or my boyfriend's brand-new touch work on iTunes. I've finally uninstalled, installed, reset enough things that when I plug in these iPods, they at least show up on my desk top, but all iTunes does is open.
    It used to open and give me a warning: "an ipod has been detected but it could not be identified properly...please disconnect & reconnect" which did nothing.
    My 3G nano works perfectly on my boyfriend's brand-new MacBook, but still nothing on mine.
    I've thought and thought and figured that iTunes was the culprit and not my USB ports or cables since I tried other things in the ports and 6 other cables that work fine on other computers.
    I've been SEARCHING the internet like crazy, reading millions of forums and 'fixes' but nothing works :'(

    The same thing happened to me. When I first connected my iPod to my PowerBookG4 after the latest update, it told me to restore my iPod, so I did. Now it tells me there is not enough room to put my music or podcasts onto the iPod, because it is full. However, there is nothing on it since when I restored it took everything off. When I go to the iPod summery page, it says the iPod if full with "other", but I can't figure out what that is, or how to erase it, so I can install my music and podcasts. I run every day and desperately need my iPod, and every place I could otherwise call is closed until Monday. Can anyone help?!!!!!!!!!

  • Help with new Podcast please..

    I am trying to publish a new Podcast, but it has been rejected and I wondered if anyone can help me please - this is the message I received:
    Dear Podcast Owner 
    The podcast located at the URL shown below has been blocked or removed from the iTunes directory as a result of technical problems with the feed.  Name: 1Mix Radio Podcast
    Feed URL: http://www.1mix.co.uk/podcast.xml  
    If you wish to reactivate your podcast in the iTunes directory, please troubleshoot your feed and check the functionality of each episode. To test your podcast, start iTunes, select Subscribe to Podcast from the Advanced menu, and enter your feed URL in the dialog box. If you can successfully subscribe to your podcast and listen to each of the episodes, you can reactivate your podcast by sending an email request to [email protected]  For more information on troubleshooting feed problems and controlling the appearance of your podcast on iTunes, please see the podcast FAQ at http://www.apple.com/itunes/podcasts/faq.html and technical specification at http://www.apple.com/itunes/podcasts/techspecs.html.  
    Sincerely,  The iTunes Store Team
    I have validated my XML file and it passes fine, I can also insert the Podcast URL into iTunes and it downloads and plays the Podcast, so I am at a loss to work out where I'm going wrong..
    When I sync with my iPhone, my Podcast is synced but I get an error message saying it couldn't be synced because it can't be found
    Can anyone help please?

    I don't have an iPhone to check this with: I asasume it's reading the feed directly? - so that the fact that it's not in the Store yet is immaterial.
    The only thing I can think of is that the URL given in the feede for the episode file:
    http://feedproxy.google.com/~r/1mixRadioWeeklyTrancePodcast/~5/vb3F8uHaGX0/Cylen th_Vision_-_A_Vision_Of_Trance_01.mp3
    redirects to the actual URL
    http://podcast.1mix.co.uk:8080/podcast/Cylenth_Vision_-_A_Vision_Of_Trance_01.mp 3
    and it may be that the iPhone won't handle the redirect. I can only suggest you ask in the iPhone Forum where someone may be able to check and advise.

  • PROBLEM WITH NEW ROW  --- PLEASE HELP

    Hello,
    I've had it with the framework. It's been 20 hours and counting that I am trying to insert/validate a new record.
    Things just don't work as advertised.
    Here's the situation:
    I have an entity object with various validation rules in the validate() method.
    Then I have a simple JSP page to insert new records.
    At submit of button, I follow the framework's default
    create new row and fill it up, with the difference
    that i need to validate the row as soon as I fill it up
    with data from the http request:
    <jbo:OnEvent name="Create">
    <jbo:Row id="newrow" datasource="ds" action="CreateInRange" >
    <% try { %>
    <jbo:SetAttribute dataitem="*" />
    <%
    newrow.validate(); //******* NOTICE HERE THAT I VALIDATE
    } catch (JboException ex) {
    newrow.remove();
    throw ex;
    } %>
    </jbo:Row>
    </jbo:OnEvent>
    Unexpected behavior 1: If the validation fails,
    newrow DOES NOT GET REMOVED!!!! I know this
    since when I view data thru a data table component,
    the row is there WITH THE ERROR INFORMATION set!!.
    If I do a commit transaction, then the erroneous information ENDS UP IN THE DATABASE!!!!!
    Unexpected behavior 2: If I do a rollback, every
    call to subsequent pages results in a jsp error:
    java.lang.ClassCastException: oracle.jbo.html.jsp.datatags.OnEventTag
    PLEASE HELP.
    Chris Lambrou

    I have (hopefully) found a solution to my part of this problem. I was getting the ClassCastExceptions on any page with a <jbo:row> tag after doing a failed DML action. I have tested this with the delete event. (btw, I am using jdev9.0.3.3 w/ BC4J/JSP) Before what I was doing was this:
    <% try { %>
    <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    If I removed the try/catch block everything worked fine. Unfortunatlely, I need to try/catch block here. To work around the problem I changed the code to this:
    <% Row rowDelete = ds.getRowFromKey(params.getParameter("jboRowKey")); %>
    <% try { %>
    <%
    rowDelete.remove();
    %>
    <% } catch (JboException jboEx) { %>
    do something
    <% } catch (Exception ex) { %>
    uh-oh, this is bad
    <% } %>
    The second bit of code does the same thing (but it doesn't use a bean like I think <jbo:Row> does) and it doesn't cause the ClassCastError on subsequent errors.
    I really hope this helps someone else because it took me forever to get a workaround!
    ~Rob Lundeen

  • TouchSmart tx2-1370us HUGE issues with new battery PLEASE HELP I AM DESPERATE!!!!!

    I purchased a new battery for my laptop. I got a LHP-41XT which is supposed to last longer... the following issues I initially thought were because I got a defective battery but I replaced it for another one and they are still happening:
    Battery is fully charged. When power cord is disconnected after a random amount of time the computer just dies while the charge does not even get down to 80%. The computer does not even go into the shut down process, it just completely dies.
    When trying to turn on the computer with battery it starts to boot up and after a few seconds it completely shuts off. After that no matter how many times I press the bottom to turn it on it just wont even try to turn on. I have to turn it on with the cord. 
    To try to remediate the problem I have tried and failed the following:
     -  Get a new battery of the same model in case the problem was the battery
     -  Calibrate the battery using every single option there is (changing power profile to "Calibrate," letting the computer discharge completly without using it, letting the computer discharge completly using it, letting the computer discharge completly without using it in while in safe mode) but the computer just keeps on dying.
     -  Change all the power settings so the computer does not hibernate, go into shut down, or does anything when the power levels go down.
     -  Erase completely the battery drives so the computer does not try to detect the battery charge.
     -  Upgraded the computer bios to the latest version
     -  Replaced BIOS battery
    Please someone help me I do not know what else to do and I don't want to keep wasting money to try stuff that does not work...

    No I haven't and HP seems not to care about the problem so guess what. No more HP's for me anymore....

  • Need Help With New Build, Please

    Ok, built a new PC.  Here are the parts:
    MSI K8N Neo4 Platinum
    XFX Geforce 6800GT
    Seagate 160 Gig w/ NCQ
    1 Gig (512x2) Corsair value memory 3200
    PC Power and Cooling 470 Watt Silencer w/ Y PCI-express adapter
    Athlon 3500+ (Clawhammer, says Newegg)
    Lian-Li V-1100 (black)
    My problem: 99.7% sure all cables are connected properly. 
    All lights and fans come on, drives open and close, but no video signal.
    D-Bracket indicates the boot sequence is stuck on "processor initialization".
    Things I've tried:
    Swapped out the motherboard for an Asus A8N-SLI, same problem.
    Reset CMOS on both: same problem, obviously not a motherboard issue.
    Built w/ just CPU, GPU, and Memory on a towel, not a grounding issue.
    Tried swapping out DIMMS one at a time in primary slot, same problem with both.
    Yes, both 24-pin connectors and 12v 4-pin connector are hooked up.
    Where I am now:
    It's not the motherboard, or memory (unless both DIMMS are bad).
    Based on the D-bracket LEDs,  I assume it was the processor.  I've sent the processor back to Newegg for a new one.
    If that's not it, that leaves the PSU, the GPU, and/or the way I've got the y-adapter running to the GPU via two molex.
    If the processor comes back and it doesn't work, I'll probably buy a cheap PCI card from newegg to see if it's a GPU problem.  And/or I'll try a new PSU with a native 6-pin PCI-Express power connector.
    Does anyone see any common compatibility problems with the K8N Neo4 Platinum and the parts I've selected, and/or does anyone have any other suggestions?
    It's very depressing to have all this gear sitting around and be unable to power up Half-Life 2.  :(  Any help would be appreciated.

    Quote from: tdho on 19-April-05, 05:06:22
    Most likely RAM is your problem. Reset bios and try new memory.
    Tom
    Possible, but as mentioned, the LED bracket indicates it makes it completely through POST without the video-card, and I've tried alternating each DIMM, one at a time, in the primary slot.  Unless both sticks are bad (wonder what the statistical chance of that is), it's not memory. 
    Though I'll try swapping out both as a last resort if the GPU switch doesn't work.

  • Problem with new itunes, please help!!

    so much has gone wrong with this process. i tried downloading the new version and the whole setup process wouldnt continue. then i decided to uninstall quicktime then reinstall it. but it wouldnt go through with the quicktime setup either. now the old itunes wont even open, and im thinking, is it worth while to uninstall itunes the redownload completely? will this remove all the music on my ipod? if it does is there any way to put the songs back on? thanks

    No it won't remove your music from the pod unless when reconneting it to the new library you say "No do not replace the library with the current one"
    It sound like you might not have a backup stragegy in place. I would highly suggust you do something or you might be coming here saying you lost all your music. The pod wan't meant to be the only storage for your music.
    I would download both itunes and the qt. Save them to your desktop or something then run the installation. Don't run it from the apple site. Then install QT before itunes. When installing make sure you turn off firewalls/virus/privacy/pop-up blockers/web accelerators as these can cause installation problems.
    For a standalone QT
    http://www.apple.com/support/downloads/quicktime702forwindows.html
    Info on Backups
    http://www.apple.com/support/itunes/musicstore/backup/

  • IPod won't work with new computer - please help

    When I bought my iPod, I had it hooked up with Computer #1. That went with my ex-husband in the divorce, so I no longer have that computer.
    I now have my parents' old computer, Computer #2. My dad has an iPod that was originally used with this computer, but none of his songs or libraries are on Computer #2 anymore. The iTunes library is totally empty. I tried hooking up my iPod, and it said that my iPod was already associated with another computer. So I authorized Computer #2 to play my iPod songs, and that didn't work either. I cannot deauthorize computer #1 since I don't have it anymore. ITunes would not let me deauthorize both computers, like it said you could do once a year.
    I am at a loss for what to do. Thanks in advance.
    Kim

    I have the same problem!! I had my library on a computer on XP and now I have Vista and don't know how to transfer my Vista. If anyone can help please let me know!!!!!!

  • NEW website - Please check it

    Hi ALL,
    just a new website ... only front page.
    Can any one check it ... it look good in Fire Fox, Safari and Opera.
    Any comments ... this is just a test page.
    Thanks ... Dimaxum

    Hi,
    Okay, yes I will test the background ... but this is not a fished website ... the background color I have to choose as the different languages on the little flags as the special links from every pic to a linked website.
    I only made in 1 hour to get the domain name on-line.
    Thanks for all the browsers you tested for me.
    I let you know when everything is working ... it could be the the name INN-TEC group has to be changed because a external office is still investigating if this is not a already registration company name.
    Dimaxum

  • Syncing with new mac, please advise

    Hi. I currently sync my iphone with a G5, which i'm now selling. What is the procedure for syncing with a brand new mac? What do i need to do to make the switch over?
    Obviously i don;t want to lose all my contacts, etc thats all i'm concerned about.
    Thank you

    Ideally, you should move your data from your old Mac to your new Mac directly. Since you're moving from a PPC-based Mac to an Intel-based Mac, I'd personally recommend against using Migration Assistant. Instead, you can move your files (including calendars, mail accounts, etc.) by following the detailed instructions in this User Tip:
    http://discussions.apple.com/thread.jspa?threadID=435350
    When you connect to the new Mac, your iTunes-managed media content will be replaced - that includes music, videos, ringtones, apps, and pictures. Items on the Info tab (contacts, calendars) will be synced as well - if the corresponding apps on the new Mac (iCal, Address Book) are completely empty, the data on the iPhone will be deleted. Thus, you're best bet is to have those data moved over as described above. Alternatively, if you create one new calendar entry and one new contact (make them up), you'll be prompted to choose to Replace or Merge the data - choose Merge and the contacts/events will be transferred from the iPhone to the new Mac.
    Hole this helps, and good luck!

  • Expanding Clips on the Timeline - Help with new problem please.... (pic)

    See pic below --- Never had this problem before. Any clip that is in my ongoing project won't expand more tha 1 second when trying to drag... what did i do wrong? It's doing this now in other projects as well....
    http://img.photobucket.com/albums/v322/pengh/sdhsrjhj.jpg

    Thanks ^ but I must not be explaining myself very well...
    Images:
    http://img.photobucket.com/albums/v322/pengh/expand.jpg
    http://img.photobucket.com/albums/v322/pengh/sdhsrjhj.jpg
    Clifs:
    * Any clip that is in my ongoing project won't expand more than 1 second when trying to expand/trim (using selection tool (V) making sure none other tracks are selected).
    * I was able to trim/expand these clips  before Wednesday (2 days ago).
    * Only happens on other version of THIS project (previous saved/copy versions) -- all sequences, all clips.
    * Thinking that this has something to do with the track selector tool. In my project, I was cutting/editing sections out (around 1:00 min in sizes) from the timeline and then using the track selector tool (A)  to move the entire project (the clips that are in front of the section cut) back in place (1+ hours of edited clips). I did this at least 20 times - in 20 different areas of the timline (successfully) until the proble occured. Leading me to believe it has something to do with that.
    Just throwing it out there that I know how to go back and forth between (A) and (V) and that I've been using premiere for 9 years (since 6.0) and I know most of the ins and outs.
    Thanks for the help i apprecieate it.

  • Help with new itunes please!

    hi. I've just upgraded to the new 7.0 something itunes. It has only created album covers for my purchesed music, although many of my albums can be found in the music store. Would it be possible for to transfer the album covers over?
    Ray

    The program will not open and I get an error message of (-200).
    the -200 indicates a broken QuickTime. (itunes needs a fully functional QuickTime in order to launch properly.)
    let's try the following technique to replace your existing QuickTime.
    go into your add/remove programs, select QuickTime, and then click "Remove".
    Next, we’ll manually remove leftover program files and folders.
    1. On the Start menu, click My Computer (or double-click My Computer on the Desktop).
    2. In My Computer, open Local Disk.
    3. Open Program Files.
    4. Right-click on the QuickTime folder and click Delete from the shortcut menu.
    5. Navigate to C:\Windows\system32\.
    6. Remove the files QuickTime.qts and QuicktimeVR.qtx.
    7. Restart your computer.
    after the computer has finished restarting, we'll try to get a fresh QT in there by doing a repair install of itunes.
    go back to Add/Remove. select itunes, click "Change", and then click "Repair".
    if the repair install goes through properly, restart the PC again, and try launching itunes again. does it launch properly this time?

  • Syncing first generation shuffle with new computer

    My husband has a first generation shuffle.  His old PC died.  I created a playlist of his songs on my itunes library, but how do I sync his shuffle to only that playlist.

    My husband has a first generation shuffle.  His old PC died.  I created a playlist of his songs on my itunes library, but how do I sync his shuffle to only that playlist.

  • Since installing Firefox 4 I cannot install addons - help needed with new browser please

    Have tried to install add-ons, and whilst they appear to have installed nothing is added to the tools add-ons button.

    This can be caused if one of the files that stores details of installed extensions is corrupt.
    # Open your profile folder, for details of how to find it see https://support.mozilla.com/kb/Profiles
    # Close Firefox
    # Delete the following files if they exist, extensions.cache, extensions.rdf, extensions.ini and extensions.sqlite
    # Re-start Firefox, it will then rebuild the list on installed extensions

Maybe you are looking for