Libproxy: Difference between revisions
From CBLFS
Jump to navigationJump to search
Michael.six (talk | contribs) Created page with '{| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://libproxy.googlecode.com/files/libproxy-0.2.3.tar.gz |} ---- {{Package-Introduction|Libpr…' |
Michael.six (talk | contribs) m I checked configure --help and saw the possibility of .NET/Mono bindings |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://libproxy.googlecode.com/files/libproxy- | |http://libproxy.googlecode.com/files/libproxy-{{Libproxy-Version}}.tar.gz | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|Libproxy is a library that provides automatic proxy configuration | {{Package-Introduction|Libproxy is a library that provides automatic proxy configuration management.|http://code.google.com/p/libproxy/}} | ||
management.|http://code.google.com/p/libproxy/}} | |||
== Dependencies == | == Dependencies == | ||
Line 23: | Line 19: | ||
* [[GConf]] | * [[GConf]] | ||
* [[NetworkManager]] | * [[NetworkManager]] | ||
* [[Python]] | |||
* [[Mono]] | |||
== Configuration Information == | == Configuration Information == | ||
Line 36: | Line 31: | ||
|- | |- | ||
|} | |} | ||
{{Note|The following assumes that you have [[XULRunner]] installed and that [[pkg-config]] can find its ''.pc'' files. If either one of these things is not true, then omit setting the mozjs_* variables below and change --with-mozjs to --without-mozjs}} | {{Note|The following assumes that you have [[XULRunner]] installed and that [[pkg-config]] can find its ''.pc'' files. If either one of these things is not true, then omit setting the mozjs_* variables below and change --with-mozjs to --without-mozjs}} | ||
== Non- | == Non-Multilib == | ||
Compile the package: | Compile the package: | ||
export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" | export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && | ||
export mozjs_LIBS="`pkg-config libxul-unstable --libs`" | export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && | ||
./configure --prefix=/usr --without-gnome --without-networkmanager --without-webkit --with-mozjs && | ./configure --prefix=/usr --without-gnome \ | ||
--without-networkmanager --without-webkit \ | |||
--with-mozjs && | |||
make | make | ||
Install the package: | Install the package: | ||
make install | make install && | ||
unset mozjs_CFLAGS && | |||
unset mozjs_LIBS | |||
== Multilib == | == Multilib == | ||
Line 58: | Line 55: | ||
=== 32Bit === | === 32Bit === | ||
{{ | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && | |||
export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && | |||
export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && | |||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ | |||
./configure --prefix=/usr --without-gnome \ | |||
--without-networkmanager --without-webkit \ | |||
--with-mozjs && | |||
make | |||
Install the package: | |||
make install && | |||
unset mozjs_CFLAGS && | |||
unset mozjs_LIBS && | |||
unset PKG_CONFIG_PATH | |||
=== N32 === | === N32 === | ||
{{ | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" && | |||
export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && | |||
export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && | |||
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ | |||
./configure --prefix=/usr --libdir=/usr/lib32 \ | |||
--without-gnome --without-networkmanager \ | |||
--without-webkit --with-mozjs && | |||
make | |||
Install the package: | |||
make install && | |||
unset mozjs_CFLAGS && | |||
unset mozjs_LIBS && | |||
unset PKG_CONFIG_PATH | |||
=== 64Bit === | === 64Bit === | ||
{{ | Compile the package: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && | |||
export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && | |||
export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && | |||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ | |||
./configure --prefix=/usr --libdir=/usr/lib64 \ | |||
--without-gnome --without-networkmanager \ | |||
--without-webkit --with-mozjs && | |||
make | |||
Install the package: | |||
make install && | |||
unset mozjs_CFLAGS && | |||
unset mozjs_LIBS && | |||
unset PKG_CONFIG_PATH | |||
== Contents == | |||
{| style="text-align: left;" | |||
|-valign="top" | |||
!Installed Directories: | |||
| | |||
|-valign="top" | |||
!Installed Programs: | |||
| proxy | |||
|-valign="top" | |||
!Installed Libraries: | |||
| libproxy.{so,a} | |||
|} | |||
=== Short Descriptions === | |||
---- | {| style="text-align: left;" | ||
|-valign="top" | |||
! | |||
| | |||
|-valign="top" | |||
! | |||
| | |||
|-valign="top" | |||
! | |||
| | |||
|} | |||
[[Category:Networking Libraries]] | [[Category:Networking Libraries]] |
Latest revision as of 17:41, 15 October 2009
Download Source: | http://libproxy.googlecode.com/files/libproxy-0.4.6.tar.gz |
---|
Introduction to Libproxy
Libproxy is a library that provides automatic proxy configuration management.
Project Homepage: http://code.google.com/p/libproxy/
Dependencies
Recommended
Optional
Configuration Information
--with-gnome Enables support for GConf |
--with-networkmanager Enables support for NetworkManager |
--with-wekbit Enables support for WebKit |
The following assumes that you have XULRunner installed and that pkg-config can find its .pc files. If either one of these things is not true, then omit setting the mozjs_* variables below and change --with-mozjs to --without-mozjs
Non-Multilib
Compile the package:
export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && ./configure --prefix=/usr --without-gnome \ --without-networkmanager --without-webkit \ --with-mozjs && make
Install the package:
make install && unset mozjs_CFLAGS && unset mozjs_LIBS
Multilib
32Bit
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ ./configure --prefix=/usr --without-gnome \ --without-networkmanager --without-webkit \ --with-mozjs && make
Install the package:
make install && unset mozjs_CFLAGS && unset mozjs_LIBS && unset PKG_CONFIG_PATH
N32
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" && export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ ./configure --prefix=/usr --libdir=/usr/lib32 \ --without-gnome --without-networkmanager \ --without-webkit --with-mozjs && make
Install the package:
make install && unset mozjs_CFLAGS && unset mozjs_LIBS && unset PKG_CONFIG_PATH
64Bit
Compile the package:
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && export mozjs_CFLAGS="-DXP_UNIX `pkg-config libxul-unstable --cflags`" && export mozjs_LIBS="`pkg-config libxul-unstable --libs`" && CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ ./configure --prefix=/usr --libdir=/usr/lib64 \ --without-gnome --without-networkmanager \ --without-webkit --with-mozjs && make
Install the package:
make install && unset mozjs_CFLAGS && unset mozjs_LIBS && unset PKG_CONFIG_PATH
Contents
Installed Directories: | |
---|---|
Installed Programs: | proxy |
Installed Libraries: | libproxy.{so,a} |