Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Exalt installation
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
ASpott
n00b
n00b


Joined: 23 Sep 2004
Posts: 33
Location: California

PostPosted: Wed Oct 10, 2007 6:09 am    Post subject: Exalt installation Reply with quote

I'm trying to install "exalt" for e17 (following some instructions from http://watchwolf.fr/wiki/doku.php?id=exalt#download) and when I run ./autogen.sh before making libexalt I get the error
Code:
checking for LIBEXALT... configure: error: Package requirements (
                ecore >= 0.9.9.037,
                eet >= 0.9.9.038,
                ecore-file >= 0.9.9,
                ehal >= 0.1.0.002
                ) were not met:

No package 'ehal' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Really all I want is a way to change access points graphically in e17. I haven't been running linux very long so if you have any better ideas, I'm open to options. Otherwise, I couldn't find any reference to the ehal package anywhere, I couldn't find any web page that mentions it at all and I certainly don't know how to install it. Thanks.
_________________
"Amidst the numerous processors and network cards I have sacrificed for their sake, why is that the computer gods still continue to hate me?"
Back to top
View user's profile Send private message
bunder
Bodhisattva
Bodhisattva


Joined: 10 Apr 2004
Posts: 5934

PostPosted: Wed Oct 10, 2007 6:17 am    Post subject: Reply with quote

I don't see exalt in portage, so it goes to US. :wink:

Moved from Networking & Security to Unsupported Software.
_________________
Neddyseagoon wrote:
The problem with leaving is that you can only do it once and it reduces your influence.

banned from #gentoo since sept 2017
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Mon Oct 22, 2007 5:39 pm    Post subject: Reply with quote

try use ./configure --prefix=/usr
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
Watchwolf
n00b
n00b


Joined: 22 Nov 2006
Posts: 39

PostPosted: Thu Nov 01, 2007 8:23 pm    Post subject: Re: Exalt installation Reply with quote

ASpott wrote:
I'm trying to install "exalt" for e17 (following some instructions from http://watchwolf.fr/wiki/doku.php?id=exalt#download) and when I run ./autogen.sh before making libexalt I get the error
Code:
checking for LIBEXALT... configure: error: Package requirements (
                ecore >= 0.9.9.037,
                eet >= 0.9.9.038,
                ecore-file >= 0.9.9,
                ehal >= 0.1.0.002
                ) were not met:

No package 'ehal' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Really all I want is a way to change access points graphically in e17. I haven't been running linux very long so if you have any better ideas, I'm open to options. Otherwise, I couldn't find any reference to the ehal package anywhere, I couldn't find any web page that mentions it at all and I certainly don't know how to install it. Thanks.


install e_dbus :)
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Fri Nov 02, 2007 5:26 pm    Post subject: Reply with quote

to get exalt to work you have to install dbus, loaded the init script and use the most recent cvs version of e17 and exalt.

I got it working by doing this.
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
die-hard
Apprentice
Apprentice


Joined: 20 Mar 2005
Posts: 255
Location: Italy

PostPosted: Mon Nov 05, 2007 12:49 am    Post subject: Reply with quote

hi i'm try to install exalt, but i got problem with dependency. can u help me step to step? thanks
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Thu Nov 08, 2007 7:43 am    Post subject: Reply with quote

If I remember correctly I installed :

1. E 17 from vapier
2. dhcpcd -> emerge dhcpcd ? (forgot the right command)
3. wpa_supplicant -> emerge wpa_supplicant
4. dhclient -> emerge dhclient
5. hal -> emerge hal
6. dbus -> emerge dbus

make sure that hal + dbus is loaded by init.d

1. rc-update add hald boot default
2. rc-update add dbus boot default

get the exalt from svn

Code:

#!/bin/bash
# Please update the path
# Feel free to update the script into a better one, this is a very bad script

echo "Downloading from SVN...."
svn checkout svn://svn.berlios.de/exalt/trunk exalt

echo "You have to install packages in this order: libexalt, libexalt_dbus, daem

echo "Installing libexalt"
cd /root/exalt-cvs/exalt/libexalt
make clean
./autogen.sh wpa_supplicant=/sbin/wpa_supplicant dhcp=/sbin/dhcpcd --prefix=/usr
make install

echo "Installing libexalt_dbus"
cd /root/exalt-cvs/exalt/libexalt_dbus
make clean
./configure --prefix=/usr
make install

echo "Installing demon"
cd /root/exalt-cvs/exalt/daemon
make clean
./configure --prefix=/usr
make install

echo "Installing exalt"
cd /root/exalt-cvs/exalt/exalt
make clean
./configure --prefix=/usr
make install

