Re: [e-users] Script for building E17

2005-03-27 Thread david blewett
I didn't say you should. It was a mistake on my part. I was having problems with the build process. Some parts weren't building correctly (evas, ewl), saying they couldn't find dependent parts (ecore, eet_config). I was trying to troubleshoot this, and I thought using a different build dir would he

Re: [e-users] Script for building E17

2005-03-27 Thread david blewett
Heh, this script gave me a reason to test my rdiff-backup setup Here's a hint: Don't use /usr as the build dir. On Fri, 04 Mar 2005 17:29:04 +0100, Jasper <[EMAIL PROTECTED]> wrote: > I am working on a webpage for the script. It's now located at > http://www.shodan.nl/~jasper/e17/. The scri

Re: [e-users] Script for building E17

2005-03-09 Thread Jasper
This saturday I will leave rainy Holland and go, with school, for two weeks to Italy, in those two weeks I won't have much time I can spend on-line. So questions about this script will be answered after those two weeks. Jasper --- SF email is

Re: [e-users] Script for building E17

2005-03-05 Thread Darrell Blake
> When I execute script, appears the message bellow: > > ./setup: line 62: syntax error near unexpected token `}' > ./setup: line 62: `}' It's probably because the scripts we've been posting on here have been automatically line wrapped. Have you tried getting the one from the website? I've sent y

Re: [e-users] Script for building E17

2005-03-05 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
Ah, I read your message again, now I see. Check out version 0.2.8, there it's fixed. Jasper david blewett wrote: I didn't say you should. It was a mistake on my part. I was having problems with the build process. Some parts weren't building correctly (evas, ewl), saying they couldn't find dependent

Re: [e-users] Script for building E17

2005-03-05 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
The page is somewhat finished. It is a http://www.shodan.nl/~jasper/e17/. If you have any suggestions or comments of any kind, please let me know. Jasper Jasper wrote: I am working on a webpage for the script. It's now located at http://www.shodan.nl/~jasper/e17/. The script provided in the d

Re: [e-users] Script for building E17

