Disappear? mnogosearch in aur.

mnogosearch disappeared from AUR,  is anyone  aware of this?   i didn't know that aur has remove feature..  what happen..
http://webcache.googleusercontent.com/s … en&ct=clnk

karol wrote:
I've found http://mailman.archlinux.org/pipermail/ … 03771.html but the submitted PKGBUILD can't be reached .
https://aur.archlinux.org/packages/mn/mnogosearch/ is still here.
yes. i just tried , the pakcage is good to compile, and works well.  Well, seems the package isn't lost aur need re-index the package data index to serve the web query and web search. hmm.
i can use the package link above for the moment, it serve my purpose well.   thanks for the pointer.

Similar Messages

  • Problems recompiling ffmpeg with additional codec support.

    I took the PKGBUILD from the AUR, and added --enable-x264 to the configure line, then tried to makepkg.
    gcc -O3 -g -Wall -Wno-switch -march=i686 -O2 -pipe -I. -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build' -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavutil -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavcodec -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavformat -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -c -o ffmpeg.o ffmpeg.c
    ffmpeg.c: In function 'output_packet':
    ffmpeg.c:1229: warning: pointer targets in passing argument 2 of 'av_fast_realloc' differ in signedness
    gcc -O3 -g -Wall -Wno-switch -march=i686 -O2 -pipe -I. -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build' -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavutil -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavcodec -I'/var/abs/ffmpeg-cvs/src/ffmpeg-build'/libavformat -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE -c -o cmdutils.o cmdutils.c
    gcc -Wl,--warn-common -rdynamic -g -o ffmpeg_g ffmpeg.o cmdutils.o -L./libavformat -lavformat -L./libavcodec -lavcodec -L./libavutil -lavutil -lm -lx264 -lz -ldl -lpthread -lvorbisenc -lvorbis -logg -lfaac -lxvidcore
    ./libavcodec/libavcodec.so: undefined reference to `XSync'
    ./libavcodec/libavcodec.so: undefined reference to `XDrawPoint'
    ./libavcodec/libavcodec.so: undefined reference to `XMapWindow'
    ./libavcodec/libavcodec.so: undefined reference to `XCreateImage'
    ./libavcodec/libavcodec.so: undefined reference to `XSetForeground'
    ./libavcodec/libavcodec.so: undefined reference to `XAllocNamedColor'
    ./libavcodec/libavcodec.so: undefined reference to `XResizeWindow'
    ./libavcodec/libavcodec.so: undefined reference to `XAllocSizeHints'
    ./libavcodec/libavcodec.so: undefined reference to `XFree'
    ./libavcodec/libavcodec.so: undefined reference to `XCreateColormap'
    ./libavcodec/libavcodec.so: undefined reference to `XDrawLine'
    ./libavcodec/libavcodec.so: undefined reference to `XCreateWindow'
    ./libavcodec/libavcodec.so: undefined reference to `XNextEvent'
    ./libavcodec/libavcodec.so: undefined reference to `XDrawRectangle'
    ./libavcodec/libavcodec.so: undefined reference to `XSelectInput'
    ./libavcodec/libavcodec.so: undefined reference to `XSetStandardProperties'
    ./libavcodec/libavcodec.so: undefined reference to `XPutImage'
    ./libavcodec/libavcodec.so: undefined reference to `XOpenDisplay'
    collect2: ld returned 1 exit status
    make: *** [ffmpeg_g] Error 1
    I get the same error whether I use the build for the current CVS version in stable, or the latest CVS. I just tried taking out the --enable-x264 and I still get the same error. It looks like it won't compile with GCC4. gcc-compat has disappeared from the AUR, so what am I supposed to do to get gcc3.4 back again? This is why so many other distros haven't switched to gcc4.

    google:ffmpeg gcc4 - there's a patch out there......
    Hey, that's the first time I've used the google: tags...

  • Elog PKGBUILD for review (AUR)

    I would appreciate feedback on this PKGBUILD before I submit it to the AUR. It includes boot and install scripts, new user and group ID's, and other things I have not done before. I used other Arch examples as models, but I might not have fully understood what I was trying to emulate.
    elog uses the filesystem as a database to log/timestamp and serve back information submitted via http. I think it is a great program, carefully designed, stable, and actively supported. I would recommend it to anyone who needs to log/timestamp information and either: a) wants the information to remain accessible to scripts and not disappear into a large binary blob, or b) doesn't want to install and maintain a normal database.
    # Contributor: David Scholl <djscholl>
    pkgname=elog
    pkgver=2.6.3.1
    pkgrel=1
    pkgdesc="Electronic logbook w/ attached file support, doesn't use a database."
    url="http://midas.psi.ch/elog/"
    license="GPL"
    arch=(i686)
    depends=('glibc')
    install=elog.install
    backup=etc/elog/elogd.cfg
    source=(http://midas.psi.ch/elog/download/tar/elog-2.6.3-1.tar.gz elogd)
    md5sums=('935f19692a05c2cb289d45bac14f1088' '746fc2d7ea204473ef95136b99fc7bb0')
    build() {
    cd $startdir/src/$pkgname-2.6.3
    # make things more Arch-friendly
    sed -i '/^ELOGDIR/s/$(PREFIX)/elog//etc/elog/' Makefile
    sed -i '/^BINOWNER/s/bin/root/' Makefile
    sed -i '/^BINGROUP/s/bin/root/' Makefile
    # make and install
    make PREFIX=/usr || return 1
    make PREFIX=/usr ROOT=$startdir/pkg install
    # substitute an Arch-friendly init script in place of the default
    cp ../../elogd $startdir/pkg/etc/rc.d/
    rm -Rf $startdir/pkg/etc/rc.d/init.d
    # move data to standard Arch locations
    mkdir -p $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/resources $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/scripts $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/themes $startdir/pkg/usr/share/elog
    mkdir -p $startdir/pkg/home/elog
    mv $startdir/pkg/etc/elog/logbooks $startdir/pkg/home/elog
    # tell elogd about the new locations
    sed -i '/[global]/s/$/nLogbook dir = /home/elog/logbooks/'
    $startdir/pkg/etc/elog/elogd.cfg
    sed -i '/[global]/s/$/nResource dir = /usr/share/elog/'
    $startdir/pkg/etc/elog/elogd.cfg
    elog.install
    # arg 1: the new package version
    post_install() {
    getent group elog >/dev/null || usr/sbin/groupadd elog
    getent passwd elog >/dev/null || usr/sbin/useradd -c "elog Server"
    -g elog -d /home/elog -s /bin/false elog
    usr/bin/passwd -l elog &>/dev/null
    chown -R elog:elog /etc/elog
    chown -R elog:elog /home/elog
    echo ">>> Add elogd to the DAEMONS array in /etc/rc.conf if you want"
    echo ">>> the server to start at system boot-up."
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    # arg 1: the old package version
    pre_remove() {
    usr/sbin/userdel elog &>/dev/null
    usr/sbin/groupdel elog &>/dev/null
    echo ">>> Post-install logbook entries remain after package removal."
    op=$1
    shift
    $op $*
    elogd
    #!/bin/bash
    . /etc/rc.conf
    . /etc/rc.d/functions
    PID=`pidof -o %PPID /usr/sbin/elogd`
    case "$1" in
    start)
    stat_busy "Starting elogd"
    [ -z "$PID" ] && /usr/sbin/elogd -D -c /etc/elog/elogd.cfg
    > /dev/null 2>&1
    if [ $? -gt 0 ]; then
    stat_fail
    else
    add_daemon elogd
    stat_done
    fi
    stop)
    stat_busy "Stopping elogd"
    [ ! -z "$PID" ] && kill $PID &> /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    else
    rm_daemon elogd
    stat_done
    fi
    restart)
    $0 stop
    sleep 1
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0

    I would appreciate feedback on this PKGBUILD before I submit it to the AUR. It includes boot and install scripts, new user and group ID's, and other things I have not done before. I used other Arch examples as models, but I might not have fully understood what I was trying to emulate.
    elog uses the filesystem as a database to log/timestamp and serve back information submitted via http. I think it is a great program, carefully designed, stable, and actively supported. I would recommend it to anyone who needs to log/timestamp information and either: a) wants the information to remain accessible to scripts and not disappear into a large binary blob, or b) doesn't want to install and maintain a normal database.
    # Contributor: David Scholl <djscholl>
    pkgname=elog
    pkgver=2.6.3.1
    pkgrel=1
    pkgdesc="Electronic logbook w/ attached file support, doesn't use a database."
    url="http://midas.psi.ch/elog/"
    license="GPL"
    arch=(i686)
    depends=('glibc')
    install=elog.install
    backup=etc/elog/elogd.cfg
    source=(http://midas.psi.ch/elog/download/tar/elog-2.6.3-1.tar.gz elogd)
    md5sums=('935f19692a05c2cb289d45bac14f1088' '746fc2d7ea204473ef95136b99fc7bb0')
    build() {
    cd $startdir/src/$pkgname-2.6.3
    # make things more Arch-friendly
    sed -i '/^ELOGDIR/s/$(PREFIX)/elog//etc/elog/' Makefile
    sed -i '/^BINOWNER/s/bin/root/' Makefile
    sed -i '/^BINGROUP/s/bin/root/' Makefile
    # make and install
    make PREFIX=/usr || return 1
    make PREFIX=/usr ROOT=$startdir/pkg install
    # substitute an Arch-friendly init script in place of the default
    cp ../../elogd $startdir/pkg/etc/rc.d/
    rm -Rf $startdir/pkg/etc/rc.d/init.d
    # move data to standard Arch locations
    mkdir -p $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/resources $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/scripts $startdir/pkg/usr/share/elog
    mv $startdir/pkg/etc/elog/themes $startdir/pkg/usr/share/elog
    mkdir -p $startdir/pkg/home/elog
    mv $startdir/pkg/etc/elog/logbooks $startdir/pkg/home/elog
    # tell elogd about the new locations
    sed -i '/[global]/s/$/nLogbook dir = /home/elog/logbooks/'
    $startdir/pkg/etc/elog/elogd.cfg
    sed -i '/[global]/s/$/nResource dir = /usr/share/elog/'
    $startdir/pkg/etc/elog/elogd.cfg
    elog.install
    # arg 1: the new package version
    post_install() {
    getent group elog >/dev/null || usr/sbin/groupadd elog
    getent passwd elog >/dev/null || usr/sbin/useradd -c "elog Server"
    -g elog -d /home/elog -s /bin/false elog
    usr/bin/passwd -l elog &>/dev/null
    chown -R elog:elog /etc/elog
    chown -R elog:elog /home/elog
    echo ">>> Add elogd to the DAEMONS array in /etc/rc.conf if you want"
    echo ">>> the server to start at system boot-up."
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    post_install $1
    # arg 1: the old package version
    pre_remove() {
    usr/sbin/userdel elog &>/dev/null
    usr/sbin/groupdel elog &>/dev/null
    echo ">>> Post-install logbook entries remain after package removal."
    op=$1
    shift
    $op $*
    elogd
    #!/bin/bash
    . /etc/rc.conf
    . /etc/rc.d/functions
    PID=`pidof -o %PPID /usr/sbin/elogd`
    case "$1" in
    start)
    stat_busy "Starting elogd"
    [ -z "$PID" ] && /usr/sbin/elogd -D -c /etc/elog/elogd.cfg
    > /dev/null 2>&1
    if [ $? -gt 0 ]; then
    stat_fail
    else
    add_daemon elogd
    stat_done
    fi
    stop)
    stat_busy "Stopping elogd"
    [ ! -z "$PID" ] && kill $PID &> /dev/null
    if [ $? -gt 0 ]; then
    stat_fail
    else
    rm_daemon elogd
    stat_done
    fi
    restart)
    $0 stop
    sleep 1
    $0 start
    echo "usage: $0 {start|stop|restart}"
    esac
    exit 0

  • [SOLVED] yaourt. packages taken from aur that are from core or extra

    Hi! i have a couple of days ago strange yaourt-pacman behaviour, i mean, when i do -Syu --aur, i get strange
    [aleyscha@aleyscha ~]$ yaourt -S screen
    warning: screen-4.0.3-5 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets: screen-4.0.3-5
    Total Download Size: 0.45 MB
    Proceed with installation? [Y/n]
    :: Retrieving packages from extra...
    error: failed retrieving file 'screen-4.0.3-5-i686.pkg.tar.gz' from ftp.archlinux.org : Connection timed out
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (unexpected error)
    and in yaourt -Syu --aur for example, i get a lot of packages newer in local than in aur, and some packages i know not even are in aur... for example unshield alsa-plugins and tuxcmd
    ==> Searching for new version on AUR
    alsa-plugins: (local=1.0.15-1 aur=1.0.11-1)
    amidi-plug: (local=0.7-3 aur=0.5-1)
    amule-cvs: up to date
    any2dvd: (local=0.34-3 aur=0.30-2)
    archlinux-xdg-menu: not found on AUR
    archmage: up to date
    aria: (local=1.0.0-4 aur=1.0.0_1.fc8-1)
    astromenace: up to date
    audio-convert: (local=0.3.1.1-2 aur=0.3.1.1-1)
    aumix-gtk: (local=2.8-2 aur=2.8-1)
    aurvote: up to date
    avifile: not found on AUR
    bashburn: (local=2.1.2-3 aur=2.1.2-1)
    bfcommander: up to date
    bin2iso: up to date
    bitefusion: up to date
    bkhive2: up to date
    briquolo: up to date
    tuxcmd: not found on AUR
    tuxcube: up to date
    uif2iso: up to date
    unace: (local=2.5-5 aur=2.5-4)
    units: (local=1.87-1 aur=1.85-1)
    unshield: not found on AUR
    uqm: (local=0.6.2-2 aur=0.5.0-1)
    my /etc/pacman.d/core for example:
    # core: Arch Linux core repository
    # United States
    Server = ftp://ftp.archlinux.org/core/os/i686
    Server = ftp://ftp.nethat.com/pub/linux/archlinux/core/os/i686
    Server = ftp://locke.suu.edu/linux/dist/archlinux/core/os/i686
    Server = ftp://mirrors.unixheads.org/archlinux/core/os/i686
    Server = ftp://ftp-linux.cc.gatech.edu/pub/linux/distributions/archlinux/core/o$
    Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/core/os/i686
    Server = http://mirrors.easynews.com/linux/archlinux/core/os/i686
    Server = ftp://ftp.ibiblio.org/pub/linux/distributions/archlinux/core/os/i686
    # South America
    # - Brazil
    Server = http://archlinux.c3sl.ufpr.br/core/os/i686
    Last edited by leo2501 (2008-03-09 11:16:17)

    What are the versions of your pacman and yaourt?
    There are some updates to all the pacman, yaourt and AUR web pages,
    so can you try this:
    1. upgrade pacman itself first
    2. upgrade yaourt itself, then
    3. and last, try full system upgrade.
    These errors seem familiar, but I have no idea how it disappeared.

  • Jalbum package in AUR installs but doesn't run... anyone else confirm

    I've been using BlackEagle's jalbum package in the AUR for a while now.  For no apparent reason, I can no longer run the java app.  The splash screen loads but then disappears after about 2 sec.  If I run it from a shell, I get the following:
    $ jalbum
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007fef47b9ac71, pid=24913, tid=140663184853264
    # JRE version: 6.0-b16
    # Java VM: OpenJDK 64-Bit Server VM (14.0-b15 mixed mode linux-amd64 )
    # Distribution: Custom build (Thu Jul 2 04:39:46 UTC 2009)
    # Problematic frame:
    # C [ld-linux-x86-64.so.2+0x12c71]
    # An error report file with more information is saved as:
    # /home/stuff/builds/jalbum/hs_err_pid24913.log
    # If you would like to submit a bug report, please include
    # instructions how to reproduce the bug and visit:
    # http://icedtea.classpath.org/bugzilla
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    /usr/bin/jalbum: line 2: 24913 Aborted java -jar /usr/share/java/Jalbum/JAlbum.jar
    I can post the output of that hs_err_pid log (file is 31 kB), but most of it looks like this:
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007f373565ec71, pid=9636, tid=139872603367696
    # JRE version: 6.0-b16
    # Java VM: OpenJDK 64-Bit Server VM (14.0-b15 mixed mode linux-amd64 )
    # Distribution: Custom build (Thu Jul 2 04:39:46 UTC 2009)
    # Problematic frame:
    # C [ld-linux-x86-64.so.2+0x12c71]
    # If you would like to submit a bug report, please include
    # instructions how to reproduce the bug and visit:
    # http://icedtea.classpath.org/bugzilla
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x00007f36a41cf000): JavaThread "Image Fetcher 0" daemon [_thread_in_native, id=9652, stack(0x00007f36a0c66000,0x00007f36a0d67000)]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0x00000000000003d4
    Registers:
    RAX=0x00007f3735868ba0, RBX=0x0000000000000000, RCX=0x00007f3734e14fb0, RDX=0x00007f36a0d66908
    RSP=0x00007f36a0d65180, RBP=0x00007f3734e14fb0, RSI=0x0000000000000000, RDI=0x0000000000000000
    R8 =0x0000000000000000, R9 =0x00007f3734e15090, R10=0x0000000000000000, R11=0x00007f373565ec70
    R12=0x0000000000000000, R13=0x00007f36a0d65388, R14=0x0000000000000000, R15=0x00007f36a41cf000
    RIP=0x00007f373565ec71, EFL=0x0000000000010246, CSGSFS=0x0000000000000033, ERR=0x0000000000000004
    TRAPNO=0x000000000000000e
    Top of Stack: (sp=0x00007f36a0d65180)
    0x00007f36a0d65180: 0000000000000000 00007f3735658f66
    0x00007f36a0d65190: 00007f36a0d66908 0000000001a7f1d0
    ... snip ...
    Is this a problem with openjdk6-1.5-4-x86_64 or..?
    Last edited by graysky (2009-08-01 15:08:47)

    Stefan Husmann wrote:
    thisoldman wrote:It compiles and runs using Sun's jre (community/jre 6u14-1).  I did comment out depends=('java-environment') in the PKGBUILD.
    jre provides java-runtime, so commenting out that dependency should not be needed. BTW, I can confirm that jalbum does not work on x86_64 with openjdk6.
    Sorry I should read things more carefully! java-environment should be replaced by java-runtime. Only that is needed to run jalbum. And in fact it must be sun's jre, because with openjdk6 ther are  the before mentioned problems
    Without the change in PKGBUILD you would have to install jdk too.
    This is what is happening: jre provides only java-runtime. jalbum with depends=('java-environment') in its PKGBUILD forces you to have either jdk or openjdk6 installed, since these are the packages that provide java-environment. So pacman searches for that. Most if not people have [extra] before [community] in their pacman.conf, so the first thing that pacman finds and that provides java-environment is openjdk6.
    Also installing jdk before installing jalbum would do the trick. But jalbum does not really need it.
    Last edited by Stefan Husmann (2009-08-03 20:54:13)

  • Dekorator from AUR problems

    Hello, am trying to get deKorator 0.3 to work, ive got it installed from the AUR. Well, ive changed the source/server in PKGBUILD manually, because the one that was in there didnt work, but that shouldnt be the problem i think, coz its just the same version, -> 0.3.
    So when i go to KDE Control Center and select deKorator as my window decoration and also select a dekoator-theme and apply the shit, i just got nothing, means: no borders/window-deco at all. just disappears :S
    anybody got a clue how to get that dekorator thingy working?
    am thankful for any help guys, thx!
    cheers,
    detto

    funkyou wrote:I solved this by putting my themes in ~/.kde/share/apps/dekorator...
    After that, the themes are choosable from the dekorator settings window...
    Yay, know this and themes are all there to select and choose from in the deKorator settings in KDE-Control Center, but when i finally apply the theme the whole decoration disappears and i have to select another one from either dekorator settings or a new decoration (like plastik).
    Its just that NO theme for dekorator works/worked here before and therefore i guess that its s.th. more like a bug in it, or KDE/kwin or s.th. else, what i dont hope , thats for sure.

  • Grass and Qgis from Community repo to AUR

    I noticed that the Grass and Qgis packages disappeared from the community repo. Although they are still available through AUR, should I become worried since I use these programs almost daily on my Arch machines?

    Hm, maybe I start first with 1 ct: I've modified the PKGBUILD of the Qgis  AUR package (pkgver = 1.7.3 and md5sums to the 1.7.3 tar.bz2 package).
    The following PKGBUILD should work:
    # Maintainer: Lantald
    # Contributor: Thomas Dziedzic < gostrc at gmail >
    # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
    # Contributor: Gerardo Exequiel Pozzi <[email protected]>
    # Contributor: Eric Forgeot < http://esclinux.tk >
    pkgname=qgis
    pkgver=1.7.3
    pkgrel=1
    pkgdesc='Quantum GIS is a Geographic Information System (GIS) that supports vector, raster & database formats'
    url='http://qgis.org/'
    license=('GPL')
    arch=('i686' 'x86_64')
    # update to http://www.qgis.org/wiki/Building_QGIS_from_Source#Overview
    depends=('libmysqlclient' 'postgresql-libs' 'sqlite3' 'jasper' 'curl' 'qt' 'python2' 'python2-qt' 'giflib' 'xerces-c' 'cfitsio' 'qwt5' 'gdal' 'flex' 'bison')
    makedepends=('cmake' 'grass' 'gsl' 'postgis' 'netcdf' 'fcgi' 'python2-sip' 'txt2tags')
    optdepends=('postgis: postgis support and SPIT plugin'
    'fcgi: qgis mapserver'
    'python2-sip: python-support'
    'grass: grass plugin'
    'gsl: georeferencer ')
    options=('!makeflags')
    source=("http://qgis.org/downloads/qgis-${pkgver}.tar.bz2"
    'qgis.desktop')
    md5sums=('e1b3b1f33ea8d648bde0eddf54f7eb90'
    '8ab66039f2aba519b92f52272ec3c13e')
    build() {
    # Fix insecure RPATH is weird, but just works ;)
    # echo "os.system(\"sed -i '/^LFLAGS/s|-Wl,-rpath,.\+ ||g' gui/Makefile core/Makefile\")" >> python/configure.py.in
    #cd qgis-${pkgver}
    rm -rf build
    mkdir build
    cd build
    cmake ../qgis-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_SKIP_RPATH=ON \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DGRASS_PREFIX=/opt/grass \
    -DQGIS_MANUAL_SUBDIR=share/man \
    -DQWT_INCLUDE_DIR=/usr/include/qwt5 \
    -DQWT_LIBRARY=/usr/lib/libqwt5.so \
    -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
    -DPYTHON_EXECUTABLE=/usr/bin/python2 \
    -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python2.7/site-packages \
    -DPYTHON_INCLUDE_PATH=/usr/include/python2.7/
    make
    package() {
    cd build
    make DESTDIR=${pkgdir} install
    # create a more user-friendly application name link
    ln -s /usr/bin/qgis $pkgdir/usr/bin/quantum-gis
    # install some freedesktop.org compatibility
    install -D -m644 ${srcdir}/qgis.desktop \
    ${pkgdir}/usr/share/applications/qgis.desktop
    This build also eliminated a conflict between Qgis 1.7.2 and the Grass-svn build I got this morning.
    For the time being all the bleeding cutting edge packages are working!
    I tried to post a comment on the AUR page but apparently that needs another subscription...
    Keep things up! "GIS Archers UNITE!!!"

  • Downloads disappear from folder

    I have downloaded some music and when it has completed the task, the download file disappears. Hasn't done this before, files always remain in download folder.

    Launch Finder.
    Finder > File > Find
    When the Finder window opens up, enter the name of the music file in the search box at the top right corner.
    It will show up in the Finder under “Name”.
    Right click on it and select “Reveal in Finder” from contextual menu.
    The resulting Finder window will show the location.

  • On Screen Keyboard Glitch in Tablet Mode - On Screen Keyboard minimizes / disappears / slides down

    Hi there -
    New Yoga owner here ( just bought it yesterday) and within minutes of setting the computer up I noticed that the on screen keyboard was malfunctioning when the yoga is in tablet mode. Specifically, it pops up for about a second and then, without me touching or clicking or doing anything, it quickly slides back down. repeated attempts to bring up the keyboard end up, frustratingly, with the same result. what is perplexing to me is the on screen keyboard works fine in laptop mode (when I need it least).
    Someone else already started a post on this BUT it was marked as 'solved' (which it wasn't) so I figured I'd start new thread. The solution on the previous thread was to simply 'refresh' windows to get rid of any new drivers that were downloaded since purchasing the yoga, but I did not download or update anything prior to this problem arising (as I said, the problem seemed to occur within a few minutes of turning the machine on for the first time). In any case, I tried the refresh and it did not work so clearly my problem is not that I downloaded an incompatible or faulty driver. Please Help! I love this machine and I'm trying to see past the other flaws I've noticed so far (subtle screen flickering, inconsistent touch sensitivity etc), but this issue is starting to really undermine my confidence in the product quality and, from a productivity standpoint, it is a real deal breaker to not have full tablet functionality.
    Solved!
    Go to Solution.

    I had the same problem with the disappearing virtual keyboard within hours of starting to use my new Yoga 13.  I read somewhere that it was a problem with an incompatible Synaptics driver, and when I looked in the control panel, it showed that the Synaptics driver had been updated on my Yoga as of the day I bought it.  I think somehow by agreeing to automatic updates of the software, the Synaptics driver is updated to an incompatible version.   So what I did was I removed the Synaptics driver, using the Windows program uninstaller tool, rebooted, and then found the Synaptics driver at the Lenovo site which is specifically labelled as the Yoga 13 driver.  I installed that, and the keyboard is now working fine.    

  • Text Wrap Options have Disappeared ID CS4

    All the icons in my Text Wrap window have disappeared. The tab/pallet is still there, but empty. The pop out still lists “Show Options” and “Apply to Master Page Only” are still there, but grayed out. Thanks in advance for any help!!

    Yipee.
    Should have remembered that one.
    Thanks for the help!
    wally
    = = = = = = = = = = = = = =
    Wally Flick
    Director Creative Services
    [email protected]
    314-854-0718 (voice)
    847-953-0774 (fax)
    Designer's Corner
    Designer's Blog
    www.aon.com
    BobLevine <[email protected]>
    02/01/2010 04:55 PM
    Please respond to
    [email protected]
    To
    Walter Flick <[email protected]>
    cc
    Subject
    Text Wrap Options have Disappeared ID CS4
    http://forums.adobe.com/thread/526990
    Bob

  • Itunes won't open...bounces and disappears. Here is crash log.

    When I attempt to click on itunes, it appears on the dock, bounces, and disappears. This also occurs with the "help" application. Can anyone help? Here is the crash log, but b/c it is so large it is pasted here with only the first ever crash and the most recent.
    ===== Display starts at offset 91188 within file of length 222260. ====
    ===== Use File->Reload (Cmd-R) to display more. ====
    A/Frameworks/WebCore.framework/Versions/A/WebCore
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    Reason: no suitable image found. Did find:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore: unknown file type, first eight bytes: 0x74 0x4B 0x93 0x48 0xA2 0x5C 0x25 0x93
    Host Name: william-purdys-mac-mini
    Date/Time: 2008-03-24 18:46:10.574 -0500
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: iTunes
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Parent: WindowServer [57]
    Version: 7.1 (7.1)
    PID: 159
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    Reason: no suitable image found. Did find:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore: unknown file type, first eight bytes: 0x74 0x4B 0x93 0x48 0xA2 0x5C 0x25 0x93
    Host Name: william-purdys-mac-mini
    Date/Time: 2009-03-13 12:37:35.546 -0500
    OS Version: 10.4.9 (Build 8P135)
    Report Version: 4
    Command: iTunes
    Path: /Users/williampurdy/Desktop/iTunes.app/Contents/MacOS/iTunes
    Parent: WindowServer [59]
    Version: 7.1 (7.1)
    PID: 233
    Thread: Unknown
    Link (dyld) error:
    Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Referenced from: /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    Reason: no suitable image found. Did find:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore: unknown file type, first eight bytes: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00

    Looks like your webkit framwork is broken, or is now broken in relation to iTunes. Calls and classes may have changed since version 7.1, which is what you are using. Try updating to the latest version of iTunes and see if this fixes it.

  • When I open up my emails and close them, they disappear and I cannot find them.  Where are they going?  Is there a setting that I have to change?

    Once I open up my emails they disappear and I cannot find them anymore.  Is there a setting that I need to change to stop this from happening?

    Are you tapping any of the icons at the of the Mail app after opening them, or do they disappear without you doing anything ? And if you have more than one account on the iPad, does it happen on your other accounts as well ?

  • I NEED YOUR HELP GUYS!! I WAS DOWNLOADING OSX LION WHEN MY NET CONNECTION STOPPED. THE ICON DISAPPEARED AND IT WILL TAKE 48HOURS FOR THE INTERNET CONNECTION TO BE RESTORED. WHAT SHOULD I DO? PLEASE HELP ME. IM NOT TECHIE AT ALL SO PLEASE.. PLEASE HELP ME.

    The internet was working fine til 10:31am philippine time. Was downloading OSX Lion, at that time it was somewhere half. Then all of a sudden internet failed and lost connection. Called my ISP immediately and was told it would take 24-48hours for the service to be restored. THen after ending the call the OSx Lion icon disappeared. I dont know what to do. Im not techie at all. Please guys. HELP ME>

    Hey allan. I dont know. Nothing seems to change. I still dont have net connection. Im at a net shop right now. (Not using mac.)  What will happen to the OSX Lion that I payed for? The icon was gone. Im still in the middle of downloading it.

  • Contacts and calendar events disappearing and reappearing

    I have three issues, two of which I think are related.
    1.
    My contacts disappear on my iPhone 3G. I am set up with MobileMe to auto sync and I don't know if that is getting screwed up somehow? The contact are on my Mac lap top when I go look (thank goodness), and I force a sync and they transfer to my phone fine. This has happened twice now. I have copied my contacts as vCards and saved that file in the downloads folder just in case they get lost on both my laptop and my iPhone - I also do a regular full laptop backup to my Time Machine - is there anything else I should be doing to back up my contact and calendar data?
    2. (possibly related to 1.)
    When I am looking at my iCal in the weekly view on my laptop, sometimes several of my appointments are not visible. It is only when I try to put an appointment in that is at the same time as the invisible ones that they suddenly reappear.
    3. One of my contacts will not sync from my iPhone to my lap top? It used to be in both places but for some reason it is now only on my iPhone and even when I sync, it doesn't come into my laptop Address Book.
    Help please!!!

    i am having what i think is a very similar problem in that my Exchange (you seem to use only mobileme) contacts partially disappear. i discover this when i check my sms message list and find that many messages show only the phone number when earlier the name was there. a check of the contacts list shows that some have disappeared.
    i restarted the phone and checked immediately but it was still gone but after a few minutes they came back.
    my theory is that something is going on with messy exchange server syncs with my iphone that could be causing the process to break midway but after a while the phone automatically syncs again.
    this issue appears quite rarely for me but enough to be noticed and to be annoying.

  • I just updated itunes and a LOT of my movies and music disappeared. These are movies and music I owned already and did not purchase from iTunes. How do I find them or do I need to add them all again? Also what happened to the sidebar?

    I just updated my iTunes software and have a lot of problems...
    1. The sidebar option is gone. I LIKED the sidebar and it was easier for me to navigate that way.
    2. Also no lists? I hate the icon way to view it. It makes my eyes go wonky and I have a harder time actually looking for what I want.
    3. A LOT of my music and movies have disappeared. These are music and movies I owned that I did NOT purchase from iTunes so I can not re-download them.
    How do I find the missing files? Do I have to readd them into iTunes? Is there a way I am not seeing to put thew sidebar back or make the files be viewed in list form? Can I undo this update to put it back the way it was. I hate this update...

    See my answere to your post in the Mt. Lion forum.

Maybe you are looking for