echo "Installing module"
cd /root/exalt-cvs/exalt/module
make clean
./configure --prefix=/usr
make install

exit 0







copy exalt init.d for gentoo to /etc/init.d


cp /root/exalt-cvs/exalt/daemon/data/init.d/gentoo /etc/init.d/exaltd
rc-update add exaltd boot

add exalt module in e17
add exalt module in e17
add dbus module in e17 (I think this is needed but not sure

reboot


this is roughly how I did it, there maybe some mistake. please dont shoot me about it.

[/b]
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
Watchwolf
n00b
n00b


Joined: 22 Nov 2006
Posts: 39

PostPosted: Fri Nov 23, 2007 6:13 pm    Post subject: Reply with quote

dhclient is in the dhcp package
Exalt doesn't need dhcpd.

ehal is in e_dbus.
Back to top
View user's profile Send private message
math_roc
n00b
n00b


Joined: 07 Jan 2006
Posts: 65

PostPosted: Fri Nov 23, 2007 7:54 pm    Post subject: Reply with quote

Hi! I did a few ebuild for emerging exalt: http://pub.mathroc.info/exalt.tar.gz
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Wed Nov 28, 2007 5:14 pm    Post subject: Reply with quote

watchwolf : i think i write dhcpcd? which is dhcp client not dhcpd the daemon.

math_roc : Thanks for the ebuild man, It sure make things easier to update exalt, btw a use flag for dhcpcd / dhclient would be great.
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
math_roc
n00b
n00b


Joined: 07 Jan 2006
Posts: 65

PostPosted: Thu Nov 29, 2007 11:32 am    Post subject: Reply with quote

I'm using virtual/dhcpc for dependy, so, I think if one is already installed, it will not installing another, isn't it?
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Fri Nov 30, 2007 4:17 pm    Post subject: Reply with quote

Quote:
I'm using virtual/dhcpc for dependy, so, I think if one is already installed, it will not installing another, isn't it?


if you have installed them, I dont think it will ask again unless there are updates available. but I think your ebuild only check for dhclient?.
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
boazbd
Tux's lil' helper
Tux's lil' helper


Joined: 07 Sep 2006
Posts: 78
Location: Jerusalem, Israel

PostPosted: Mon Jan 21, 2008 11:21 am    Post subject: Reply with quote

The ebuild is failing for me:

Code:

/dns_panel.Tpo"; exit 1; fi
boot_panel.c: In function ‘bootpanel_create’:
boot_panel.c:46: warning: implicit declaration of function ‘etk_signal_connect_by_code’
boot_panel.c:46: error: ‘ETK_TREE_COL_CELL_VALUE_CHANGED_SIGNAL’ undeclared (first use in this function)
boot_panel.c:46: error: (Each undeclared identifier is reported only once
boot_panel.c:46: error: for each function it appears in.)
boot_panel.c:76: error: ‘ETK_RANGE_VALUE_CHANGED_SIGNAL’ undeclared (first use in this function)
make[2]: *** [boot_panel.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory `/var/tmp/portage/net-misc/exalt-9999/work/exalt-9999/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/var/tmp/portage/net-misc/exalt-9999/work/exalt-9999/src'
make: *** [all-recursive] Error 1
 *
 * ERROR: net-misc/exalt-9999 failed.
 * Call stack:
 *           ebuild.sh, line 1701:  Called dyn_compile
 *           ebuild.sh, line 1039:  Called qa_call 'src_compile'
 *           ebuild.sh, line   44:  Called src_compile
 *   exalt-9999.ebuild, line   28:  Called die
 * The specific snippet of code:
 *      emake || die "make failed"
 *  The die message:
 *   make failed
 *
 * If you need support, post the topmost build error, and the call stack if relevant.
 * A complete build log is located at '/var/tmp/portage/net-misc/exalt-9999/temp/build.log'.
 *


Anyone has any idea why?
Back to top
View user's profile Send private message
duckz
Apprentice
Apprentice


Joined: 26 Jun 2007
Posts: 158

PostPosted: Tue Jan 22, 2008 5:29 pm    Post subject: Reply with quote

Maybe old etk version???

perhaps upgrading etk will solve the problem
_________________
emerge -va techygadget.com <- install my blog in gentoo
./configure anime wallpaper
make install premium drupal theme
Back to top
View user's profile Send private message
boazbd
Tux's lil' helper
Tux's lil' helper


Joined: 07 Sep 2006
Posts: 78
Location: Jerusalem, Israel

PostPosted: Wed Jan 23, 2008 12:33 am    Post subject: Reply with quote

Thanks! That solved it.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum