Re: [e-users] how to change font in e17

2005-08-19 Thread Fernando Meira
Check:
$ enlightenment_remote --help
Cheers,
FernandoOn 8/18/05, Sylvain Blot <[EMAIL PROTECTED]> wrote:
Hi ml,I'm searching how to change the font in menus and windows titlesthanks for the help--Sylvain---SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle PracticesAgile & Plan-Driven Development * Managing Projects & Teams * Testing & QASecurity * Process Improvement & Measurement * 
http://www.sqe.com/bsce5sf___enlightenment-users mailing listenlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] get-e.sh

2005-08-19 Thread eric dan
i think this problem is already fixed in cvs by now.
it was just a mistake in e17/apps/e/configure.in
line 137 change the first word in that line from ERROR to WARN and it
will work. but public cvs should be ok.
I got this info from #e by the way.

On 8/18/05, MillTek <[EMAIL PROTECTED]> wrote:
> Hi,
> Been using get-e.sh to keep my e17 up to date. Today I got this when I
> ran it. Any ideas anyone??
> 
> 
> checking for fnmatch.h... yes
> checking for fnmatch... yes
> checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include
> checking for gethostbyname... yes
> checking for connect... yes
> checking for remove... yes
> checking for shmat... yes
> checking for IceConnectionNumber in -lICE... yes
> checking X11/X.h usability... yes
> checking X11/X.h presence... yes
> checking for X11/X.h... yes
> checking CFBase.h usability... no
> checking CFBase.h presence... no
> checking for CFBase.h... no
> configure: error: Cannot find CoreFoundation headers and libraries.
> 
> 
> ---
> SF.Net email is Sponsored by the Better Software Conference & EXPO
> September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
> Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
> Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
> ___
> enlightenment-users mailing list
> enlightenment-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-users
>


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Terminal that renders to background canvas

2005-08-19 Thread Hisham Mardam Bey
On 8/16/05, Mike Russo <[EMAIL PROTECTED]> wrote:
> Is it possible for a terminal application to render to E17's background
> canvas, just like the modules do, in order to provide a simulation of
> the fake transparency we've all come to know and love (or at least
> immortalize in screenshots)? If so, are there any plans for Eterm (for
> Example) to support this? Or am I completely off-base?
> 

You need one of two things:

1) The terminal being a module
2) Using something like Evoak on the E17 desktop.

Since I think (2) isnt going to happen anytime soon, I'll tell you a
bit about (1). The terminal needs to be an evas smart object or a
complete module that renders everything on the desktop. Currently,
Enterminus can do that (its a smart object so you can stick it in a
module and it works) but its terminal emulation code still needs a
good amount of work.

-- 
Hisham Mardam Bey
MSc (Computer Science)
http://hisham.cc/
+9613609386
Codito Ergo Sum (I Code Therefore I Am)


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Compile E17 on FreeBSD!

2005-08-19 Thread Anders Trobäck

Hello!

I'm trying to compile e17 from CVS on my FreeBSD (5.4) box but
autogen.sh gives me:

[snip]
aclocal:configure.in:147: warning: macro `AM_GNU_GETTEXT' not found in
library
aclocal:configure.in:148: warning: macro `AM_GNU_GETTEXT_VERSION' not
found in library
Running autoheader...
Running autoconf...
configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure.in:148: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
[snip]


Any ideas out there?

Thanks!

--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

Anders Trobäck
http://www.troback.com


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Doing E-apps

2005-08-19 Thread Geoffrey

Jesse wrote:

Most (if not all) of e17 appears to be in Standard C.

Now, as someone who recently (6 months ago) started learning C++, I
can tell you if you don't know either C or C++ you should really
consider learning C++. If you learn C++ you're also learning a lot of
C (after all C is just "C improved").
C++ also gives you a lot of tools to make things easier than Standard
C as far as my (albeit limited) knowledge of the subjects can see...


Personally, I think C++ sucks.  To properly use the language, you have 
to create all your objects up front and that takes quite a bit of time. 
 C++ is like COBOL, you do a lot of work before you really start 
writing code.  Don't get me wrong, up front design is a good thing, but 
C++ just has so much overhead in building the data structures.


90% of the C++ code I've seen has been written incorrectly, as in NOT 
from an OO approach.