2005-03-05 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
Why should I now use /usr as the build dir? I built E17 succesfully in /usr/local/bin/enlightenment-e17/ Jasper david blewett wrote: Heh, this script gave me a reason to test my rdiff-backup setup Here's a hint: Don't use /usr as the build dir. On Fri, 04 Mar 2005 17:29:04 +0100, Jasper <[E

Re: [e-users] Script for building E17

2005-03-04 Thread Jasper
I am working on a webpage for the script. It's now located at http://www.shodan.nl/~jasper/e17/. The script provided in the downloads section works. Tomorrow I'll finish the page. Jasper --- SF email is sponsored by - The IT Product Guide Read

Re: [e-users] Script for building E17

2005-03-04 Thread Darrell Blake
> great. Wonderfull! Slackware 10.1? I've had it running fine on 10 and 10.1. Darrell --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly li

Re: [e-users] Script for building E17

2005-03-04 Thread Benone Marcos
> I have only tested my script (v0.2.7) using Debian and not yet > Slackware. But I think it's pretty much Linux distribution independant, > correct me if I'm wrong. just to know... I am using the script on Slackware and it works great. the way you created the script, I believe that it will run on

Re: [e-users] Script for building E17

2005-03-04 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
Benone Marcos wrote: I have only tested my script (v0.2.7) using Debian and not yet Slackware. But I think it's pretty much Linux distribution independant, correct me if I'm wrong. just to know... I am using the script on Slackware and it works great. Wonderfull! Slackw

Re: [e-users] Script for building E17

2005-03-04 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
Sure: #!/bin/sh # #Filename: Build-e17.sh #Version: 0.2.4 #Author: Jasper Lievisse Adriaanse, [EMAIL PROTECTED], copyright 2005, BSD-license. #Thanks to those on enlightenment-users@lists.sourceforge.net who helped me with this script, especially Benone Marcos. # #Before yo

Re: [e-users] Script for building E17

2005-03-04 Thread enl
Jasper Lievisse Adriaanse [NedLinux.nl] wrote: I have only tested my script (v0.2.7) using Debian and not yet Slackware. But I think it's pretty much Linux distribution independant, correct me if I'm wrong. works fine for me under mandrake 10.1 3 We need to start including some text at the s

Re: [e-users] Script for building E17

2005-03-04 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
MillTek wrote: Jasper, A couple of issues; 1 Can you produce a 'most-recent' version that has all the changes that you and the other guys mentioned? It is a the end of this e-mail. Within some weeks I'll try to make a simple webpage for it. Then downloading will be easier. 2 You mentioned hav

Re: [e-users] Script for building E17

2005-03-04 Thread MillTek
Can we see the script with these statements in place? Jim [EMAIL PROTECTED] wrote: I just found it out. They should be on line 67 and 77 I think. Jasper --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundre

Re: [e-users] Script for building E17

2005-03-04 Thread MillTek
Jasper, A couple of issues; 1 Can you produce a 'most-recent' version that has all the changes that you and the other guys mentioned? 2 You mentioned having the Path right. What exactly does this mean? If we get Path management really worked out we can produce a script that will build e no m

Re: [e-users] Script for building E17

2005-03-04 Thread Jasper Lievisse Adriaanse [NedLinux.nl]
I now moved all the variables containing $BUILD_DIR to the end of welke(). Because before that it didn't returned the right value. Jasper [EMAIL PROTECTED] wrote: Darrell Blake wrote: I also had to add the following lines after setting $BUILD_DIR: PATH=$PATH:$BUILD_DIR/bin CPPFLAG

Re: [e-users] Script for building E17

2005-03-03 Thread enl
Darrell Blake wrote: I also had to add the following lines after setting $BUILD_DIR: PATH=$PATH:$BUILD_DIR/bin CPPFLAGS=-I$BUILD_DIR/include oops, and also LDFLAGS=-I$BUILD_DIR/lib so entrance can find ecore libraries. And apparently entrance wants to install /etc/entr

Re: [e-users] Script for building E17

2005-03-03 Thread Darrell Blake
> I also had to add the following lines after setting $BUILD_DIR: > > PATH=$PATH:$BUILD_DIR/bin > CPPFLAGS=-I$BUILD_DIR/include > > so headers and config files can be found by subsequent packages. Yeah I had to too. But to be honest I just ended up building it in /usr so it wou

Re: [e-users] Script for building E17

2005-03-03 Thread enl
I also had to add the following lines after setting $BUILD_DIR: PATH=$PATH:$BUILD_DIR/bin CPPFLAGS=-I$BUILD_DIR/include so headers and config files can be found by subsequent packages. mark --- SF email is sponsored by - The IT Pr

Re: [e-users] Script for building E17

2005-03-03 Thread Darrell Blake
Just found another problem. You have to call ruimop() after welke() otherwise $CVS_SRC doesn't have a value. This is how I have it looking so far and I'm just about to test it... #!/bin/sh # # General variables are specified below # # Flags for GCC, pleae specify your own. FLAGS="-O3" # Flags for

Re: [e-users] Script for building E17

2005-03-03 Thread jasper
I just found it out. They should be on line 67 and 77 I think. Jasper > Just having a quick look at your script and it seems you've missed two > "done" statements on your for loops. > > Darrell > > > --- > SF email is sponsored by - The IT Produ

Re: [e-users] Script for building E17

2005-03-03 Thread Darrell Blake
Just having a quick look at your script and it seems you've missed two "done" statements on your for loops. Darrell --- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Dis

Re: [e-users] Script for building E17

2005-03-02 Thread Jasper
Here is the new script, I haven't tested it yet, but it should work. -- #!/bin/sh # # Filename: Build-e17.sh # Version: 0.2.1 # Author: Jasper Lievisse Adriaanse, [EMAIL PROTECTED], copyright 2005, BSD-license. # Thanks to those on enlightenm

Re: [e-users] Script for building E17

2005-03-02 Thread jasper
Thanks, so your addition should go between make distclean &> /dev/null and ./autogen.sh --prefix=$BUILD_DIR &> $CVS_SRC/logs/$X.log ? Maybe I'll make a Perl version of it sometime. Jasper > nice job Jasper, > > works fine here. I just added these lines: > ... > LDDFLAGS=-L$BUILD_DIR/lib

Re: [e-users] Script for building E17

2005-03-02 Thread Benone Marcos
... # gcc flags FLAGS="-O3 -march=pentium3" -- added lines -- LDDFLAGS=-L$BUILD_DIR/lib CPPFLAGS=-L$BUILD_DIR/include -- added lines -- maak() { make distclean &> /dev/null # configure, make, & install with logs ./autogen.sh --prefix=$BUILD_DIR LDFLAGS=$LDFLAGS CPPFLAGS=$CPPFLAGS &> $CVS_SRC/log

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
I am now running my script for the first time with having succesfull thoughts, because when the builddir is the same as the source dir, the script finishes with 7 minutes on a 1gHz system. That's just to fast. Now there're results in my build dir and it's taking much more time and cpu-cycles. So it

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
There's a small bug in the script, if BUILD_DIR is the same directory as CVS_SRC, it will remove your freshly downloaded sources because of this line: rm -rf $BUILD_DIR/* please place a # in front of it, or use two different directories. Jasper > ... > # gcc flags > FLAGS="-O3 -march=pentium3"

Re: [e-users] Script for building E17

2005-03-01 Thread jasper
> ... > # gcc flags > FLAGS="-O3 -march=pentium3" > > -- added lines -- > LDDFLAGS=-L$BUILD_DIR/lib > CPPFLAGS=-L$BUILD_DIR/include > -- added lines -- > > maak() { > make distclean &> /dev/null > > # configure, make, & install with logs > ./autogen.sh --prefix=$BUILD_DIR LDFLAGS=$LDFLAGS CPPFLAGS=

Re: [e-users] Script for building E17

2005-03-01 Thread Benone Marcos
nice job Jasper, works fine here. I just added these lines: ... LDDFLAGS=-L$BUILD_DIR/lib CPPFLAGS=-L$BUILD_DIR/include ... then, call then in autogen argument list. thanks for the script On Tue, 01 Mar 2005 15:29:02 +0100, Jasper <[EMAIL PROTECTED]> wrote: > Hello, > > because I'm getting tir

[e-users] Script for building E17

2005-03-01 Thread Jasper
Hello, because I'm getting tired of typing the commands for building E17. I took the script from Edevelop (dated 2002) and updated it. I haven't tested it yet. But does it _look_ like it'll work? ---build-e17.sh- #!/bin/sh # Where the CVS directory is CVS_SRC=/hom