Finding PKGBUILD for an old Package!

Hi Guys!
After running into so many several problems about running Apache/resin
I would like to get a grib on the old apache 2.0.5.5 PKGBUILD file.
Can someone please help me findig this - where should i look to find this?
More the problems must be around som configurations - That I can't get the meaning of and keeps running into error. The old package worked just fine UNTIL I updated! I' have now with a fresh install tryed to redo my old setup - but apache 2.0.5.5 have somewhere changed since!
While compiling Resin = ./configure --with-apxs    that worked severel times???
I now get an error about a bad apxs - so now i would like to build my own package to see if thats help - ext step is to change to another distro to make this work?? 
Sorry and sadly to say that - but that could be the end of it!!!!
Peque!

Well - if I want to stick with arch - (and i will )
I'll have to use tomcat instead of using Resin!
But if i have severel sites at ??/ www  in dfferent maps here
how do I make these avaible to Tomcat - each libary have a WEB-INF and thats where tomcat is comming ind ???
Could somebody just tell me , caurse I don't get the point in the wikipage about that one ???
Thanks!!!

Similar Messages

  • Looking for PKGBUILD for the old multilib/flashplugin-10.3.183.10-1

    Hi,
    I'm looking for the PKGBUILD (and install file also) for the old multilib version of flashplugin, specifically the official multilib-repository version 10.3.183.10-1. I need the older version because in the newer versions of flashplugin hardware accelerated scaling is broken. Or, to be precise, it's been disabled/removed on purpose due to "stability issues". You can't even enable it manually. And since flashplugin for linux is no longer actively developed, it looks like it will never get fixed.
    So if anyone has this older version of flashplugin lying around, I would much appreciate if you could post it somewhere or send it to me.
    Last edited by jtts (2012-02-23 02:06:20)

    i found this
    # Contributor: Andrea Scarpino <[email protected]>
    pkgname=flashplugin
    _licensefile='Reader_Player_AIR_WWEULA-Combined-20080204_1313.pdf'
    -pkgver=10.3.183.7
    +pkgver=10.3.183.10
    pkgrel=1
    pkgdesc='Adobe Flash Player'
    url='http://get.adobe.com/flashplayer'
    arch=('i686') # 'x86_64')
    depends=('mozilla-common' 'libxt' 'gtk2' 'nss' 'curl' 'hicolor-icon-theme')
    optdepends=('libvdpau: GPU acceleration on Nvidia card')
    provides=('flashplayer')
    license=('custom')
    options=(!strip)
    install=flashplugin.install
    backup=(etc/adobe/mms.cfg)
    source=('http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz'
    "[url]http://www.adobe.com/products/eulas/pdfs/${_licensefile}[/url]"
    mms.cfg)
    -md5sums=('8e135a901e8c0b3350ec57819fd6166f'
    +md5sums=('f04482fcfa0ccd081447d15341762978'
    '1636037610ee2aa35c5fb736a697b7e0'
    'f34aae6279b40e0bd2abfb0d9963d7b8')
    package () {
    cd ${srcdir}
    install -Dm755 libflashplayer.so "${pkgdir}/usr/lib/mozilla/plugins/libflashplayer.so"
    install -Dm755 usr/bin/flash-player-properties "${pkgdir}/usr/bin/flash-player-properties"
    for i in 16x16 22x22 24x24 32x32 48x48; do
    install -Dm644 usr/share/icons/hicolor/${i}/apps/flash-player-properties.png \
    "${pkgdir}/usr/share/icons/hicolor/${i}/apps/flash-player-properties.png"
    done
    install -Dm644 usr/share/applications/flash-player-properties.desktop "${pkgdir}/usr/share/applications/flash-player-properties.desktop"
    install -Dm644 "${_licensefile}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.pdf"
    install -Dm644 ${srcdir}/mms.cfg "${pkgdir}/etc/adobe/mms.cfg"
    however the source links have deleted/moved.
    Last edited by quasifilmie (2012-02-25 02:50:36)

  • How can I find games for the old iPad

    How can I find games for. The old iPad?

    You'll just have to look through the iTunes Store for games that interest you and see if they're compatible with the iPad 1. There's no compendium that I know of that list compatibility with specific models of iPad. Few games at this point probably will not be compatible, but there may be a few that require the higher resolution of the new iPad or the faster processor of the new iPad or iPad 2.
    Regards.

  • How to find Contracts for a Service Package?

    Hi guys,
    I need to Find Contracts based on a package (a service package offered to customers).  I just know the Package ID. Which table/ API to use for getting products of this Package or Contracts where this package is used?
    Regards,
    Daman

    Hello Daman
    From service package do you mean service product or its something else
    Regards
    Naresh

  • Log Miner is finding DDL for "new" tables, but also DML for "older" tables.

    oracle 10.2.0.5.0 Standard Edition
    (at some point in the past it was "downgraded" from enterprise edition).
    It's making me crazy,  i create a table then insert/update rows.  Log miner only shows me the create.
    However, if i do insert/update on an "older" table,  i see the DML.  The tables are in the same tablespace, both logging, and the database is forcing logging.
    I'm out of ideas, and input would be appreciated.
    thanks!
    ####### CREATE THE ORACLE.LOGMNR1 TABLE ########
    SQL> create table ORACLE.LOGMNR1
      2  (col1 varchar2(100));
    Table created.
    ####### INSERT  ROW AND UPDATE A ROW IN ORACLE.LOGMNR1 TABLE ########
    SQL> insert into ORACLE.LOGMNR1 values ('testing insert');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> update ORACLE.LOGMNR1 set col1 = 'TESTING UPDATE';
    1 row updated.
    SQL> commit;
    Commit complete.
    ####### INSERT 2 ROWS INTO AN OLD TABLE EPACS.COLUMN_COUNTS  ########
    SQL> insert into epacs.column_counts
      2  values ('TEST1',99,'TEST2',88,SYSDATE);
    1 row created.
    insert into epacs.column_counts
       values('TEST3',77,'TEST4',66,SYSDATE);
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### INSERT ANOTHER ROW INTO ORACLE.LOGMNR1 TABLE ########
    SQL> insert into LOGMNR1 values ('ONE MORE TEST');
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### CREATE THE ORACLE.LOGMNRAFTER TABLE ########
    SQL> CREATE TABLE LOGMNRAFTER (COL1 VARCHAR2(100));
    Table created.
    ####### INSERT A ROW INTO ORACLE.LOGMNRAFTER TABLE ########
    SQL> INSERT INTO LOGMNRAFTER VALUES('FINISHED');
    1 row created.
    SQL> COMMIT;
    Commit complete.
    ####### MINE THE LOGS FOR ACTIVITY ########
    SQL> edit
    Wrote file afiedt.buf
      1  select to_char(timestamp,'yyyy/mm/dd hh24:mi:ss'), username,
      2          operation, sql_redo
      3          from v$logmnr_contents
      4      where
      5      seg_owner in( 'ORACLE','EPACS')
      6  and
      7      operation <> 'UNSUPPORTED'  
      8*          order by timestamp
    SQL> /
    ####### IT FINDS THECREATE THE ORACLE.LOGMNR1 TABLE, BUT NO INSERTS ########
    2013/10/09 14:02:05 ORACLE                                                     
    DDL                                                                            
    create table LOGMNR1                                                           
    (col1 varchar2(100));                                                          
    ####### IT DOES FIND INSERTS FOR THE OLD EPACS.COLUMN_COUNTS TABLE ########                                                   
    2013/10/09 14:03:54 ORACLE                                                     
    INSERT                                                                         
    insert into "EPACS"."COLUMN_COUNTS"("TABLE_NM","TABLE_ROW_QTY","COLUMN_NM","COLU
    MN_QTY","LAST_UPDATE") values ('TEST1','99','TEST2','88','09-OCT-13');         
    2013/10/09 14:05:09 ORACLE                                                     
    INSERT                                                                         
    insert into "EPACS"."COLUMN_COUNTS"("TABLE_NM","TABLE_ROW_QTY","COLUMN_NM","COLU
    MN_QTY","LAST_UPDATE") values ('TEST3','77','TEST4','66','09-OCT-13');         
    ####### AND IT FIND THE CREATE FOR THE ORACLE.LOGMNRAFTER TABLE ########                                                      
    2013/10/09 14:06:11 ORACLE                                                     
    DDL                                                                            
    CREATE TABLE LOGMNRAFTER (COL1 VARCHAR2(100));                                 
    ###### BOTH TABLES ARE "LOGGING" AND LIVE IN THE SAME TABLESPACE ######
    ###### LOGGING IS FORCED AT THE DATABASE LEVEL ####
    SQL> select force_logging from v$database;
    YES                                                                            
    SQL> select owner,table_name,logging
      2  from dba_tables where owner in ('EPACS','ORACLE')
      3  and table_name in('COLUMN_COUNTS','LOGMNR1');
    EPACS                          COLUMN_COUNTS                  YES              
    ORACLE                         LOGMNR1                        YES              
    SQL> SPOOL OFF

    Nither the table showing only DDL nor the table showing DML have supplemental logging.
    thanks.
    select count(*) from ALL_LOG_GROUPS
       where LOG_GROUP_TYPE='ALL COLUMN LOGGING' and OWNER='ORACLE' and table_name='LMTEST1'
    SQL> /
      COUNT(*)
             0
        select count(*) from ALL_LOG_GROUPS
       where LOG_GROUP_TYPE='ALL COLUMN LOGGING' and OWNER='EPACS' and table_name='COLUMN_COUNTS'
      COUNT(*)
             0
    Message was edited by: user12156890
    apparently this is an issue with the database configuration and not log miner.  I ran the same test against the prodcution database and got both the DDL and DML.  I used exactly the same test script including the logminer "setup" , obviously changing the name of the log files and the name of a directory.

  • Im looking how to find driver for Printer HP 2300 driver window 8 (64BIT) PLEASE help !!! stuck

    Hi ,
    I need help how to find driver for my old printer HP 2300d I use USB Cable for my Laptop window 8 (64 bit)
    help I am stuck can't print anything.
    Kim

    Hi, Welcome to hp forums and enjoy your stay, feel yourself like home here!
    I am very sorry to hear this, I will try my best to help you, I am always glad to help!
    Please follow the steps i provided below:
    1. http://windows.microsoft.com/en-ca/windows7/automatically-get-recommended-drivers-and-updates-for-yo...
    Now refer to the below link and right click your printer device
    2. http://pcsupport.about.com/od/windows-8/a/update-drivers-windows-8.htm
    Sorry because of different timezone I might not be able to help/reply you right away.IF that happens I deeply apologize!
    **Click the White thumb if you like the answer.**
    **Please mark Accept As Solution if it solves your problem and only solves your problem, if you have any more questions please ask, this also helps others to solve related issues.**
    Feel yourself like home here, we are all happy to help, if you have an question reply or start a topic or pm me or an expert.

  • [solved] new abs PKGBUILD for package kernel26...old kernel?

    I was looking into the new PKGBUILD in the /var/abs/core/kernel26 folder, as I wanted to update my custom kernel. I was editing the new PKGBUILD when I saw something weird...references to kernel.org files and archlinux.org patch seems to be same as the 2.6.37 version. Is _basekernel value not updated? Am I wrong?
    Take a look:
    new PKGBUILD (I copied only relevant lines):
    _basekernel=2.6.37
    pkgver=${_basekernel}
    pkgrel=6
    _patchname="patch-${pkgver}-4-ARCH"
    source=(ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-$_basekernel.tar.bz2
    ftp://ftp.archlinux.org/other/kernel26/${_patchname}.bz2
    now...these is exactly the same as PKGBUILD for 2.6.37. But the new files are:
    ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.37.1.tar.bz2
    ftp://ftp.archlinux.org/other/kernel26/patch-2.6.37.1-1-ARCH.bz2
    If I am right, someone has to update variable values...
    TIA
    Gemon
    Last edited by gemon (2011-02-21 22:17:23)

    well...I had time to check so...this is the content for the PKGBUILD after I run abs yesterday (pasted only relevant lines):
    # $Id: PKGBUILD 109724 2011-02-12 08:01:06Z tpowa $
    pkgbase="kernel26"
    pkgname=('kernel26' 'kernel26-headers' 'kernel26-docs') # Build stock -ARCH kernel
    _kernelname=${pkgname#kernel26}
    _basekernel=2.6.37
    pkgver=${_basekernel}
    pkgrel=6
    _patchname="patch-${pkgver}-4-ARCH"
    this is the one I run tonight...looks updated now
    # $Id: PKGBUILD 110322 2011-02-18 20:13:49Z tpowa $
    pkgbase="kernel26"
    pkgname=('kernel26' 'kernel26-headers' 'kernel26-docs') # Build stock -ARCH kernel
    _kernelname=${pkgname#kernel26}
    _basekernel=2.6.37
    pkgver=${_basekernel}.1
    pkgrel=1
    _patchname="patch-${pkgver}-${pkgrel}-ARCH"
    now patch filename and kernel sources correctly resolve to the latest ones.
    but believe me, right after I had the 2.6.37.1-arch kernel, the abs PKGBUILD was outdated...probably it is updated after kernel package is released. doesn't matter
    all in all...now it's ok
    Gemon

  • Linux-ck: Find old packages

    I want to downgrade my linux-ck-ivybridge kernel, since as many people I'm having this issue :
    https://bbs.archlinux.org/viewtopic.php?id=171736
    (Problem with rt2x00 driver, dropping connection)
    I've tried downgrade but the A.R.M. can't find any package, in the repo-ck web the lat version is 3.10.11-1 but I need something previous.
    Is there anywhere that I can find old version, or complie it myself, or even someone who happens to have in ther cache a 3.10.10 version or older?
    Thank you

    axelectrik wrote:I've tried downgrade but the A.R.M. can't find any package, in the repo-ck web the lat version is 3.10.11-1 but I need something previous.
    Is there anywhere that I can find old version, or complie it myself, or even someone who happens to have in ther cache a 3.10.10 version or older?
    Thank you
    I keep old versions of the PKGBUILDs for people in need: http://repo-ck.com/PKG_source

  • Where to find old packages?

    I recently upgraded my xine to the latest one, xine-ui-0.99 and it eats up all my PC resources, and I wasn't able to play any movies at all. I was wondering where I could find the previous version, 0.98, because I had no problem with it.
    i tried ftp.archlinux.org, but i can't find the old packages there anymore.
    please assist, thanks

    if it is not cached in your /var/cache/pacman/pkg then you will have to download the old PKGBUILD from the web CVS and build the package yourself. read the wiki on how to build packages.

  • How can I create a start up disk for a old intel core duo running 10.5.8.. Computer works fine, but can't find install disk.

    How can I create a start up disk for a old intel core duo running 10.5.8.. Computer works fine, but can't find install disk. Want to use internal disk drive or USD flash drive.

    Try calling 1-800-676-2775.  Give the serial number and thy *may* still burn you new install disks designed just for the hrdware in your system (for a fee, something like $160 per disk).  *May* is only because they may not burn disks for Leopard anymore.
    If they do not burn them for you, you can buy Leopard disks off Amazon or eBay for about $200.
    Have you considered Snow Leopard?.  Those disks only cost $19 (single user) or $29 (5-user license) through Apple by calling 1-800-MY-APPLE.

  • I am a student. How can I buy an old version of adobe photoshop cs2?If not can i find it for free.

    I am a student. How can I buy an old version of adobe photoshop cs2?If not can i find it for free.

    Adobe gives discounts for students with the creative cloud
    Adobe Creative Cloud for students and teachers | Adobe
    The bad thing about trying to buy old versions of adobe software, is there is so much pirated adobe software out there.

  • Finding a PKGBUILD for the 2.6.21.4 kernel (for Asus EEE )

    I'm trying to build a kernel that will support the Asus Eee's non-source drivers out of the box without ndiswrapper.  I also would like to install the whole thing using my pacman.  Is there any way to get a complete PKGBUILD for this kernel?  If possible, I'd also like to get the associated patches, etc if possible.
    I'm basing my hack on some things listed here:
    http://cliffhacks.blogspot.com
    I played with the CVS for awhile, but couldn't find a way to get the kernel 2.6.21.4 PKGBUILD, and I'm not sure if CVS would even do this.
    After this, I'll have to compare the PKGBUILD with the config that Asus used on their kernel.  We'll see how it goes.  Thanks for any help or tips.

    lilsirecho wrote:
    beniro;
    Normally PKGBUILDS for kernels are not provided in arch.
    However, one has been inserted into the aur mix by raymano and it is for kernel 2.6.23.9-1.
    What are you talking about - I thought the PKGBUILDs were publicly available. Atleast I can see them - and you could certainly create your own although with a little difficulty for such an early kernel - but It should be possible

  • How do I add a password where I never had one? All I can find is change password and that asks for an old password which I do not have.

    How do I add a password as user and administrator where I never had one? All I can find is change a password which asks for an old password to be entered and I do not have an old password.

    Just leave the old password field empty and enter the new password

  • Hello I have lost my serial number for adobe photoshop elements. Bought from John Lewis last month. I did have it installed but had to uninstall but cannot find the any of the packaging etc plus did not register. What is the best way of getting it install

    Hello I have lost my serial number for adobe photoshop elements 13. Bought from John Lewis last month. I did have it installed but had to uninstall but cannot find the any of the packaging etc plus did not register. What is the best way of getting it installed again/replacement? Thanks

    Do you have the receipt? If you have proof of ownership, you _may_ be able to persuade Customer Support to help you out.  I imagine you would need to scan and email that proof if it works at all.

  • Flash CS6 and the old Packager for iPhone?

    Hi,
    I was wondering: now that it's possible to select an Air SDK version in Flash CS6, would it also be possible to use Flash CS6 with the old 'packager for iPhone' that came with Flash CS5?
    I know, I know, I should get rid of that old thing, but reality is that I used packager for iPhone to create one of my first apps and now I can't update to a newer version of Air. Apple doesn't allow that, because existing users wouldn't be able to update anymore.
    It would be great if CS6 can work with the old Packager for iPhone.
    Does anyone know the answer to this?

    Too bad... I was hoping to kick my old CS5 installation out of the window...

Maybe you are looking for

  • When I try and open mail I get an error repeatedly for choosing "...open or re-open" message and Mail quit unexpectedly

    When I was working on my G mail account , Mail quit and I can no longer re-open it ! Each time I try and open mail I get this message: The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windo

  • How can we allow over 103,718 list of values to display in webi report selection?

    I know, why would we want to? Our business users would like to see the list ordered and first select from a range and drill down. Any query in information design tool already does this as well as the preview values for the LOV object. Is there a way

  • Changing useful life of an asset

    Hi All, Client wants to change the asset's useful life from 4 years to 3 years. Also previous depreciations should not get affected due to this. The new recalculated value of the asset should be spread over the remaining useful life and depreciation

  • Windows vs. Mac Download

    I purchased Adobe Elements 12 download for Windows platform. If I also want to install on my Mac, will I need to purchase a separate $80 download for Mac platform?

  • Checkbox to save a date

    Hello We are making a school project. A library database. The problem we have is the return of a book. The user will display all the books he has borrowed, no problem, now when he returns a book he checks a checkbox next to that book and then todays