They are really two completely different approaches to software 
development.  That is, if you use the tool as it was designed.  C++ was 
written specifically to be an OO language, C was not.  So you're really 
best deciding in the approach you want to take, then choose your language.



Anyways, after you've learned most of the basic concepts (should only
take a couple of good nights of reading books) you will know enough to
read (and follow) most of the e sourcecode - and just learn from there
and read the documentation on the different core modules.


It might take a reasonably decent programmer a couple of nights to learn 
 C++, but unless you understand the concepts, you'll write lousy code. 
 The best thing about open source is, you'll get a lot of feedback and 
you take it as constructive feedback, you'll learn much faster.


Since E is written in C (I believe) I'd suggest sticking with the 
current approach to things.  Personal opinion...


--
Until later, Geoffrey


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Newbie question: Entrance

2005-08-19 Thread Alejandro Salas
Hi everyone,

I just compiled e17 and entrance with the get_e.sh
script from rasterman website. On a tutorial
(https://vogelweith.homeftp.net/Linux/e17_en.php#x1-60001.1)
I read the following: 
> Finally, in order for Entrance to start during boot,

> you must create the following links in /etc/rc*.d
with 
> the following command (This command is based on the
wdm > settings):
> # update-rc.d entrance start 99 2 3 4 5 . stop 01 0
1 6 

But I'm a bit lost with that. Could someone explain to
me how I can start Entrance during boot?. 

Thanx


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Fernando Meira
Hi,
If you already installed/compiled Entrance, the you just need to configure it (which is recommended but not necessary), using $ edb_gtk_ed /etc/entrance_config.db

So that you start Entrace when you boot, you need to change in /etc/rc.conf the variable DISPLAYMANAGER="entrance"


HTH,
Fernando
On 8/19/05, Alejandro Salas <[EMAIL PROTECTED]> wrote:
Hi everyone,I just compiled e17 and entrance with the get_e.shscript from rasterman website. On a tutorial(https://vogelweith.homeftp.net/Linux/e17_en.php#x1-60001.1
)I read the following:> Finally, in order for Entrance to start during boot,> you must create the following links in /etc/rc*.dwith> the following command (This command is based on the
wdm > settings):> # update-rc.d entrance start 99 2 3 4 5 . stop 01 01 6But I'm a bit lost with that. Could someone explain tome how I can start Entrance during boot?.Thanx
__Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection aroundhttp://mail.yahoo.com---
SF.Net email is Sponsored by the Better Software Conference & EXPOSeptember 19-22, 2005 * San Francisco, CA * Development Lifecycle PracticesAgile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf___enlightenment-users mailing list
enlightenment-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Alejandro Salas
Thanx for your quick response. But I forgot to say
that I'm using Debian sarge, so I don't have that
file. That's why in the tutorial I found they mention
modifying the rc*.d directories, but I don't know
exactly what to do.




Start your day with Yahoo! - make it your home page 
http://www.yahoo.com/r/hs 
 


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Fernando Meira
Ohh.. ok.. and what about this:
# update-rc.d entrance start 99 2 3 4 5 . stop 01 0 1 6 .
as it says in the tutorial...
I don't use Debian, but I'd assume that there is a config file (maybe /etc/rc.d) where you specify your displaymanager..
On 8/19/05, Alejandro Salas <[EMAIL PROTECTED]> wrote:
Thanx for your quick response. But I forgot to saythat I'm using Debian sarge, so I don't have thatfile. That's why in the tutorial I found they mentionmodifying the rc*.d directories, but I don't knowexactly what to do.
Start your day with Yahoo! - make it your home pagehttp://www.yahoo.com/r/hs---
SF.Net email is Sponsored by the Better Software Conference & EXPOSeptember 19-22, 2005 * San Francisco, CA * Development Lifecycle PracticesAgile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf___enlightenment-users mailing list
enlightenment-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] eloquence

2005-08-19 Thread phriedrich
Hi,

last year I started a very small project using the EFL: eloqunece[1], a
program that displays the title of the song xmms plays, directly on the
desktop and allows some basic xmms-control.

Some weeks ago I started a port as module[2] for e17, though it's
version number is 0.4 (compared to 0.3.2 of standalone version) it's very
basic now, lacks all possibilities to control xmms, just shows the song
now.
The theme-selector still don't work and the themes have to be changed in
some points to better fit into e17.

Best regards,

Friedrich

--
[1] http://www.phriedrich.artfact.at/eloquence.php
[2]
NEhttp://www.phriedrich.artfact.at/projects/eloquence/eloquence-0.4.tar.bz
--




pgpMp88U0T96N.pgp
Description: PGP signature


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Alejandro Salas
That worked perfectly. One thing though. I'm testing
e17 but when I have to work I use e16. I just rebooted
my machine to see Entrance, and logged in chose e16,
and a lot of applications (firefox, gaim, eclipse)
have different fonts than the usual ones. (I think
they are the same ones but smaller). Any ideas of why
that happened??

Thanx again



__ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.com/mailtour.html 



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Tom
[19/08/2005 -- 16:54u] Alejandro Salas:

> That worked perfectly. One thing though. I'm testing
> e17 but when I have to work I use e16. I just rebooted
> my machine to see Entrance, and logged in chose e16,
> and a lot of applications (firefox, gaim, eclipse)
> have different fonts than the usual ones. (I think
> they are the same ones but smaller). Any ideas of why
> that happened??

I think it is because Entrance doesn't start gnome-settings-daemon at
login. Try running it manually and restart an application to see if it
has any effect.

Cheers,
Tom

-- 
keys: http://tmp.verbreyt.be/files/ (abwaerts.asc & verbreyt.asc)
 ---
np: Heid - Pilgrim of the Sublunary World (4)


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] eterm misbehaving with mozilla when pasting special chars

2005-08-19 Thread Morten Nilsen

Christoph Gysin wrote:

gimpel wrote:


I tried it out again, and now both gaim and xterm behaves, while
eterm turn "æøå" into "??a*"

I would appreciate any help solving this problem


Eterm does not support utf-8 (yet) which i assume you are using on your
system. See 'man Eterm' quite at the end for a list of available
encodings


I use iso8859-1 elsewhere on my system, but mozilla, it seems, only 
supplies utf-8 in a selection, expecting the other boys and girls to 
play nice and convert themselves..




If this is the case, you could use urxvt, a rxvt fork that supports unicode. It 
also supports most of Eterms features...


what is (u)rxvt? and in what way can I use it?

--
Morten


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] eterm misbehaving with mozilla when pasting special chars

2005-08-19 Thread Dènis Riedijk
> > If this is the case, you could use urxvt, a rxvt fork that supports 
> > unicode. It
> > also supports most of Eterms features...
> 
> what is (u)rxvt? and in what way can I use it?

Hmm, my guess is it is a terminal like Eterm, that supports unicode...

Dènis


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] eloquence

2005-08-19 Thread dalfa the enlightenedone
great!!

i will probe it

i do that, with the xmms osd plugin but its E has that 
tool i will try it


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Alejandro Salas
I can't find such a daemon. Any hints?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Anders Trobäck

On FreeBSD it's:

/usr/X11R6/libexec/gnome-settings-daemon

\\anders


Alejandro Salas wrote:


I can't find such a daemon. Any hints?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 



--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

http://www.troback.com
-



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Tom
[19/08/2005 -- 21:15u] Anders Trobäck:

> On FreeBSD it's:
> 
> /usr/X11R6/libexec/gnome-settings-daemon

On my Debian system, it's /usr/bin/gnome-settings-daemon, which is a
symlink to /usr/lib/control-center/gnome-settings-daemon. The files
belong to the gnome-control-center package...

I don't know for sure if it is indeed causing your problem; I just
notice the same thing here when I don't use gdm (regardless of what
window manager I start), but wdm or plain startx.

Cheers,
Tom

-- 
keys: http://tmp.verbreyt.be/files/ (abwaerts.asc & verbreyt.asc)
 ---
np: In Slaughter Natives - As My Shield


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Newbie question: Entrance

2005-08-19 Thread Alejandro Salas
> I don't know for sure if it is indeed causing your 
> problem; I just
> notice the same thing here when I don't use gdm 
> (regardless of what
> window manager I start), but wdm or plain startx.
> 
> Cheers,
> Tom

I don't have that deamon at least from what I could
search (using locate and find, and the paths you guys
mentioned). The font problem seems to affect all gtk
apps, a friend of mine told me that the same bug use
to happend ocasionally in Red Hat (I don't know what
version). In my case it seems to happen every time
that I use entrance.

Any ideas are appreciate it.
Thanx guys for your input

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Terminal that renders to background canvas

