You are not logged in.

#1 2006-11-06 03:39:53

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Compiling Kerry Beagle from SVN

I downloaded Kerry through SVN but am not sure how to compile, there's no configure script. There's a Makefile.am so I tried automake but that gave me this error:

automake: `configure.ac' or `configure.in' is required

Offline

#2 2006-11-06 05:10:23

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: Compiling Kerry Beagle from SVN

run
./autogen.sh
to generate the configure script

Offline

#3 2006-11-06 10:01:20

snader
Member
Registered: 2006-03-28
Posts: 51

Re: Compiling Kerry Beagle from SVN

You probably need an admin inside the kerry directory to compile it, too:

svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin

After that "make -f Makefile.cvs".

Offline

#4 2006-11-07 05:10:13

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Re: Compiling Kerry Beagle from SVN

There's no autogen.sh in the directory.

Ok, so I got the admin downloaded. When I run make -f Makefile.cvs I get:

make: Makefile.cvs: No such file or directory
make: *** No rule to make target `Makefile.cvs'.  Stop.

Offline

#5 2006-11-07 08:08:07

snader
Member
Registered: 2006-03-28
Posts: 51

Re: Compiling Kerry Beagle from SVN

Okay, then create a Makefile.cvs in the kerry dir with these contents, and try again:

all:
        @echo "This Makefile is only for the CVS repository"
        @echo "This will be deleted before making the distribution"
        @echo ""
        @if test ! -d admin; then 
           echo "Please recheckout this module!" ;
           echo "for cvs: use checkout once and after that update again" ;
           echo "for cvsup: checkout kde-common from cvsup and" ;
           echo "   link kde-common/admin to ./admin" ;
           exit 1 ;
        fi
        $(MAKE) -f admin/Makefile.common cvs

.SILENT:

Offline

#6 2006-11-08 03:27:50

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Re: Compiling Kerry Beagle from SVN

Makefile.cvs:2: *** missing separator (did you mean TAB instead of 8 spaces?).  Stop.

Offline

#7 2006-11-08 03:31:15

efossvold
Member
From: Kamloops, Canada
Registered: 2006-07-23
Posts: 59

Re: Compiling Kerry Beagle from SVN

Nevermind, I got it working, just had to replace the spaces with tabs. Thanks!

Offline

Board footer

Powered by FluxBB