Ekiga: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
Weibullguy (talk | contribs) No edit summary |
||
| (19 intermediate revisions by 4 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| | | http://www.ekiga.org/admin/downloads/latest/sources/sources/ekiga-{{Ekiga-Version}}.tar.gz | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|Ekiga is a VoIP and video conferencing application, supporting H.323 and SIP.|http://www.ekiga.org/}} | |||
== Dependencies == | == Dependencies == | ||
| Line 12: | Line 14: | ||
* [[pwlib]] | * [[pwlib]] | ||
* [[opal]] | * [[opal]] | ||
* [[GConf]] | |||
* [[libgnomeui]] | |||
* [[EsounD]] | |||
=== Recommended === | |||
* [[ScrollKeeper]] | |||
* [[SDL]] | |||
=== Optional === | === Optional === | ||
* [[D-BUS Glib]] | |||
* [[Avahi]] | |||
* [[Evolution Data Server]] | |||
== Non-Multilib == | == Non-Multilib == | ||
Build the package: | |||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | |||
--localstatedir=/var/lib --enable-dbus && | |||
make | |||
Install the package: | |||
make install | |||
== Multilib == | |||
'''''This package does not install any libraries so only one installation is needed.''''' | |||
=== 32Bit === | |||
Build the package: | |||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && | |||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ | |||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | |||
--localstatedir=/var/lib --enable-dbus && | |||
make | |||
Install the package: | |||
make install && | |||
unset PKG_CONFIG_PATH | |||
=== N32 === | |||
TODO | |||
=== 64Bit === | |||
Build the package: | |||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && | |||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ | |||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | |||
--localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib64 \ | |||
--enable-dbus && | |||
make | |||
Install the package: | |||
make install && | |||
unset PKG_CONFIG_PATH | |||
[[Category:Non-GUI Clients]] | |||
Latest revision as of 10:00, 5 April 2009
| Download Source: | http://www.ekiga.org/admin/downloads/latest/sources/sources/ekiga-2.0.12.tar.gz |
|---|
Introduction to Ekiga
Ekiga is a VoIP and video conferencing application, supporting H.323 and SIP.
Project Homepage: http://www.ekiga.org/
Dependencies
Required
Recommended
Optional
Non-Multilib
Build the package:
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
--localstatedir=/var/lib --enable-dbus &&
make
Install the package:
make install
Multilib
This package does not install any libraries so only one installation is needed.
32Bit
Build the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
--localstatedir=/var/lib --enable-dbus &&
make
Install the package:
make install && unset PKG_CONFIG_PATH
N32
TODO
64Bit
Build the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
--localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib64 \
--enable-dbus &&
make
Install the package:
make install && unset PKG_CONFIG_PATH