KDE

NAVIGATION
CATEGORIES
REFERRENCE
LINKS
  • building KDE packages from svn ?

    12 answers - 949 bytes - related search similar search Add To My Delicious Add To My Stumble Upon Add To My Google Mark Add To My Facebook Add To My Digg Add To My Reddit

    Hi,
    I hope this is the correct place for a newbie-ish question like this
    Following a discussion on the NetworkManager mailing list, I want to try
    knetworkmanager from
    Sadly, I am embarrassed to admit I have never used KDE svn , so not sure what
    to do. The instructions I got where
    svn co
    and then just the usual
    /configure
    make
    make install
    however, there is clearly some step missing in this, as the checked out
    directory does not have a ./configure. I played a bit with autoconf, nothing
    worked.
    Searching around on the KDE SVN web pages I came to realise its not that
    simple, and I probably have to check out other things as well ? But I
    haven't managed to figure out quite what.
    So, can someone give me a newbie guide to the step to get this going
    cheers Chris

    >Visit #unsub to unsubscribe <<
  • No.1 | | 934 bytes | |

    Chris Jones (a):

    ./configure
    make
    make install

    however, there is clearly some step missing in this, as the checked out
    directory does not have a ./configure. I played a bit with autoconf, nothing
    worked.

    Searching around on the KDE SVN web pages I came to realise its not that
    simple, and I probably have to check out other things as well ? But I
    haven't managed to figure out quite what.

    So, can someone give me a newbie guide to the step to get this going

    I am not an expert, but I guess you forgot to do "make -f Makefile.cvs".
    BTW. It should be described on:

    HTH

    Krzysztof Lichota


    >Visit #unsub to unsubscribe <<


    PGP SIGNATURE
    Version: GnuPG v1.4.2.2 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

    8DKN2WpIwMm3eM6FapHVeos=
    =32Ej
    PGP SIGNATURE
  • No.2 | | 649 bytes | |

    Hi,

    It should be in main directory of module (for example
    "kdebase/Makefile.cvs").

    Maybe I wasn't clear. There is no Makefile.cvs ANYWHERE in the directory
    structure I checked out for knetworkmanager. I thought maybe it was a problem
    with this package, so following the instructions on
    I checked out

    svn co

    and, low and behold, that package does have a Makefile.cvs.

    So, I guess knetworkmanager is screwed in svn or is there something I can do
    to get it ?

    Chris

    Regards

    Krzysztof Lichota

    >Visit #unsub to unsubscribe <<
  • No.3 | | 409 bytes | |


    I am not an expert, but I guess you forgot to do "make -f Makefile.cvs".

    Where is this file ? I don't have one. So clearly I am still missing a step ?

    BTW. It should be described on:

    Hmm. I've spent some time looking at those pages, and to be frank they are far
    from clear.

    Chris

    >Visit #unsub to unsubscribe <<
  • No.4 | | 606 bytes | |

    Chris Jones (a):

    >I am not an expert, but I guess you forgot to do "make -f Makefile.cvs".


    Where is this file ? I don't have one. So clearly I am still missing a step ?

    It should be in main directory of module (for example
    "kdebase/Makefile.cvs").

    Regards

    Krzysztof Lichota


    >Visit #unsub to unsubscribe <<


    PGP SIGNATURE
    Version: GnuPG v1.4.2.2 (GNU/Linux)
    Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

    WElVjf3d8=
    =S4u9
    PGP SIGNATURE
  • No.5 | | 1429 bytes | |

    Am Samstag, 13. Mai 2006 11:32, schrieb Chris Jones:
    Hi,

    I hope this is the correct place for a newbie-ish question like this

    Following a discussion on the NetworkManager mailing list, I want to try
    knetworkmanager from

    Sadly, I am embarrassed to admit I have never used KDE svn , so not sure
    what to do. The instructions I got where

    svn co

    and then just the usual

    ./configure
    make
    make install

    Not quite, knetworkmanager is not a module on its own, but kdereview is. So
    checkout the kdereview dir
    $svn co -N
    then
    $svn up kdereview/knetworkmanager

    Additionally you need the admin dir with the build system, should be linked in
    as svn::externals property to kdereview. Problem seems to be that one cannot
    checkout an external purely, so _instead_ of the previous you have to
    checkout the full kdereview* :(
    $svn co
    Then do
    $echo knetworkmanager kdereview/inst-apps
    so only knetworkmanager will be built.

    Then try
    $cd kdereview
    $make -f Makefile.cvs
    $./configure && make && make install
    (All out of memory, so untested)

    Good luck :)

    * Does anyone know better?

    Regards
    Friedrich


    >Visit #unsub to unsubscribe <<


    PGP SIGNATURE
    Version: GnuPG v1.4.2 (GNU/Linux)

    BJjFZRJ+o2+kgLhsBw56aKQ=
    =Ywce
    PGP SIGNATURE
  • No.6 | | 488 bytes | |

    Hi,

    Good luck :)

    Thanks. First reply I have received that actually helped :)

    However, not quite there yet. When I run ./configure I get the message

    checking if knetworkmanager should be compiled no

    And subsequently make does nothing. I tried a few ./configure options to
    enable knetworkmanager, but nothing seems to enable it. Any suggestions ?

    cheers Chris

    >Visit #unsub to unsubscribe <<
  • No.7 | | 706 bytes | |

    Saturday 13 May 2006 12:34 pm, Chris Jones wrote:
    Hi,

    Good luck :)

    Thanks. First reply I have received that actually helped :)

    However, not quite there yet. When I run ./configure I get the message

    checking if knetworkmanager should be compiled no

    my mistake. The real problem is

    configure: WARNING: You need D-BUS/Qt3 bindings

    So, I guess I'm missing some packages.

    cheers Chris

    And subsequently make does nothing. I tried a few ./configure options to
    enable knetworkmanager, but nothing seems to enable it. Any suggestions ?

    cheers Chris
    >
    >Visit #unsub to
    >unsubscribe <<
  • No.8 | | 528 bytes | |

    13.05.06 11:28:29, Chris Jones wrote:
    BTW. It should be described on:

    Hmm. I've spent some time looking at those pages, and to be frank they are far
    from clear.

    That page is for KDE 4.0, which will use a totally different build
    system and AFAIK doesn't use Makefile.cvs anymore.

    Also the information seems to be outdated as it still references to
    automake. That page clearly needs updating.

    I'll respond to your latest post with specific build-instructions.

    Andreas
  • No.9 | | 878 bytes | |

    Am Samstag, 13. Mai 2006 13:34, schrieb Chris Jones:
    Hi,

    Good luck :)

    Thanks. First reply I have received that actually helped :)

    Which does not make the other less, everyone tries his best, and this is
    welcome :)

    However, not quite there yet. When I run ./configure I get the message

    checking if knetworkmanager should be compiled no

    Do
    $cat inst-apps
    perhaps you missspelled knetworkmanager? Should be the name of the subdir.

    Pino's approach to step into the knetworkmanager dir after the "./configure"
    and do the "make"s there should work, too, but delete inst-apps before ;)

    Regards
    Friedrich


    >Visit #unsub to unsubscribe <<


    PGP SIGNATURE
    Version: GnuPG v1.4.2 (GNU/Linux)

    LNn76UcXgToeFuduziY=
    =5hsI
    PGP SIGNATURE
  • No.10 | | 1052 bytes | |

    13.05.06 12:00:44, Chris Jones wrote:
    It should be in main directory of module (for example
    "kdebase/Makefile.cvs").

    Maybe I wasn't clear. There is no Makefile.cvs ANYWHERE in the directory
    structure I checked out for knetworkmanager. I thought maybe it was a problem
    with this package, so following the instructions on
    I checked out

    svn co

    and, low and behold, that package does have a Makefile.cvs.

    Beware that the Makefile.cvs in trunk/KDE/kdebase shouldn't be used
    anymore, AFAIK. Also trunk/KDE/* is not meant to be used by anyone else
    than KDE developers. However trunk/kdereview still works against KDE3,
    AFAIK

    So, I guess knetworkmanager is screwed in svn or is there something I can do
    to get it ?

    Yes, there quite some stuff missing, not only Makefile.cvs, but also the
    admin-directory. You need to checkout the admin dir from

    into the directory admin within knetworkmanager. The Makefile.cvs file
    can be copied from kdebase, I think.

    Andreas
  • No.11 | | 626 bytes | |

    Am Samstag, 13. Mai 2006 14:22, schrieb Friedrich W. H. Kossebau:
    Pino's approach to step into the knetworkmanager dir after the
    "./configure" and do the "make"s there should work, too, but delete
    inst-apps before ;)

    Duh, no real reason to delete inst-apps here, but it can fool you once you try
    to compile another app in kdereview, so better remove it if you don't use it.

    Friedrich


    >Visit #unsub to unsubscribe <<


    PGP SIGNATURE
    Version: GnuPG v1.4.2 (GNU/Linux)

    1Kwxo7d7LHcUfL2Th3KGofo=
    =HHbq
    PGP SIGNATURE
  • No.12 | | 565 bytes | |

    13.05.06 14:22:36, Andreas Pakulat wrote:
    13.05.06 12:00:44, Chris Jones wrote:
    So, I guess knetworkmanager is screwed in svn or is there something I can do
    to get it ?

    Yes, there quite some stuff missing, not only Makefile.cvs, but also the
    admin-directory. You need to checkout the admin dir from

    into the directory admin within knetworkmanager. The Makefile.cvs file
    can be copied from kdebase, I think.

    Forget that, I was totally unaware that the real "module" is kdereview
    and not each subdir within that.

    Andreas

Re: building KDE packages from svn ?


max 4000 letters.
Your nickname that display:
In order to stop the spam: 9 + 8 =
QUESTION ON "KDE"

EMSDN.COM