Difference between revisions of "NetworkManager"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
|http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/{{NetworkManager-Version2}}/NetworkManager-{{NetworkManager-Version}}.tar.bz2  
+
| http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/{{NetworkManager-Version2}}/NetworkManager-{{NetworkManager-Version}}.tar.bz2
 +
|-
 +
!Download Patch:
 +
| http://svn.cross-lfs.org/svn/repos/patches/NetworkManager/NetworkManager-{{NetworkManager-Version}}-clfs_support-1.patch
 
|}
 
|}
  
Line 8: Line 11:
  
 
{{Package-Introduction|NetworkManager program is a network connection manager. It supports Ethernet, WiFi, VPN connections.|http://www.gnome.org/projects/NetworkManager/}}
 
{{Package-Introduction|NetworkManager program is a network connection manager. It supports Ethernet, WiFi, VPN connections.|http://www.gnome.org/projects/NetworkManager/}}
 
----.
 
{{Note|[[libnl]]-{{libnl-Version}} does not work with NetworkManager, use 1.0-pre6 instead}}
 
  
 
== Dependencies ==
 
== Dependencies ==
Line 21: Line 21:
 
* [[PolicyKit]]
 
* [[PolicyKit]]
 
* [[NSS]] or [[GnuTLS]]
 
* [[NSS]] or [[GnuTLS]]
=== Recommended ===
+
* [[PPP]]
 
* [[dhcpcd]] or [[dhcp]]
 
* [[dhcpcd]] or [[dhcp]]
=== Optional ===
 
* [[PPP]]
 
 
== Configuring Information ==
 
 
{|
 
|-
 
|''--without-gnome:'' Build without gnome support. Daemon only is built to use with KDE.
 
|-
 
|''--without-dhcdbd:'' Disable Dhcdbd
 
|}
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 39: Line 28:
 
Compile the package:
 
Compile the package:
  
 +
patch -Np1 -i ../NetworkManager-{{NetworkManager-Version}}-clfs_support-1.patch &&
 +
autoreconf -f -i &&
 
  ./configure --prefix=/usr --sysconfdir=/etc \
 
  ./configure --prefix=/usr --sysconfdir=/etc \
      --localstatedir=/var --libexecdir=/usr/lib/network-manager &&
+
    --libdir=/usr/lib --localstatedir=/var \
 +
    --libexecdir=/usr/lib/network-manager &&
 
  make
 
  make
  
Line 53: Line 45:
 
Compile the package:
 
Compile the package:
  
  To do ...
+
  patch -Np1 -i ../NetworkManager-{{NetworkManager-Version}}-clfs_support-1.patch &&
 +
autoreconf -f -i &&
 +
CC="gcc ${BUILD32}"  USE_ARCH=32 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
 +
./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib --localstatedir=/var \
 +
    --libexecdir=/usr/lib/network-manager \
 +
    --with-distro=clfs --with-crypto=gnutls &&
 +
make
  
 
Install the package:
 
Install the package:
  
  To do ...
+
  make install
  
 
=== N32 ===
 
=== N32 ===
Line 63: Line 63:
 
Compile the package:
 
Compile the package:
  
  To do ...
+
  patch -Np1 -i ../NetworkManager-{{NetworkManager-Version}}-clfs_support-1.patch &&
 +
autoreconf -f -i &&
 +
CC="gcc ${BUILDN32}"  USE_ARCH=n32 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
 +
./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib32 --localstatedir=/var \
 +
    --libexecdir=/usr/lib64/network-manager \
 +
    --with-distro=clfs --with-crypto=gnutls &&
 +
make
  
 
Install the package:
 
Install the package:
  
  To do ...
+
  make install
  
 
=== 64Bit ===
 
=== 64Bit ===
Line 73: Line 81:
 
Compile the package:
 
Compile the package:
  
  To do ...
+
  patch -Np1 -i ../NetworkManager-{{NetworkManager-Version}}-clfs_support-1.patch &&
 +
autoreconf -f -i &&
 +
CC="gcc ${BUILD64}"  USE_ARCH=64 \
 +
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
 +
./configure --prefix=/usr --sysconfdir=/etc \
 +
    --libdir=/usr/lib64 --localstatedir=/var \
 +
    --libexecdir=/usr/lib64/network-manager \
 +
    --with-distro=clfs --with-crypto=gnutls &&
 +
make
  
 
Install the package:
 
Install the package:
  
  To do ...
+
  make install
 
 
== Contents ==
 
 
 
{| style="text-align: left;"
 
|-valign="top"
 
!Installed Directories:
 
|/usr/include/NetworkManager
 
|-valign="top"
 
!Installed Programs:
 
|NetworkManagerDispatcher
 
|-valign="top"
 
!Installed Libraries:
 
|libnm-util.{a,la,so}, libnm_glib.{a,la,so}
 
|}
 

Revision as of 09:45, 27 December 2008

Download Source: http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/0.8/NetworkManager-0.8.tar.bz2
Download Patch: http://svn.cross-lfs.org/svn/repos/patches/NetworkManager/NetworkManager-0.8-clfs_support-1.patch

Introduction to NetworkManager

NetworkManager program is a network connection manager. It supports Ethernet, WiFi, VPN connections.

Project Homepage: http://www.gnome.org/projects/NetworkManager/

Dependencies

Required

Non-Multilib

Compile the package:

patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch &&
autoreconf -f -i &&
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib --localstatedir=/var \
    --libexecdir=/usr/lib/network-manager &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch &&
autoreconf -f -i &&
CC="gcc ${BUILD32}"  USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib --localstatedir=/var \
    --libexecdir=/usr/lib/network-manager \
    --with-distro=clfs --with-crypto=gnutls &&
make

Install the package:

make install

N32

Compile the package:

patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch &&
autoreconf -f -i &&
CC="gcc ${BUILDN32}"  USE_ARCH=n32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib32 --localstatedir=/var \
    --libexecdir=/usr/lib64/network-manager \
    --with-distro=clfs --with-crypto=gnutls &&
make

Install the package:

make install

64Bit

Compile the package:

patch -Np1 -i ../NetworkManager-0.8-clfs_support-1.patch &&
autoreconf -f -i &&
CC="gcc ${BUILD64}"  USE_ARCH=64 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --sysconfdir=/etc \
    --libdir=/usr/lib64 --localstatedir=/var \
    --libexecdir=/usr/lib64/network-manager \
    --with-distro=clfs --with-crypto=gnutls &&
make

Install the package:

make install