2005-08-19 Thread Mike Russo



Enterminus crashes with a floating point exception, running through gdb 
reveals what looks like a divide by zero condition:


[EMAIL PROTECTED] /usr/src/e17/proto/enterminus $ DISPLAY=:0 gdb 
src/bin/enterminus

GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain 
conditions.

Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...Using host libthread_db 
library "/lib/libthread_db.so.1".


(gdb) run
Starting program: /usr/src/e17/proto/enterminus/src/bin/enterminus
[Thread debugging using libthread_db enabled]
[New Thread -1224583472 (LWP 31684)]

Program received signal SIGFPE, Arithmetic exception.
[Switching to Thread -1224583472 (LWP 31684)]
0x0804cb66 in term_smart_resize (o=0x8064de0, w=65529, h=65517) at 
smart.c:196

196num_chars_w = w / term->font.width;
(gdb) backtrace
#0  0x0804cb66 in term_smart_resize (o=0x8064de0, w=65529, h=65517)
  at smart.c:196
#1  0x0804d237 in enterm_cb_resize (ee=0x805d600) at enterm.c:31
#2  0xb7faec56 in _ecore_evas_free () from /usr/X11R6/lib/libecore_evas.so.1
#3  0x in ?? ()
#4  0xfff9 in ?? ()
#5  0xffed in ?? ()
#6  0xb7fb5634 in _ecore_evas_fps_rendertime_mmap ()
 from /usr/X11R6/lib/libecore_evas.so.1
#7  0xb7b2211c in ?? () from /usr/X11R6/lib/libecore.so.1
#8  0xb7faeaf8 in _ecore_evas_free () from /usr/X11R6/lib/libecore_evas.so.1
#9  0x0805d890 in ?? ()
#10 0xb7b1a20c in _ecore_event_call () from /usr/X11R6/lib/libecore.so.1
#11 0x0804f320 in ?? ()
#12 0x0805b858 in ?? ()
#13 0x0001 in ?? ()
#14 0xb7b2211c in ?? () from /usr/X11R6/lib/libecore.so.1
#15 0x in ?? ()
#16 0x in ?? ()
#17 0x0001 in ?? ()
#18 0xb7b1dad3 in _ecore_main_shutdown () from /usr/X11R6/lib/libecore.so.1
#19 0xb7fcd68c in ?? ()
#20 0x in ?? ()
---Type  to continue, or q  to quit---
#21 0x0001 in ?? ()
#22 0x0001 in ?? ()
#23 0x in ?? ()
#24 0x in ?? ()
#25 0x080489ac in ?? ()
#26 0x0804ed5c in ?? ()
#27 0xbc7a6c3c in ?? ()
#28 0x41d0c187 in ?? ()
#29 0x in ?? ()
#30 0x3f79cbc0 in ?? ()
#31 0xb7b1d965 in _ecore_main_shutdown () from /usr/X11R6/lib/libecore.so.1
#32 0x0804d270 in enterm_cb_title_change (data=0x4, type=16, ev=0xfff9)
  at enterm.c:45
Previous frame inner to this frame (corrupt stack?)


Oh well. ;-)

Hisham Mardam Bey wrote:


On 8/16/05, Mike Russo <[EMAIL PROTECTED]> wrote:
 


Is it possible for a terminal application to render to E17's background
canvas, just like the modules do, in order to provide a simulation of
the fake transparency we've all come to know and love (or at least
immortalize in screenshots)? If so, are there any plans for Eterm (for
Example) to support this? Or am I completely off-base?

   



You need one of two things:

1) The terminal being a module
2) Using something like Evoak on the E17 desktop.

Since I think (2) isnt going to happen anytime soon, I'll tell you a
bit about (1). The terminal needs to be an evas smart object or a
complete module that renders everything on the desktop. Currently,
Enterminus can do that (its a smart object so you can stick it in a
module and it works) but its terminal emulation code still needs a
good amount of work.

 




--
Mike Russo
ReadQ Systems, Inc.
(212) 425 3680 x105

Random quote of the last-time-I-ran-bash:
For large values of one, one equals two, for small values of two.




--
Mike Russo
ReadQ Systems, Inc.
(212) 425 3680 x105

Random quote of the last-time-I-ran-bash:
For large values of one, one equals two, for small values of two.



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Nice screenshot, but what program is it?

