Farsight2 for amsn-svn

Could anyone make a farsight2 package in AUR? I was trying to do it by myself, but in doesn't work ..
I tryed to compile farsight2 from source, but it need a gstreamer0.10 versione > 10.10, and the package in the extra repository is 10.9.. So a gstreamer 0.10.10(or 11) aur package is also usefull.. tnx

Wow.. it was not so simple, but I could do it
I need to edit PKGBUILD for gstreamer0.10-python and gstreamer0.10-farsight with the latest source, and edit the community/farsight package PKGBUILD to create the farsight2 package..
Thanks for the suggestion
Now amsn-svn compiles eith the farsight2 option
@Edit
Should I have to submit those PKGBUILD to the AUR?
Last edited by Malo (2008-05-25 09:49:32)

Similar Messages

  • Trying to install AMSN-SVN from AUR, TLS troubles (Resolved)

    Hi all,
    I just finished attempting to get AMSN-SVN from AUR working correctly. I got it installed and running fine but when I go to sign in, it complains about a missing TLS package, which was expected from what I read in the wiki. However, AMSN for some reason is unable to download the TLS package due to an error with sourceforge. I manually entered the URL in my web browser and the file in question downloaded fine that way. I extracted the archive and in the AMSN preferences I directed it to look for TLS in the folder I extracted the archive too. In theory this should work fine but it did not and no matter where I put the TLS files or point AMSN too it simply won't work.
    I also read about editing one of the TLS files but my file was correct already so it must have been fixed at some point. Anyone have any insight or tips for me? I am ready to pull my hair out. lol. I even tried installing Arch's TLS package but got no love from that either. If I can't get this to work I may have to go back to my Ubuntu install. Nooooo!! I love Arch too much.
    Kevin
    Last edited by ould (2007-05-25 13:08:05)

    samlt wrote:
    well, I just read the wiki, and it tells you have to download tls manually, but you don't have to...
    amsn also asko for tls (which was already installed) until this modification is done
    I know you said you already tried something similar, but I've done this few days ago, and I can't see why it wouldn't work for you...
    Thanks for the suggestion samlt. I did try that as I too found some posts relaying the same info. My file already had the correct layout so it must have been fixed sometime recently. No biggie, I am using Mercury Messenger at the moment and it seems to be doing pretty much everything I need for now, just found out about it yesterday and there was a package in the AUR so I tried it out and it is working well at the moment.
    Thanks,
    Kevin

  • Script for downloading(svn) and install E17

    I've been working on a script that download for the svn repository e17, compiler and install. I've made this script more as a to lear more about bash script. You can do the same thing as my script with yaourt. I hope someone might need it.
    #!/bin/bash
    # Title: Arch E17 svn #
    # Auther: Kamil MIklaszewski ([email protected]) #
    # Date: 2008-12-19 19:10 #
    # Licence: GPL #
    # This program is free software; you can redistribute it and/or modify #
    # it under the terms of the GNU General Public License as published by #
    # the Free Software Foundation; either version 2 of the License, or #
    # (at your option) any later version. #
    # This program is distributed in the hope that it will be useful, #
    # but WITHOUT ANY WARRANTY; without even the implied warranty of #
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
    # GNU General Public License for more details. #
    # You should have received a copy of the GNU General Public License #
    # along with this program; if not, write to the Free Software #
    # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, #
    # MA 02110-1301, USA. #
    # Version: 1.0 #
    # Description: This script was writen for Archlinux. It will download e17 #
    # from the svn repository and it will do a full installation. #
    # This script also take care of the dependency for all of the #
    # programs that are installed with e17. #
    # TODO: For version 1.0 #
    # -have the scipt use dialog #
    # -make the script more autamatic #
    # Change Log: *2008-12-19 #
    # -creation of script #
    # Function name: prep
    # Function paramiter(s): none
    # Function description: This function prepers the envirement to run
    # the rest of the script
    prep()
    #make a temporery directory and go to it
    mkdir -p ~/arch_e17_svn
    cd ~/arch_e17_svn
    #export this path to compile succesfuly
    export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig/
    # Function name: message
    # Function paramiter(s): Word to be printed on the screen
    # Function description: This function print messages on the screen.
    message()
    #print a message to the screen
    echo -e "==>" $*
    # Function name: downloadPackage
    # Function paramiter(s): none
    # Function description: This function go to the user's home
    # directory and downloads e17 from svn repo.
    downloadPackage()
    message "Downloading " $1 " from E17 svn repository."
    #download the specifed package with less text
    svn co --quiet http://svn.enlightenment.org/svn/e/trunk/$1 $1-svn
    # Function name: generalDependencys
    # Function paramiter(s): none
    # Function description: This fuction install the general
    # dependencys.
    generalDependencys()
    message "Installing Dependencys..."
    #list of package needed to be installed
    generalDependencysList=(
    'svn'
    'm4'
    'autoconf'
    'automake'
    'libtool'
    'pkgconfig'
    'texinfo'
    'zlib'
    'libpng'
    'libjpeg'
    'freetype2'
    'xorg'
    'dbus'
    'hal'
    'pam'
    'librsvg'
    'libnotify'
    'curl'
    'openssl'
    'libungif'
    'libtiff'
    'gettext'
    'glibc'
    'glibmm'
    'doxygen'
    'giflib'
    'cairo'
    'libx11'
    'libxext'
    'libxrender'
    'fontconfig'
    'libxcb'
    'sdl'
    'mesa'
    'qt'
    'librsvg'
    'libtiff'
    'directfb'
    #install the dependencys in the list
    sudo pacman -Sq --needed ${generalDependencysList[@]}
    # Function name: installPackage
    # Function paramiter(s): The name of the package to install
    # Function description: This fuction need one paramiter that is
    # the package to configure and install.
    installPackage()
    #change directory to the program to configure and install
    cd ~/arch_e17_svn/$1-svn
    message "Configurating package " $1
    #run the autogen script that will configure and
    #make read to install this program
    ./autogen.sh
    message "Compiling package " $1
    #now compile the source file of the program
    make
    message "Installing package " $1
    #now install the program
    sudo make install
    cleanUp()
    rm -r ~/arch_e17_svn
    # MAIN #
    main()
    #preper the envirement
    prep
    #install the general dependecys using pacman
    generalDependencys
    #list of packages to download and install
    packagesList=(
    'eina'
    'eet'
    'evas'
    'ecore'
    'efreet'
    'embryo'
    'edje'
    'e_dbus'
    'e'
    #loop that gos through the list and downloads the packages
    for package in ${packagesList[@]}
    do
    downloadPackage $package
    message "Done\n"
    done
    #loop that gos through the list and installs the packages
    for package in ${packagesList[@]}
    do
    installPackage $package
    message "Done\n"
    done
    main

    pressh wrote:to not duplicate work I've already created a python script some time ago which you can use to build e17 pacman packages using the community PKGBUILDs: http://dev.archlinux.org/~ronald/e17.html
    I may extend its usage if someone sees any use for it. Either way, just thought I should drop it here.
    is that script any different from a full build through makepkg/yaourt using AUR's Pkgbuilds?
    I tried to use it but i get a list of errors similar to
    cp: impossibile creare il file normale `eina-build/eina/.svn/prop-base/NEWS.svn-
    base': Permission denied
    but if i can use yaourt, why not?
    Edit: sorry, i looked at the python source and realized that it actually just syncs abs and then runs makepkg and namcap for each package. so i guess i'll use yaourt instead (or try to understand why makepkg exits with that error)
    Last edited by pikiweb (2009-06-19 08:48:46)

  • PKGBUILD script for Gambas SVN

    Hi!
    Some time ago I found an old PKGBUILD script for Gambas SVN that I've successfully used to make and install Gambas with. The problem with this is that it builds Gambas as one package, while it is recommended to build it like the stable version as done in the arch Community repo: https://www.archlinux.org/packages/?q=gambas. One important reason for this is that install packages created by the Gambas IDE depends on these individual packages to install.
    I was wondering if someone could direct me how to make a PKGBUILD script for Gambas SVN that does this? There are some directions on the Gambas Wiki here: http://gambaswiki.org/wiki/howto/package

    Head_on_a_Stick wrote:
    jerik wrote:I was wondering if it would be possible to have a look at the PKGBUILD file that is used?
    You can use the ABS to download the PKGBUILD for the (many) Gambas packages available.
    Oh, OK It is very strange, but $ sudo pacman -S abs told me that the package did not exist, so I downloaded it from the arch website and installed it.
    Then, now when I run it, this happens:
    # abs
    ==> Downloading tarballs...
    ==> core...
    ==> ERROR: Download failed
    ==> extra...
    ==> ERROR: Download failed
    ==> community...
    ==> ERROR: Download failed
    ==> multilib...
    ==> ERROR: Download failed
    Last edited by jerik (2014-12-26 00:31:50)

  • Problem port mapping for amsn on mac.. please help

    I have snow leopard running, and last night I needed to use amsn opposed to the regular messanger for mac as I needed the video capabilities to connect with a user using windows and msn.
    I've never had a problem before but that was before snow leopard. Apparantly the problem is with the windows side not amsn.
    They suggest doing opening ports 6890-6900. I can't figure out what information to put in all the fields and if there is a way to enter the range or if you have to enter all them individually.
    Also I found a document on how to do this and check the port is open via transmission which it said 1 port was as I only tried one. When I ran amsn it wasnt saying it wasnt open.
    Can someone walk me through how to set up the ports. There are many fields that I dont know what to enter etc.
    I should point out the problem was with the video. We couldn't intialize a connection and it was really really laggy. I tried rebooting and same thing.
    thanks
    Message was edited by: elvtnedge

    You can use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer on a Mac hold down the Option and Command (⌥ and ⌘ Apple) keys. This will stop the iPod from auto-syncing with iTunes and it will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer. You should then be able to change your settings and enable your iPod for disk use: iTunes Keyboard Shortcuts for OSX
    If you have any iTMS purchases on your there the transfer of purchased content from the iPod to authorised computers has been introduced with iTunes 7. A paragraph on it has been added to this article: Transfer iTunes Store purchases using iPod
    The transfer of non iTMS content is designed by default to be one way from iTunes to iPod. However there's a manual method of copying songs from your iPod to your Mac at this link: Two-way Street: Moving Music Off the iPod
    If you prefer something more automated there are a number of third party utilities that you can use to retrieve music files and playlists from your iPod, this is just a selection. I use Senuti but have a look at the web pages and documentation for the others as well, they are generally quite straightforward. PodView has a facility for transferring full resolution photos as well as songs back from the iPod to your Mac. You can read reviews of some of them here: Wired News - Rescue Your Stranded Tunes
    Senuti Mac Only
    iPodRip Mac Only
    PodWorks Mac Only
    PodView Mac Only
    iPodAccess Mac & Windows
    YamiPod Mac & Windows
    PodUtil Mac & Windows
    iPodCopy Mac & Windows

  • Criticisms? First package for r5u870-svn

    NOTE: see below for finished product
    So I'm building a Pkgbuild for the fun of learning how to do so.
    In particular this one is for the r5u870 webcam driver which downloads from the svn and not a static source.
    Thus far I have this:
    # contributor: orionfyre <OrionFyre on ARCH Forums>
    pkgname=r5u870-svn
    pkgver=88
    pkgrel=1
    pkgdesc="r5u870 webcam driver"
    arch=('i686' 'x86_64')
    url="http://wiki.mediati.org/R5u870"
    license=('unknown')
    depends=()
    makedepends=()
    provides=(r5u870)
    conflicts=()
    source=()
    md5sums=()
    _svntrunk="http://svn.mediati.org/svn/r5u870/trunk"
    _svnmod=r5u870
    build() {
    cd $startdir/src
    msg "Connecting to SVN server...."
    if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
    else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    fi
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    svn export $_svnmod $_svnmod-build
    cd $_svnmod-build
    # BUILD
    sed -i 's/\/lib\/firmware/$pkgdir\/lib\/firmware/g' $startdir/src/r5u870/Makefile
    # NOTE: need to send "$pkgdir/lib/firmare" without messing up the
    # regex line with a bunch of extra '/' reserved characters.
    make || return 1
    make DESTDIR=$pkgdir install || return 1
    The Makefile has a section like this:
    install::
    install -m 0644 -o root -g root $(FWFILES) $(FWDIR)
    /sbin/depmod -a
    which installs all the firmware.
    FWFILES= a list of the files
    FWDIR = /lib/firmware
    I of course want to change the variable from '/lib/firmware' to '$pkgdir/lib/firmware'
    The first method that came to mind was to use sed to edit the text contained within the Makefile
    the only problem is the regex:
    sed -i 's/\/lib\/firmware/$pkgdir\/lib\/firmware/g' $startdir/src/r5u870/Makefile
    however $pkgdir will contain the reserved / with no character escapes '\' before it.
    I'm stumped and tired. here's the relevant parts from the Makefile:
    V ?= 0
    MDIR := extra
    KVER ?= $(shell uname -r)
    KDIR ?= /lib/modules/$(KVER)/build
    DESTDIR ?= /lib/firmware ## Firmware location
    FWFILES = r5u870_1830.fw r5u870_1832.fw r5u870_1833.fw r5u870_1834.fw r5u870_1835.fw r5u870_1836.fw r5u870_1870_1.fw r5u870_1870.fw r5u870_1810.fw r5u870_183a.fw r5u870_183b.fw r5u870_1839.fw r5u870_1841.fw
    <BIG SNIP...>
    install::
    install -m 0644 -o root -g root $(FWFILES) $(FWDIR)
    /sbin/depmod -a
    <SNIPS...>
    So if you could school me on some sed regex or point me in the direction of another way of achieving the same I would be grateful.
    Last edited by OrionFyre (2008-06-16 15:19:23)

    OK. here goes.
    pkgbuild:
    # contributor: orionfyre <OrionFyre on ARCH Forums>
    pkgname=r5u870-svn
    pkgver=88
    pkgrel=1
    pkgdesc="r5u870 webcam driver"
    arch=('i686' 'x86_64')
    url="http://wiki.mediati.org/R5u870"
    license=('unknown')
    depends=()
    makedepends=()
    provides=(r5u870)
    conflicts=()
    source=()
    md5sums=()
    install=$pkgname.install
    _svntrunk="http://svn.mediati.org/svn/r5u870/trunk"
    _svnmod=r5u870
    build() {
    cd $startdir/pkg
    mkdir lib
    cd lib
    mkdir firmware
    cd $startdir/src
    msg "Connecting to SVN server...."
    if [ -d $_svnmod/.svn ]; then
    (cd $_svnmod && svn up -r $pkgver)
    else
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    fi
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    svn export $_svnmod $_svnmod-build
    cd $startdir/src/r5u870
    sed -i 's/\/sbin\/depmod\ \-a/ /g' Makefile
    cd $_svnmod-build
    # BUILD
    make || return 1
    make DESTDIR=$pkgdir FWDIR=$pkgdir/lib/firmware install || return 1
    and the install:
    # arg 1: the new package version
    post_install() {
    # updating module dependencies
    echo ">>> Updating module dependencies. Please wait ..."
    depmod -a > /dev/null 2>&1
    modprobe r5u870
    /bin/true
    # arg 1: the new package version
    # arg 2: the old package version
    post_upgrade() {
    # updating module dependencies
    echo ">>> Updating module dependencies. Please wait ..."
    depmod -a > /dev/null 2>&1
    modprobe r5u870
    /bin/true
    # arg 1: the old package version
    post_remove() {
    # updating module dependencies
    echo ">>> Updating module dependencies. Please wait ..."
    KERNEL_VERSION=2.6.25-ARCH
    depmod -a > /dev/null 2>&1
    /bin/true
    op=$1
    shift
    $op $*
    I know it's messy. my first real attempt. any help at cleaning up that mkdir at the top of build{ couldn't seem to get to work any other way, would be appreciated.
    Kudos? praise? criticisms? lambastes?

  • Need Help creating Icon overlays for my SVN Client

    Hi I am currently writing an cross platform SVN client. I have icon overlay working in windows and linux. This is a small image that sits on top of the normal icon in finder and represents the current state of the file, e.i out of sync, up to date, un-versioned. But am really struggling trying to get it to work in OSX. At this point I only want it to work in snow leopard. This is where I have got to so far.
    I managed to create a QL plugin that worked. The only issue with QL plugins is that you have to specify what file types your plugin works for, (my sample worked for gifs). Unfortunately I don't know that as it needs to work for every file and folder on the system that contains a subfolder called .svn. So with a week of reading I have come to the decision that the only real way around this is to override the QLThumbnailImageCreate function that finder calls and replace it with my own if I find a .svn or call the original if not. However if this is the only route I have not been able to get any code to work that will replace the function with my own.
    If any one can show me an example of switching that function, or has an alternative solution. Or knows the LSItemContentTypes type that means my plugin will fire for every single file, then I would be very happy. I've spent no more than 2 days getting this to work on windows and linux, but I've spent soooo many hours on OSX. Any help would be great.

    DanUK wrote:
    Thanks for your reply etresoft. I know it definitely is possible because the application dropbox does it.
    I'm not so sure. People working on the SC Plugin SVN program have been trying to do that for years. I don't know if they have ever gotten it to work.
    But unfortunately its not open source so I can find out how they did it. The only other way I can do it is to monitor file system changes and then set a custom icon. But this has many draw backs. such as custom icons are persistant and will remain even when my software has been uninstalled.
    I think you should really look into using labels. An SVN/CVS user probably isn't going to be using icon view anyway. Labels will be far more useful in real life. Custom icons are just a gimmick.
    I using QT Creator to write the software so if you fancy a go I can share the project with you.
    Perhaps we should stick to our respective SCM programs. I'm not a fan of QT either

  • Question for the SVN (versioning) folks

    Hey guys,
    did it actually become easier to apply support packages to your custom components? With NWDI it is quite a lot of work (with heavy customization in SHRWEB). How do you apply the SCA files in a efficient way to a SVN repository?
    Many thanks

    var me:Object;
    function grabMe(e:MouseEvent):void{
    me = e.currentTarget;
    me.removeEventListener(MouseEvent.MOUSE_DOWN, grabMe);
    me.startDrag();
    e.target.parent.addChild(e.target)    this is the line I'm questioning on the removal..will this affect my bring to front by using addchild cmds
    stage.addEventListener(MouseEvent.MOUSE_MOVE, dragMe);
    stage.addEventListener(MouseEvent.MOUSE_UP, dropMe);
    function dropMe(e:MouseEvent):void {
    stage.removeEventListener(MouseEvent.MOUSE_UP, dropMe);
    stage.removeEventListener(MouseEvent.MOUSE_MOVE, dragMe);
    me.stopDrag();
    me.addEventListener(MouseEvent.MOUSE_DOWN, grabMe);
    function dragMe(e:MouseEvent):void {
    e.updateAfterEvent();
    if( me.x >= 368 && me.x <= 860 && me.y >= 103 && me.y <= 640  )
      me.gotoAndStop("Square")
    else
       me.gotoAndStop("Circle")
    function backclick(event:MouseEvent):void{
    //testmenu.visible=false;
    function helpclick(event:MouseEvent):void{
    function answerclick(event:MouseEvent):void{
    }

  • Does anyone have a gmpc-svn package for me?

    I'm trying to build gmpc-svn but the current configure script is broken.
    Who's got a recent package for gmpc-svn I can download? Thanks a lot in advance.

    Check the AUR for gmpc-plugins-svn!
    When I first ran gmpc-svn, I got a cool track listing of the current album under "Information" but that doesn't work anymore. Any ideas?
    [edit]
    Found it: gmpc shouldn't be in mini or playlist mode. Just regular gmpc.
    [/edit]

  • Trouble compiling aMSN-CVS (Make Error 77)

    I was trying to install aMSN-CVS from the latest AUR package and I keep running into this error:
    checking for gcc... gcc
    checking for C compiler default output file name...
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    make: *** [Makefile] Error 77
    ==> ERROR: Build Failed. Aborting...
    Following the trail, I checked out config.log to see what was going wrong and this is the part that seems to be causing the issue:
    ## Core tests. ##
    configure:1988: checking for gcc
    configure:2004: found /usr/bin/gcc
    configure:2015: result: gcc
    configure:2253: checking for C compiler version
    configure:2260: gcc --version >&5
    gcc (GCC) 4.1.2
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:2263: $? = 0
    configure:2270: gcc -v >&5
    Using built-in specs.
    Target: i686-pc-linux-gnu
    Configured with: ../gcc-4.1.2/configure --prefix=/usr --enable-shared --enable-languages=c,c++,objc --enable-threads=posix$
    Thread model: posix
    gcc version 4.1.2
    configure:2273: $? = 0
    configure:2280: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2283: $? = 1
    configure:2306: checking for C compiler default output file name
    configure:2333: gcc -march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/i$
    gcc: svnversion: No such file or directory
    gcc: >: No such file or directory
    gcc: &&: No such file or directory
    gcc: svnversion`"': No such file or directory
    gcc: >: No such file or directory
    gcc: &&: No such file or directory
    gcc: svnversion`"': No such file or directory
    configure:2336: $? = 1
    configure:2374: result:
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:2381: error: C compiler cannot create executables
    See `config.log' for more details.
    Does anyone have any ideas what could be causing this?  I'm rather stumped.  I can post the whole config.log if that would help.
    I've tried some basic tests with other things and everything else I've tried to compile works just fine, it only seems to be the aMSN package having the issues, yet it looks like it's a problem with the GCC config and not aMSN.
    Any help would be greatly appreciated.

    Same problem here, with a fresh installation. If it is really a configuration problem, could somebody help us to check what is the problem ?
    The config.log extract posted by Locri is missing some information, probably due to the use of nano...
    Here is an extract from mine :
    configure:2263: $? = 0
    configure:2270: gcc -v >&5
    Using built-in specs.
    Target: i686-pc-linux-gnu
    Configured with: ../configure --prefix=/usr --enable-shared --enable-languages=c,c++,objc --enable-threads=posix --enable-__cxa_atexit --disable-multilib --libdir=/usr/lib --libexecdir=/usr/lib --enable-clocale=gnu
    Thread model: posix
    gcc version 4.1.2 20070423 (prerelease)
    configure:2273: $? = 0
    configure:2280: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2283: $? = 1
    configure:2306: checking for C compiler default output file name
    configure:2333: gcc -march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='"amsn"' -DVERSION='"0.97b-svn`which svnversion > /dev/null && svnversion`"' -DLIBDIR='"/var/abs/local/yaourtbuild/amsn-svn
    /src/amsn-build"' -fPIC conftest.c >&5
    gcc: svnversion: No such file or directory
    gcc: >: No such file or directory
    gcc: &&: No such file or directory
    gcc: svnversion`"': No such file or directory
    configure:2336: $? = 1
    configure:2374: result:
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:2381: error: C compiler cannot create executables
    And the complete version, just in case :
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
    It was created by configure, which was
    generated by GNU Autoconf 2.61. Invocation command line was
    $ ./configure --prefix=/usr
    ## Platform. ##
    hostname = DeepThought
    uname -m = i686
    uname -r = 2.6.21-ARCH
    uname -s = Linux
    uname -v = #1 SMP PREEMPT Fri May 25 18:51:33 CEST 2007
    /usr/bin/uname -p = unknown
    /bin/uname -X = unknown
    /bin/arch = i686
    /usr/bin/arch -k = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo = unknown
    /bin/machine = unknown
    /usr/bin/oslevel = unknown
    /bin/universe = unknown
    PATH: /bin
    PATH: /usr/bin
    PATH: /sbin
    PATH: /usr/sbin
    PATH: /usr/X11R6/bin
    PATH: /opt/bin
    PATH: /opt/java/bin
    PATH: /opt/java/jre/bin
    PATH: /opt/mozilla/bin
    ## Core tests. ##
    configure:1988: checking for gcc
    configure:2004: found /usr/bin/gcc
    configure:2015: result: gcc
    configure:2253: checking for C compiler version
    configure:2260: gcc --version >&5
    gcc (GCC) 4.1.2 20070423 (prerelease)
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    configure:2263: $? = 0
    configure:2270: gcc -v >&5
    Using built-in specs.
    Target: i686-pc-linux-gnu
    Configured with: ../configure --prefix=/usr --enable-shared --enable-languages=c,c++,objc --enable-threads=posix --enable-__cxa_atexit --disable-multilib --libdir=/usr/lib --libexecdir=/usr/lib --enable-clocale=gnu
    Thread model: posix
    gcc version 4.1.2 20070423 (prerelease)
    configure:2273: $? = 0
    configure:2280: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2283: $? = 1
    configure:2306: checking for C compiler default output file name
    configure:2333: gcc -march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='"amsn"' -DVERSION='"0.97b-svn`which svnversion > /dev/null && svnversion`"' -DLIBDIR='"/var/abs/local/yaourtbuild/amsn-svn/src/amsn-build"' -fPIC conftest.c >&5
    gcc: svnversion: No such file or directory
    gcc: >: No such file or directory
    gcc: &&: No such file or directory
    gcc: svnversion`"': No such file or directory
    configure:2336: $? = 1
    configure:2374: result:
    configure: failed program was:
    | /* confdefs.h. */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | /* end confdefs.h. */
    |
    | int
    | main ()
    | {
    |
    | ;
    | return 0;
    | }
    configure:2381: error: C compiler cannot create executables
    See `config.log' for more details.
    ## Cache variables. ##
    ac_cv_env_CCC_set=
    ac_cv_env_CCC_value=
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='\''"amsn"'\'' -DVERSION='\''"0.97b-svn`which svnversion > /dev/null && svnversion`"'\'' -DLIBDIR='\''"/var/abs/local/yaourtbuild/amsn-svn/src/amsn-build"'\'' -fPIC'
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_CXXFLAGS_set=set
    ac_cv_env_CXXFLAGS_value='-march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='\''"amsn"'\'' -DVERSION='\''"0.97b-svn`which svnversion > /dev/null && svnversion`"'\'' -DLIBDIR='\''"/var/abs/local/yaourtbuild/amsn-svn/src/amsn-build"'\'' -fPIC'
    ac_cv_env_CXX_set=
    ac_cv_env_CXX_value=
    ac_cv_env_LDFLAGS_set=
    ac_cv_env_LDFLAGS_value=
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_XMKMF_set=
    ac_cv_env_XMKMF_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_prog_ac_ct_CC=gcc
    ## Output variables. ##
    APPNAME='amsn'
    APPRELEASE='1'
    APPSTABLE='no'
    APPVERSION='0.97b'
    BUILD_DIR=''
    CC='gcc'
    CFLAGS='-march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='\''"amsn"'\'' -DVERSION='\''"0.97b-svn`which svnversion > /dev/null && svnversion`"'\'' -DLIBDIR='\''"/var/abs/local/yaourtbuild/amsn-svn/src/amsn-build"'\'' -fPIC'
    CONFIGURE_ARGS='/usr/share/config.site /usr/etc/config.site'
    CPP=''
    CPPFLAGS=''
    CXX=''
    CXXFLAGS='-march=i686 -O2 -pipe -O2 -w -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include -I/usr/include -I. -I./utils/linux/capture -I./utils/linux/capture/libng -I./utils/linux/capture/structs -I./utils/webcamsn/src -I./utils/tcl_siren/src -I./utils/TkCximage/src -I./utils/TkCximage/src/CxImage -DPACKAGE='\''"amsn"'\'' -DVERSION='\''"0.97b-svn`which svnversion > /dev/null && svnversion`"'\'' -DLIBDIR='\''"/var/abs/local/yaourtbuild/amsn-svn/src/amsn-build"'\'' -fPIC'
    CXX_LIB=''
    DEBUG='no'
    DEFS=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    EXEEXT=''
    FOUND_OS='linux'
    FOUND_X11=''
    GREP=''
    LDFLAGS=''
    LDLIBS=''
    LIBDIR=''
    LIBOBJS=''
    LIBPTHREAD=''
    LIBS=''
    LTLIBOBJS=''
    OBJEXT=''
    PACKAGE_BUGREPORT=''
    PACKAGE_NAME=''
    PACKAGE_STRING=''
    PACKAGE_TARNAME=''
    PACKAGE_VERSION=''
    PATH_SEPARATOR=':'
    PWC='no'
    SHELL='/bin/sh'
    STATIC='no'
    TCLSH='/usr/bin/tclsh'
    TCL_INC_SPEC=''
    TCL_LIB_DIR=''
    TCL_STUB_LIB_SPEC=''
    TK_INC_SPEC=''
    TK_LIB=''
    TK_LIBS=''
    TK_LIB_DIR=''
    TK_STUB_LIB_SPEC=''
    TK_VERSION=''
    TOP_DIR=''
    USE_MMX=''
    XMKMF=''
    X_CFLAGS=''
    X_EXTRA_LIBS=''
    X_LIBS=''
    X_PRE_LIBS=''
    ac_ct_CC='gcc'
    ac_ct_CXX=''
    ac_prefix_program=''
    bindir='${exec_prefix}/bin'
    build_alias=''
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE}'
    dvidir='${docdir}'
    exec_prefix='NONE'
    host_alias=''
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    #define PACKAGE_NAME ""
    #define PACKAGE_TARNAME ""
    #define PACKAGE_VERSION ""
    #define PACKAGE_STRING ""
    #define PACKAGE_BUGREPORT ""
    configure: exit 77
    Last edited by Skippy le Grand Gourou (2007-06-12 22:31:48)

  • Suggestion: git/svn snapshots in stable of Win Live Messenger clients

    First of all, the best thing at Archlinux (the main reason I'm using it) is the fact, that it follows completely versions recommended by developers, even if it's a snapshot version like at mplayer or at cinelerra-cv
    But there are some programs, that should follow the same policy: Windows Live messenger (MSN) clients: Microsoft always changes something on the MSN protocoll, and made all the alternative clients suck, but the develpoers of the alternative clients doesn't release immediatelly a new bugfix version, but they fix the bug immediatelly in the git/svn snapshots. aMSN developers didn't even released new versions for a long time, and their last release is dated at March 2010, but they upgrade everything in snapshots. KMess had 2.0 working perfectly about one year ago, and now it's 2.0.4, and 3 of the 4 updates was just because MSN protocoll changes, kmess is now crashing even for me, and they only fixed it in the stable-git repo according to this topic: http://kmess.org/board/viewtopic.php?f=4&t=4685 , but 2.0.5 relese is more far away, until then, we can't login to our WLM account with KMess.
    Earlier I heard a protocoll change, which involved KMess, aMSN and emesene users too, aMSN and KMess developers first surely only fixed it in their svn/git repos, I don't know what's the case with emesene.
    So my suggestion is: change community/kmess-2.0.4 to community/kmess-git20101017 and same with aMSN and maybe with emesene
    Last edited by Vegita (2010-10-18 11:54:53)

    Vegita wrote:
    actually I'm asking only for community/kmess 2.0.4 -> community/kmess git, as I can see, that there's a fix (maybe patch) for amsn as it was a new packeűage a week ago, anyway it's not the snapshot.
    aur/kmess-stable-git 20100903-1 (14)
        A full-featured MSN Client for KDE - GIT stable branch version
    I would need at least a 20101017 of the stable-git version, and this unsupported thing can happen anywhen, it has a better place in community, as somone uses archlinux and doesn't even know what git is (it's not me, but some of my friends has kmess stopped working too, and has no idea)
    In Arch the main rule is to follow the upstream development (choices, models), you compare kmess to mplayer but they really use different dev models. Mplayer never release, the releases 1.0rcN are only created to annoy some packagers of distros that wait a release number. The last release 1.0rc3 are created from code of one year ago.
    Kmess don't do this, they have tagged releases. What Allan is asking is to you fill a bug report upstream so they release a new version, or change the whole development model for a more agility one.
    Arch have a small number of devs, they can't track the stability/usefulness of the git/svn version so they can attest if is better to use the tagged releases or snapshot of all the programs in the repo. This is a task of upstream.
    In the case of mplayer, the devs only recommend that you use a current svn snapshot, can you point for a similar declaration from Kmess developers?
    And about aur I dont get what you mean, if you need something greater than 20101017 than compile it at a time greater than 20101017 (like today =]), the git's PKGBUILD take snapshots at time you build it.
    I know that all this can not be much convenient for you, but think about the work needed to track the development of the hundreds of programs we have in the repos. The git can be stable now, but its is stable tomorrow? How much time between upgrades? The devs will gonna need to test it every day to see if the msn network is broken. This is not a work for the Arch devs but for Kmess devs.

  • How do I install amsn?

    Hi,
    I'm a newbie with arch and I was previously using Ubuntu.
    I want to install aMSN svn version but I don't know the proper way to do this in arch. In ubuntu it was pretty easy to create a deb package but how do I create a package for arch?
    I first tried to install 0.96 using the following guide: http://wiki.archlinux.org/index.php/Ams … ased_fonts
    but when I try
    # cp -R /var/abs/community/x11/amsn .
    well the directory doesn't exist and anyway I prefer to get a newer build and not 0.96
    Thanks
    BTW I really like Arch, it just took me like 4 hours to get a GNOME desktop, lol, damn ATi .

    [root@inspiron abs]# pwd
    /var/abs
    [root@inspiron abs]# ls
    PKGBUILD.proto devel install.proto local office x11-drivers
    base editors kernels multimedia system x11-libs
    daemons extra lib network x11
    [root@inspiron abs]#
    Should I have anything special in my pacman config or any other file? or maybe it is somewhere else?
    EDIT:
    I'll try it, thx
    EDIT:2
    It is working but now how do I get amsn svn?
    Last edited by karmapolice (2007-01-31 18:40:05)

  • Best practices for moving from my iMac to my new MacBook Pro without carrying along a lot of junk?

    Some suggestions are welcome!
    I have been using an iMac late 2009 21.5" for the last few years. Recently I received a new MacBook Pro. The MacBook Pro has better specs (better cpu, more RAM, SSD drive) and is overall faster. I got an external 27" IPS monitor to hook up to the HDMI port and going forward I would like to use the new MBP with external monitor as my main desktop computer and keep my iMac as a backup machine if the MBP ever needs repairs.
    Anyway, I have two backups of my iMac: (1) Time Machine, which does its usual incremental backup, but excludes some things, like Parallels VMs and (2) A CCC bootable clone that runs every night at 3:30 am while I'm asleep. And as I'm writing this I'm updating that clone copy.
    The thing is, I don't want to move everything over to my new MBP. Over the years I've accumulated a lot of junk, and currently am using about 450 GB of the 512 GB disk space. My new MBP also has 512 GB of space, but I figure why not just bring over what I think is necessary and later on, if I'm missing something, I can get it from the CCC backup or the Time Machine backup. (I will get new backup drives for the MBP). My guess is I don't really need even half of what I've currently got on my iMac HD.
    So I don't think I want to use the Time Machine migration assistant. And I don't want to restore the new computer from the CCC clone. But I do want to add in enough applications and documents and settings so I can continue running much like I am running on my iMac. I'd like my installed software (BBEdit, Office, Parallels, CCC, etc.) to be licensed and avoid a new install of each app if possible. I'd like the apps with open documents to remember which docs were open, and when I start them again have things open up like they did on my iMac.
    Are there some strategies people can recommend for this? Like for each application, copy over the application, and related preference files from ~/Library? Or are there some applications which just plain have to be re-installed to work right?
    If what I'm thinking of doing is too complicated, the alternative would be to do a complete restore to the MBP and then try an extensive hash-and-slash and attempt to delete old, unneeded things.
    But I have old preference files going back years and I figure why not start afresh, since everything is so incredibly speedy on my new MBP.
    What do people here usually do when they get a new computer that will replace the old one?
    Thanks,
    Doug

    Well, I've been trying this for a while. By my calculations, at this rate, installing all the applications one by one and trying to restore all the data manually will take me about six years. I would finished just in time for the Tokyo 2020 Olympics.
    The main problem is, I don't know where all the bodies are buried. Just one example, I'm using Cornerstone for an svn client. I have working copies of multiple repositories on my computer. I really don't want to set them all up again, and I can't figure out where the Cornerstone preferences and all settings are stored. I couldn't find them in the Library anywhere.
    And that's just one case.
    I haven't done much with my MacBook Pro yet, I think in retrospect the easiest course of action is to reinstall OS X as though it were new MacBook Pro, start from scratch, and use my Time Machine backup with the migration assistant and go from there.
    And that's what I'm doing right now. I'm in the middle of reinstalling OS X.
    Afterwords I'll use a clean app uninstaller application to get rid of all the applications that I'm not using. And I'll just hack away at directories that I know I haven't looked at for years, with the confidence that I have a backup both in Time Machine and in CCC and also on my iMac. That's three backups.
    I would rather start out "light", but I can see it's just going to take forever and a day to get it done. Anyway, fortunately nothing is carved in stone, and I can always try again if I want to. But dealing with all the documents and all the applications one by one separately was just obviously going to take too much time.
    I'll report back on my results. And I appreciate your suggestion.
    Doug

  • Amsn 0.97.2-13

    hi, today i've updated to amsn 0.97.2-13 but after that i've an error:  "Loading tkcximage failed".
    How can i solve?
    thanks

    linfan wrote:any way libjpeg7 shows jpegs wrong in amsn-svn. Nothing much to do unless you downgrade half the install.
    there is a patch in our bugtracker made my djgera that fixed this issue.

  • SQL Developer SVN Authentication Loop

    Hi All,
    I am using SQLDeveloper 1.5.1 and I have been excited for the SVN functionality since SQLDeveloper was released.
    When I connect to my svn repository, if I test the read access - the authentication prompt for the password just keeps popping up - despite putting in the correct password.
    In the past I have used Tortoise w/o any issues like this, however now I am responsible for implementing source control across the team at large. I would much prefer that the team use SQLDeveloper and SVN inline rather than any alternative.
    Despite the correct information - if I forget the test and just try to check out my repository - the same behavior occurs, however when I cancel the password prompt - i receive this stacktrace in my details:
    org.tigris.subversion.svnclientadapter.SVNClientException: org.tigris.subversion.javahl.ClientException: svn: authentication cancelled
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.checkout(AbstractJhlClientAdapter.java:233)
         at oracle.jdevimpl.vcs.svn.op.SVNOperationCheckout$CheckoutThread.executeCheckout(SVNOperationCheckout.java:541)
         at oracle.jdevimpl.vcs.svn.op.SVNOperationCheckout$CheckoutThread.executeCheckoutWithProgress(SVNOperationCheckout.java:496)
         at oracle.jdevimpl.vcs.svn.op.SVNOperationCheckout$CheckoutThread.run(SVNOperationCheckout.java:346)
    Caused by: org.tigris.subversion.javahl.ClientException: svn: authentication cancelled
         at org.tigris.subversion.javahl.JavaHLObjectFactory.throwException(JavaHLObjectFactory.java:435)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.throwException(SVNClientImpl.java:1311)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.checkout(SVNClientImpl.java:363)
         at org.tigris.subversion.svnclientadapter.javahl.AbstractJhlClientAdapter.checkout(AbstractJhlClientAdapter.java:224)
         ... 3 more
    Caused by: org.tmatesoft.svn.core.SVNCancelException: svn: authentication cancelled
         at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51)
         at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:40)
         at org.tmatesoft.svn.core.internal.io.dav.DAVUtil.findStartingProperties(DAVUtil.java:124)
         at org.tmatesoft.svn.core.internal.io.dav.DAVUtil.getBaselineProperties(DAVUtil.java:197)
         at org.tmatesoft.svn.core.internal.io.dav.DAVUtil.getBaselineInfo(DAVUtil.java:160)
         at org.tmatesoft.svn.core.internal.io.dav.DAVRepository.getLatestRevision(DAVRepository.java:150)
         at org.tmatesoft.svn.core.wc.SVNBasicClient.getRevisionNumber(SVNBasicClient.java:348)
         at org.tmatesoft.svn.core.wc.SVNBasicClient.getLocations(SVNBasicClient.java:462)
         at org.tmatesoft.svn.core.wc.SVNBasicClient.createRepository(SVNBasicClient.java:418)
         at org.tmatesoft.svn.core.wc.SVNBasicClient.createRepository(SVNBasicClient.java:382)
         at org.tmatesoft.svn.core.wc.SVNUpdateClient.doCheckout(SVNUpdateClient.java:305)
         at org.tmatesoft.svn.core.javahl.SVNClientImpl.checkout(SVNClientImpl.java:360)
         ... 4 more
    It just reports an error on cancel so I don't know if that helps.
    But I need help, much obliged.
    Thanks,
    ~tim

    Hey Dedwards,
    I sat down with our release engineer and chased the logs - in the apache dump - same kind of stuff.
    However - after changing my password, and then killing TSVNCache.exe (despite both SQLDev and Tortoise not running) I was able to connect.
    Hope this helps others, thanks for the response.
    ~tim

Maybe you are looking for

  • Error while executing program

    Hi ,In sap bods,  im using abap dataflow as my source and target is flat files ,while im executing its showing error "Execute ABAP program <C:/Program Files/Business Objects/BusinessObjects Data Services/zcustdim.aba> error <    Open File Error" how

  • NWDS not working in 64 bit windows vista os

    Hello , This question seems to be basic, How am i suppose to find out the NWDS installed on my system whether its a 32-bit or 64-bit I was initially working in NWDS on windows 32 bit OS , Now i have installed the NWDS into the other windows which is

  • Planned order to purchase requisition - Manual / MRP---How do we confirm

    Hi, I have a planned order which is converted into purchase requisition (PR). I want to know the following. I know only PR number now. a) How do I know the reference planned order from Purchase requisition number? (In PR, creation indicator shows as

  • Paging results on PHP/Oracle

    Does anybody have a clean code they can share about paging query resultset on PHP using OCI (not ADO or something else)??? I've tried some posted here but the results is not encouraging ...

  • Iphoto Calender

    how much dose an Iphoto calender cost? the ones that you make on iphoto? Message was edited by: ask