2005-08-19 Thread Fernando Meira
I still haven't found what could be the problem so that urxvt started
from iBar send CPU to 100% and goes ok if started from a terminal.
Also, I been using e17setroot -s bg to produce fake_transparency on
terminals (urxvt) and erss. The problem is that I have to use
e17setroot every time I reboot my laptop. Do I have to it in some init
script to be launch at login or there's a way to make it once per all?
(i use it on .edj files).

Thanks,
FernandoOn 8/17/05, Fernando Meira <[EMAIL PROTECTED]> wrote:
Ok, I found the problem.
When I start urxvt from another terminal (xterm) all goes fine.
When I start urxvt from iBar (with the same options) the CPU monitor blows away..
Why?On 8/17/05, Christoph Gysin <
[EMAIL PROTECTED]> wrote:
Fernando Meira wrote:> Regarding the cpu-usage, I was using the following options:> urxvt -tr -sh 95 -tint white +sb -geometry 100x32, and with this, the> monitor fly to 101%!> With urxvt -tr +sb it behaves much better..
I use:$ urxvt -rv +sb -tr -fade 70 -sl 5000 -tint white -sh 40Christoph--echo mailto: NOSPAM !#$.'<*>'|sed 's. ..'|tr "<*> !#:2" [EMAIL PROTECTED]---
SF.Net email is Sponsored by the Better Software Conference & EXPOSeptember 19-22, 2005 * San Francisco, CA * Development Lifecycle PracticesAgile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/enlightenment-users





Re: [e-users] Compile E17 on FreeBSD!

2005-08-19 Thread Anders Trobäck
Thanks but I have gettext installed! Should I point out some dir to 
autogen where getttext stuff are locaed?


\\anders

Mike Russo wrote:

Anders Trobäck wrote:


Hello!

I'm trying to compile e17 from CVS on my FreeBSD (5.4) box but
autogen.sh gives me:

[snip]
aclocal:configure.in:147: warning: macro `AM_GNU_GETTEXT' not found in
library
aclocal:configure.in:148: warning: macro `AM_GNU_GETTEXT_VERSION' not
found in library
Running autoheader...
Running autoconf...
configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
  If this token and others are legitimate, please use 
m4_pattern_allow.

  See the Autoconf documentation.
configure.in:148: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
[snip]


Any ideas out there?

Thanks!

You should install the GNU gettext package, which will add this 
configuration macro to the autotools (I dont know what the package name 
is on freebsd but it should be similar to gettext).




--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

http://www.troback.com
-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Compile E17 on FreeBSD!

2005-08-19 Thread Anders Trobäck

If I ignore it and run configure and make I got:

[snip]
configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure.in:148: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
gmake: don't know how to make clean. Stop
configure: error: cannot find install-sh or install.sh in . ./.. ./../..
[snip]

Thanks!

\\anders

Paul S. wrote:

I get that too.  Just ignore it and it'll compile normally I believe.
Paul
On Fri, 2005-08-19 at 14:01 +0200, Anders Trobäck wrote:


Hello!

I'm trying to compile e17 from CVS on my FreeBSD (5.4) box but
autogen.sh gives me:

[snip]
aclocal:configure.in:147: warning: macro `AM_GNU_GETTEXT' not found in
library
aclocal:configure.in:148: warning: macro `AM_GNU_GETTEXT_VERSION' not
found in library
Running autoheader...
Running autoconf...
configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure.in:148: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
[snip]


Any ideas out there?

Thanks!



--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

http://www.troback.com
-


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] entrace.cfg??

2005-08-19 Thread Fernando Meira
hi,
I just ran an e17 complete cvs update and when I rebooted, Entrace was a little bit messed up. 
It did recognize users, but had a bunch of Sessions that were not there
before. Suddenly, there was gnome, xfce, blackbox, ... when I don't
have anything.
I also noticed a new file: /etc/entrance_config.cfg whereas /etc/entrance_config.db held the entrance config.
So, what is this file doing? What have changed? Which one is the cfg file? How do I configure it?

Thanks,
Fernando


Re: [e-users] entrace.cfg??

2005-08-19 Thread Bertrand Jacquin
Hi,

entrance have move its configuration from edb to ecore_config which is
a upper interface to edb, so there's dependencies while entrance was
already depending on ecore.

So edit /usr/share/entrance/build_config.sh and adjust it to your preferencies.

You can also rm /etc/entrance_config.db while /etc/entrance_config.cfg
is the new config file

See you,
Beber

On 8/19/05, Fernando Meira <[EMAIL PROTECTED]> wrote:
> hi,
>  I just ran an e17 complete cvs update and when I rebooted, Entrace was a
> little bit messed up. 
>  It did recognize users, but had a bunch of Sessions that were not there
> before. Suddenly, there was gnome, xfce, blackbox, ... when I don't have
> anything.
>  I also noticed a new file: /etc/entrance_config.cfg whereas
> /etc/entrance_config.db held the entrance config.
>  So, what is this file doing? What have changed? Which one is the cfg file?
> How do I configure it?
>  
>  Thanks,
>  Fernando
>  


-- 
Beber
[EMAIL PROTECTED]


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] entrace.cfg??

2005-08-19 Thread Fernando Meira
Ohh, ok then..
But, is not possible to edit the cfg file in a similar way as before?
Is it with ecore_config?
I get this:
# ecore_config entrance_config.cfg list
Command not yet supported

Thanks,
Fernando
On 8/19/05, Bertrand Jacquin <[EMAIL PROTECTED]> wrote:
Hi,entrance have move its configuration from edb to ecore_config which is
a upper interface to edb, so there's dependencies while entrance wasalready depending on ecore.So edit /usr/share/entrance/build_config.sh and adjust it to your preferencies.You can also rm /etc/entrance_config.db while /etc/entrance_config.cfg
is the new config fileSee you,BeberOn 8/19/05, Fernando Meira <[EMAIL PROTECTED]> wrote:> hi,>  I just ran an e17 complete cvs update and when I rebooted, Entrace was a
> little bit messed up.>  It did recognize users, but had a bunch of Sessions that were not there> before. Suddenly, there was gnome, xfce, blackbox, ... when I don't have> anything.>  I also noticed a new file: /etc/entrance_config.cfg whereas
> /etc/entrance_config.db held the entrance config.>  So, what is this file doing? What have changed? Which one is the cfg file?> How do I configure it?>>  Thanks,>  Fernando>
--Beber[EMAIL PROTECTED]


Re: [e-users] Compile E17 on FreeBSD!

2005-08-19 Thread Anders Trobäck

I have those ports installed and my path is set to:
PATH="$PATH:/usr/local/gnu-autotools/bin"

Is that the path you meant?


Jonathan Buschmann wrote:

Anders Trobäck a écrit :

Thanks but I have gettext installed! Should I point out some dir to 
autogen where getttext stuff are locaed?


\\anders

Mike Russo wrote:


Anders Trobäck wrote:


Hello!

I'm trying to compile e17 from CVS on my FreeBSD (5.4) box but
autogen.sh gives me:

[snip]
aclocal:configure.in:147: warning: macro `AM_GNU_GETTEXT' not found in
library
aclocal:configure.in:148: warning: macro `AM_GNU_GETTEXT_VERSION' not
found in library
Running autoheader...
Running autoconf...
configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
  If this token and others are legitimate, please use 
m4_pattern_allow.

  See the Autoconf documentation.
configure.in:148: error: possibly undefined macro: 
AM_GNU_GETTEXT_VERSION

[snip]


Any ideas out there?

Thanks!

You should install the GNU gettext package, which will add this 
configuration macro to the autotools (I dont know what the package 
name is on freebsd but it should be similar to gettext).





try installing gnu-autotools via these pacakges :

*gnu-autoconf  2.59* / 
devel 


*gnu-automake  1.9.6* / 
devel 


*gnu-libtool  1.5.18* / 
devel 


and edit your PATH to use for e17 compile /usr/local/gnu.. (don't really 
remenber exactly the path)


It worked for me a month ago

Regards,
  Jonathan


--


Microsoft is not the answer.
Microsoft is the question.
And 'No' is the answer!

http://www.troback.com
-



---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] entrace.cfg??

2005-08-19 Thread Bertrand Jacquin
I only use the script to build my entrance config.
But ecore_config entrance_config.cfg implemented set/get/type and
build_config.sh do that job.

On 8/19/05, Fernando Meira <[EMAIL PROTECTED]> wrote:
> Ohh, ok then..
>  But, is not possible to edit the cfg file in a similar way as before?
>  Is it with ecore_config?
>  I get this:
>  # ecore_config entrance_config.cfg list
>  Command not yet supported
>  
>  Thanks,
>  Fernando
> 
>  
> 
> On 8/19/05, Bertrand Jacquin <[EMAIL PROTECTED]> wrote: 
> > Hi,
> > 
> > entrance have move its configuration from edb to ecore_config which is
> > a upper interface to edb, so there's dependencies while entrance was
> > already depending on ecore.
> > 
> > So edit /usr/share/entrance/build_config.sh and adjust it
> to your preferencies.
> > 
> > You can also rm /etc/entrance_config.db while /etc/entrance_config.cfg 
> > is the new config file
> > 
> > See you,
> > Beber
> > 
> > On 8/19/05, Fernando Meira <[EMAIL PROTECTED]> wrote:
> > > hi,
> > >  I just ran an e17 complete cvs update and when I rebooted, Entrace was
> a 
> > > little bit messed up.
> > >  It did recognize users, but had a bunch of Sessions that were not there
> > > before. Suddenly, there was gnome, xfce, blackbox, ... when I don't have
> > > anything.
> > >  I also noticed a new file: /etc/entrance_config.cfg whereas 
> > > /etc/entrance_config.db held the entrance config.
> > >  So, what is this file doing? What have changed? Which one is the cfg
> file?
> > > How do I configure it?
> > >
> > >  Thanks,
> > >  Fernando
> > > 
> > 
> > 
> > --
> > Beber
> > [EMAIL PROTECTED]
> > 
> 
>  


-- 
Beber
[EMAIL PROTECTED]


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] Compile E17 on FreeBSD!

2005-08-19 Thread Phillip Neumann
try to 
 export ACLOCAL_FLAGS = "-I /usr/local/share/aclocal"
before running the auto* things

good luck

El Fri, 19-08-2005 a las 23:39 +0200, Anders Trobäck escribió:
> I have those ports installed and my path is set to:
> PATH="$PATH:/usr/local/gnu-autotools/bin"
> 
> Is that the path you meant?
> 
> 
> Jonathan Buschmann wrote:
> > Anders Trobäck a écrit :
> > 
> >> Thanks but I have gettext installed! Should I point out some dir to 
> >> autogen where getttext stuff are locaed?
> >>
> >> \\anders
> >>
> >> Mike Russo wrote:
> >>
> >>> Anders Trobäck wrote:
> >>>
>  Hello!
> 
>  I'm trying to compile e17 from CVS on my FreeBSD (5.4) box but
>  autogen.sh gives me:
> 
>  [snip]
>  aclocal:configure.in:147: warning: macro `AM_GNU_GETTEXT' not found in
>  library
>  aclocal:configure.in:148: warning: macro `AM_GNU_GETTEXT_VERSION' not
>  found in library
>  Running autoheader...
>  Running autoconf...
>  configure.in:147: error: possibly undefined macro: AM_GNU_GETTEXT
>    If this token and others are legitimate, please use 
>  m4_pattern_allow.
>    See the Autoconf documentation.
>  configure.in:148: error: possibly undefined macro: 
>  AM_GNU_GETTEXT_VERSION
>  [snip]
> 
> 
>  Any ideas out there?
> 
>  Thanks!
> 
> >>> You should install the GNU gettext package, which will add this 
> >>> configuration macro to the autotools (I dont know what the package 
> >>> name is on freebsd but it should be similar to gettext).
> >>>
> >>
> > try installing gnu-autotools via these pacakges :
> > 
> > *gnu-autoconf  2.59* / 
> > devel 
> > 
> > *gnu-automake  1.9.6* / 
> > devel 
> > 
> > *gnu-libtool  1.5.18* / 
> > devel 
> > 
> > and edit your PATH to use for e17 compile /usr/local/gnu.. (don't really 
> > remenber exactly the path)
> > 
> > It worked for me a month ago
> > 
> > Regards,
> >   Jonathan
> 
-- 




_
Phillip Neumann
[EMAIL PROTECTED]




---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] problem while compiling epsilon

2005-08-19 Thread Tushar Gosavi
Hi ,

I got following output while running autogen  for "epsilon".


./autogen.sh
Running aclocal...
aclocal: configure.in: 0: macro `AM_PATH_GTK' not found in library


installed aclocal version is 1.4-p6.
what can be the problem ?
thanks

Regards,
Tushar Gosavi.


---
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users